How to extract audio from mp4?

Status
This old topic is closed. If you want to reopen this topic, contact a moderator using the "Report Post" button.
yea, if you dont want to re-encode like sgrossklass says. you want demuxing. very easy for computers to do, with little cpu too. also no quality loss! :D
more recent ffmpeg uses "-c" for codec chocies:
Code:
ffmpeg -i youvideo.mp4 -c:a copy -vn yourvideoaudio.m4a

.m4a is a container for audio like acc/ac3 audio formats, thats used in mp4 video container.
 
Status
This old topic is closed. If you want to reopen this topic, contact a moderator using the "Report Post" button.