Moode Forum
8.3.7 - only AirPlay 2 supported - Printable Version

+- Moode Forum (https://moodeaudio.org/forum)
+-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3)
+--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7)
+--- Thread: 8.3.7 - only AirPlay 2 supported (/showthread.php?tid=6012)

Pages: 1 2 3 4


RE: 8.3.7 - only AirPlay 2 supported - TheOldPresbyope - 04-11-2024

(04-11-2024, 09:46 PM)flyingblindonarocketcycle Wrote: I'm late to the party here but had one of my pi-zero W' lose its mind so I had to reflash the card. I put 8.3.9 on it and I also can no longer use my Windows 10 PC as a iTunes music server. 

Did I read this thread correctly? Do I just need to drop back a few versions of Moode and it will work? 8.3.6?

Thanks


Oh yea, where would I find it?

Sort through the releases listed at https://github.com/moode-player/moode/releases

Regards,
Kent


RE: 8.3.7 - only AirPlay 2 supported - jason_a69 - 04-12-2024

I think you need version 8.3.6. 8.3.7 bumped shairport which stopped airplay 1 from working.

Looks like the iso has been archived on github so I am not sure where to get it. (I need a copy too!)


RE: 8.3.7 - only AirPlay 2 supported - flyingblindonarocketcycle - 04-14-2024

Thanks for the update. I’ll see if I can get this working tomorrow!


RE: 8.3.7 - only AirPlay 2 supported - Tim Curtis - 04-14-2024

Try this but YMMV
https://moodeaudio.org/forum/showthread.php?tid=5537&pid=53096#pid53096


RE: 8.3.7 - only AirPlay 2 supported - swizzle - 04-15-2024

Supposedly if the airplay dialog shows a plain check mark it’s a lossless stream versus if it shows a circle check it’s not. The moode stream info always shows 16/44 PCM though so who knows. If you tap the lossless tag in Apple Music it’ll show the source format.

One thing you might try for Apple Music anyway is checking the streaming quality is set to lossless in settings which does then show lossless on the playback screen but still the circle check. Hi-res requires a usb connection directly to your dac from an iPad or whatever, I don’t have my iPad here to try that out and see how that works out but I assume you’d then just switch inputs on your dac to go between moode or streaming.


RE: 8.3.7 - only AirPlay 2 supported - Tim Curtis - 04-15-2024

For the renderers there is no API (at least as far as I know of) for getting the stream info so it's just hard coded. The exception is Multiroom sender where I know for sure from the TRX source code its 16/48K Opus to PCM. I suppose I could also browse through the renderer sources but I'll leave that for another day.

Code:
//
// INPUT
//

