Difference between revisions of "Linux: "video to mp3""
From Luky-Wiki
Lukas Dzunko (talk | contribs) (Created page with ".") |
Lukas Dzunko (talk | contribs) |
||
| Line 1: | Line 1: | ||
| − | . | + | ........................... |
| + | |||
| + | |||
| + | === Step 1 extract audio from video file === | ||
| + | <code>ffmpeg</code> is powerful video converter. It can be used to "extract" sound track from video files by using correct options. | ||
| + | <pre> | ||
| + | ffmpeg -i video_file.suffix -vn output.wav | ||
| + | <pre> | ||
| + | '' -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 <pre> -i = input, -vn = no video proccessing