# HG changeset patch # User rathann # Date 1101732422 0 # Node ID 9f7c1022627b38402f79cae0b37650602d77b11a # Parent 384ae6f896cf2fa44082474f50fff02972740f46 FAQ about audio-only encoding (approved by Diego) diff -r 384ae6f896cf -r 9f7c1022627b DOCS/xml/en/faq.xml --- a/DOCS/xml/en/faq.xml Mon Nov 29 11:28:02 2004 +0000 +++ b/DOCS/xml/en/faq.xml Mon Nov 29 12:47:02 2004 +0000 @@ -1439,6 +1439,26 @@ + + +How do I encode only sound from a music video? + + +It's not possible directly, but you can try this (note the +& at the end of +mplayer command): + + mkfifo encode + mplayer -ao pcm -aofile encode dvd://1 & + lame your_opts encode music.mp3 + rm encode + +This allows you to use any encoder, not only LAME, +just replace lame with your favorite audio encoder in the +above command. + + +