youtube to iPod and how to check video files
Last modified on July 24, 2026 • 1 min read • 170 wordsI was trying to extract the audio file from some youtube videos in order to play it back from my iPod shuffle.
ffmpeg -i video-infile.flv audio-outfile.mp3 It is also possible to convert the flv file into a mpeg file. You need to do this e.g. if you want to import the video into
iTunes
. For some strange reason
Quicktime
can play Flash Videos, but iTunes doesn’t allow their playback. The command is almost the same: ffmpeg -i video-infile.flv audio-outfile.mpegAnother nifty usage of ffmpeg is to check video files for corruption and other problems:ffmpeg -v 5 -i file.avi -f null - 2>error.log