if ($btActive === true && $_SESSION['audioout'] == 'Local') {
    $_file = 'Bluetooth stream';
    $_encoded_at = 'Unknown';
    $_decoded_to = 'PCM 16 bit 44.1 kHz, Stereo';
    $_decode_rate = '';
} else if ($aplActive == '1') {
    $_file = 'AirPlay stream';
    $_encoded_at = 'PCM';
    $_decoded_to = 'PCM 16 bit 44.1 kHz, Stereo';
    $_decode_rate = '';
} else if ($spotActive == '1') {
    $_file = 'Spotify stream';
    $_encoded_at = 'PCM';
    $_decoded_to = 'PCM 16 bit 44.1 kHz, Stereo';
    $_decode_rate = '';
} else if ($slActive == '1') {
    $_file = 'Squeezelite stream';
    $_encoded_at = 'Unknown';
    $_decoded_to = 'Unknown';
    $_decode_rate = '';
} else if ($rbActive == '1') {
    $_file = 'RoonBridge stream';
    $_encoded_at = 'Unknown';
    $_decoded_to = 'Unknown';
    $_decode_rate = '';
} else if ($_SESSION['multiroom_rx'] == 'On') {
    $_file = 'Multiroom sender stream';
    $_encoded_at = 'Opus 16 bit 48 kHz, Stereo';
    $_decoded_to = 'PCM 16 bit 48 kHz, Stereo';
    $_decode_rate = '';
} else {
    $song = getCurrentSong($sock);
    $_file = $song['file'];
.
.
.



RE: 8.3.7 - only AirPlay 2 supported - flyingblindonarocketcycle - 04-15-2024

I'm trying to find/install 8.3.6

Sort through the releases listed at https://github.com/moode-player/moode/releases

Does this mean I have to learn how to build the ISO from the source?


RE: 8.3.7 - only AirPlay 2 supported - TheOldPresbyope - 04-15-2024

(04-15-2024, 01:38 PM)flyingblindonarocketcycle Wrote: I'm trying to find/install 8.3.6

Sort through the releases listed at https://github.com/moode-player/moode/releases

Does this mean I have to learn how to build the ISO from the source?

No.

Did you actually look? There are currently 58 releases in the repo. Pick one and look under assets.

Regards,
Kent


RE: 8.3.7 - only AirPlay 2 supported - flyingblindonarocketcycle - 04-15-2024

(04-11-2024, 09:58 PM)TheOldPresbyope Wrote:
(04-11-2024, 09:46 PM)flyingblindonarocketcycle Wrote: I'm late to the party here but had one of my pi-zero W' lose its mind so I had to reflash the card. I put 8.3.9 on it and I also can no longer use my Windows 10 PC as a iTunes music server. 

Did I read this thread correctly? Do I just need to drop back a few versions of Moode and it will work? 8.3.6?

Thanks


Oh yea, where would I find it?

Sort through the releases listed at https://github.com/moode-player/moode/releases

Regards,
Kent

(04-15-2024, 01:46 PM)TheOldPresbyope Wrote:
(04-15-2024, 01:38 PM)flyingblindonarocketcycle Wrote: I'm trying to find/install 8.3.6

Sort through the releases listed at https://github.com/moode-player/moode/releases

Does this mean I have to learn how to build the ISO from the source?

No.

Did you actually look? There are currently 58 releases in the repo. Pick one and look under assets.

Regards,
Kent


I did look. It appears to me that version 8.3.6 is the first of the older version to only have 2 assets available and the difference is 8.3.6 and older only have source code and all the new versions have source and images available for a total of 4 assets each.

Thanks


RE: 8.3.7 - only AirPlay 2 supported - TheOldPresbyope - 04-15-2024

(04-15-2024, 02:00 PM)flyingblindonarocketcycle Wrote:
(04-11-2024, 09:58 PM)TheOldPresbyope Wrote:
(04-11-2024, 09:46 PM)flyingblindonarocketcycle Wrote: I'm late to the party here but had one of my pi-zero W' lose its mind so I had to reflash the card. I put 8.3.9 on it and I also can no longer use my Windows 10 PC as a iTunes music server. 

Did I read this thread correctly? Do I just need to drop back a few versions of Moode and it will work? 8.3.6?

Thanks


Oh yea, where would I find it?

Sort through the releases listed at https://github.com/moode-player/moode/releases

Regards,
Kent

(04-15-2024, 01:46 PM)TheOldPresbyope Wrote:
(04-15-2024, 01:38 PM)flyingblindonarocketcycle Wrote: I'm trying to find/install 8.3.6

Sort through the releases listed at https://github.com/moode-player/moode/releases

Does this mean I have to learn how to build the ISO from the source?

No.

Did you actually look? There are currently 58 releases in the repo. Pick one and look under assets.

Regards,
Kent


I did look. It appears to me that version 8.3.6 is the first of the older version to only have 2 assets available and the difference is 8.3.6 and older only have source code and all the new versions have source and images available for a total of 4 assets each.

Thanks

Whoa. The last time I looked, the ISOs for 8.3.6 and many prior releases were in the repo.

@Tim Curtis  - have the binaries been culled?

Regards,
Kent