Difference between revisions of "Linux: "video to mp3""

From Luky-Wiki
Jump to: navigation, search
(Step 1 extract audio from video file)
Line 6: Line 6:
 
<pre>
 
<pre>
 
ffmpeg -i video_file.suffix -vn output.wav
 
ffmpeg -i video_file.suffix -vn output.wav
<pre>
+
</pre>
 
'' -i = input, -vn = no video proccessing''
 
'' -i = input, -vn = no video proccessing''

Revision as of 19:06, 14 March 2014

...........................


Step 1 extract audio from video file

ffmpeg is powerful video converter. It can be used to "extract" sound track from video files by using correct options.

ffmpeg -i video_file.suffix -vn output.wav

-i = input, -vn = no video proccessing