![]() |
[IDEA] codec selector (switcher) - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Feature requests (https://moodeaudio.org/forum/forumdisplay.php?fid=8) +--- Thread: [IDEA] codec selector (switcher) (/showthread.php?tid=590) Pages:
1
2
|
RE: codec selector (switcher) - kitamura_design - 10-19-2018 (10-18-2018, 03:56 PM)Tim Curtis Wrote: I saw different strange lines in the log when I played my test m4a files that MPD determined needed the ffmpeg aac decoder. I know all will be good with converting to FLAC :-) But I want higher sound quality on playing Web-radio casted by AAC as much as I could. FDK-AAC codec will be the best solution for AAC playback on MPD, I think. But I've heard before that FDK-AAC is not allowed to be distributed as binary due to its license or something like that. RE: codec selector (switcher) - Tim Curtis - 10-19-2018 Ok now I understand. AAC encoded web radio is decoded by faad according to MPD log Code: Oct 18 20:41 : playlist: play 4:"http://aac-64.streamthejazzgroove.com:80/stream" To use fdk-aac for AAC encoded web radio you would need to have the code block in mpd.conf with enable="no" for faad decoder and due to the restrictive license, you would need to custom compile ffmpeg (libav) with the fdk-aac codec and install it on Moode OS. The license prohibits me from doing this and redistributing it. https://trac.ffmpeg.org/wiki/Encode/AAC#fdk_aac https://wiki.libav.org/Encoding/aac -Tim RE: codec selector (switcher) - kitamura_design - 10-19-2018 (10-19-2018, 01:00 AM)Tim Curtis Wrote: Ok now I understand. Thanks for your understanding ![]() Installing fdk-aac codec is not the best solution for everyone, its so difficult for Linux beginners like me. But at least, we could expect to improve the sound quality of AAC only by making disable faad codec. Because faad decodes at 16bit, but ffmpeg/aac can decode at 24bit. So, if you can accept to build the next moOde without faad, everyone would be little happier at AAC - radio - listening, I think. (But need to fix the strange "Clipping Noise" message bug on ffmpeg/aac first, you know) kitamura_design RE: codec selector (switcher) - Tim Curtis - 10-19-2018 Bit depth does not exist in lossy audio encoding formats like AAC or MP3 so even if the decoder output was 24 bit it has no way of knowing what the source bit depth was. -Tim RE: codec selector (switcher) - kitamura_design - 10-19-2018 (10-19-2018, 02:36 AM)Tim Curtis Wrote: Bit depth does not exist in lossy audio encoding formats like AAC or MP3 so even if the decoder output was 24 bit it has no way of knowing what the source bit depth was. Hmm... But seems sound become better with ffmpeg/aac. Did you try it? |