When I download m4a audio files using the
youtube-dl script if I choose to directly download a m4a audio file it won't work.
What does work is choosing to download a low-quality mp4 audio/video file and converting it using this command switch:
youtube-dl -f 18 -x --audio-format m4a https://www.youtube.com/watch?v=YQbJfAPKOqA
-f 18 tells it to download the lowest quality mp4
-x to convert it to audio
Is there a way to get m4a files retrieved from Youtube to work without all that extra command line input and remuxing?
Thanks