One simple way to do it is, if you have mplayer:
mplayer video.m4a -ao pcm
the audio will be in a file called `audiodump.wav'
You can encode that to an mp3 with `lame -V2 audiodump.wav'
Ich habe eine M4A-Videodatei und möchte den Ton extrahieren. Wie kann ich das machen? Ausführen von Arch Linux.
One simple way to do it is, if you have mplayer:
mplayer video.m4a -ao pcm
the audio will be in a file called `audiodump.wav'
You can encode that to an mp3 with `lame -V2 audiodump.wav'
Interessant - normalerweise wird die .m4a
Erweiterung (MP4-Audio) nicht für Dateien mit Videospuren verwendet ...
Dadurch wird die Audiospur in ihrer ursprünglichen Form extrahiert ( -acodec copy
) und das Video wird verworfen ( -vn
):
ffmpeg -i video.m4a -acodec copy -vn audio.m4a