Created
February 10, 2015 09:24
-
-
Save Bonno/73873ed4ac523adc9611 to your computer and use it in GitHub Desktop.
Convert mp4 to WAV with ffmpeg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -i <infile> -ac 2 -f wav <outfile> |
thanks
Thanks!
Thanks!
Thanks!
is there a file size limit?
Thank you very much! What does -ac do?
Thank you very much! What does -ac do?
It mixes the audio channels of the input down to stereo
Manipulating audio channels
I only want the left channel so will be using ffmpeg -i <infile> -af "pan=mono|c0=c0" -f wav <outfile>
thank you
Thank you very much! What does -ac do?
It mixes the audio channels of the input down to stereo Manipulating audio channels
I only want the left channel so will be using
ffmpeg -i <infile> -af "pan=mono|c0=c0" -f wav <outfile>
Thanks a lot man !
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome! i've tried and it works