convert .mov to .m4v with mac terminal

Viewed 26766

What do I need to type into the mac terminal to be able to convert my .mov files to .m4a?

3 Answers

1. get brew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2. get ffmpeg

brew install ffmpeg

3a. convert audio only with ffmpeg

ffmpeg -i input.mov -acodec copy output.m4a

3b. convert both video & audio with ffmpeg

ffmpeg -i input.mov -acodec copy -vcodec copy output.m4v

Related