Use the ffmpeg command (install it from the ffmped package)

ffmpeg -i "whatever.format" -vn -ac 2 -ar 44100 -ab 320k -f mp3 output.mp3
Here's a short explanation on what every parameter does:

    -i "input file"
    -vn "skip the video part"
    -ac "audio channels"
    -ar "audio rate"
    -ab "audio bit-rate"
    -f "file format to use"
    (the end if the string) "output file"

Source:
http://peppoj.net/2010/09/how-to-extract-audio-from-video-using-ffmpeg/

On 04/09/13 17:12, David Bowskill wrote:
> Hello All
> Can anybody please tell me how to store the audio on a downloaded
> youtube video to a file ?
>
> Thanks
>
> David
>

-- 
ubuntu-au mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-au

Reply via email to