Thank You for your continued support and contributions!
Does anyone know which output format or container for aac I should use with ffmpeg so that the resulting file is playable in Rockbox?
ffmpeg -i YoutubeVideo -vn -acodec copy AudioStream.aac && mp4creator AudioStream.aac -O OutputFile.mp4
ffmpeg -i YoutubeVideo -vn -acodec copy AudioStream.aac && mp4creator AudioStream.aac -optimize OutputFile.mp4
2nd: Most important after this step is to add some tag information like the song's name and artist, or else Rockbox refuses to play it. (At least on my Sansa Clip+). After adding those information I optimize the file with foobar2000.With these two steps all converted mp4 files should be playable.
I use the following code (wrapped in a ton of lovely perl) to make the raw aac stream playable in rockbox:ffmpeg -i file.aac -f mp4 -acodec copy -vn file.mp4(I hate recoding because all of my linux boxes are really low power)
Page created in 0.168 seconds with 14 queries.