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

From Luky-Wiki
Jump to: navigation, search
(Step 1 extract audio from video file)
(Step 1 extract audio from video file)
Line 3: Line 3:
  
 
=== Step 1 extract audio from video file ===
 
=== Step 1 extract audio from video file ===
 +
==== video with stereo sound track ====
 
<code>ffmpeg</code> is powerful video converter. It can be used to "extract" sound track from video files by using correct options.
 
<code>ffmpeg</code> is powerful video converter. It can be used to "extract" sound track from video files by using correct options.
 
<pre>
 
<pre>
Line 8: Line 9:
 
</pre>
 
</pre>
 
'' -i = input, -vn = no video proccessing''
 
'' -i = input, -vn = no video proccessing''
 +
==== video with multi-channel sound track (e.g 5.1 or others) ====

Revision as of 19:08, 14 March 2014

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


Step 1 extract audio from video file

video with stereo sound track

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

video with multi-channel sound track (e.g 5.1 or others)