http://phecoopwm6x7azx26ctuqcp6673bbqkrqfeoiz2wwk36sady5tqbdpqd.onion/page-1807290824-FFMPEG---Extract-audio-from-video-file-and-write-to-MP3-BASH.html
Published: 2018-07-29 08:26:49 +0000 Categories: BASH , Language BASH Description The snippet below extracts the audio track from a video file (for example an MP4), converts it to MP3 and writes it out to a file. Snippet ffmpeg -i " $IN " -vn -acodec mp3 " $OUT " Usage Example ffmpeg -i happy_birthday.mp4 -vn -acodec mp3 happy_birthday.mp3 Requires FFMpeg Keywords ffmpeg , mp3 , audio , extract , Latest Posts Calculating the difference between subsequent values in SQL...