What do you get from
Code:
which ffmpeg
which ffplay
Can you start ffmpeg at all?
Let me choose a smaller video at random for a test. 2 min.
Code:
yt-dlp -x --audio-format mp3 https://m.youtube.com/watch?v=J2iBX_wGbkU -o myfile.mp3
file myfile.mp3
file.mp3: Audio file with ID3 version 2.4.0, contains: MPEG ADTS, layer III, v1, 64 kbps, 48 kHz, Stereo
Yup, that works. Looks like ffmpeg is not in your $PATH for executables.
You could also use ffmpeg by itself. That is what it is for
Code:
yt-dlp -f 140 https://youtu.be/MujE5tObk50 -o file1.m4a
ffmpeg -vn -c:a libmp3lame -b:a 128k file1.mp3
Or look at:
Code:
yt-dlp -F https://youtu.be/MujE5tObk50
See:
man yt-dlp
man ffmpeg
man ffplay
echo $PATH