Difference between revisions of "VLC HowTo/Extract audio from a file"

From VideoLAN Wiki
Jump to navigation Jump to search
(Created page with 'The example under this show how to extract audio from a working video file like file.ts in command line. vlc file.ts --no-sout-video --sout '#std{mux=raw,dst=file.mp3}'')
 
(Cross-link to better Extract Audio article, and add to Category:How to.)
Line 2: Line 2:
  
 
     vlc file.ts --no-sout-video --sout '#std{mux=raw,dst=file.mp3}'
 
     vlc file.ts --no-sout-video --sout '#std{mux=raw,dst=file.mp3}'
 +
 +
==See also==
 +
* article ''[[Extract audio]]''
 +
 +
[[Category:How To]]

Revision as of 20:12, 26 October 2011

The example under this show how to extract audio from a working video file like file.ts in command line.

   vlc file.ts --no-sout-video --sout '#std{mux=raw,dst=file.mp3}'

See also