I have a mov file with the following media information: Stream 0 Type: Video Codec: H264-MPEG-4 AVC (part 10)avc1 Language: English Resolution: 1280x720 Frame rate: 24
Stream 1 Type: Audio Codec: MPEG AAC Audio (mp4a) Language: English Channels: Stereo Sample rate: 44100HZ
And I would like to use ffmpeg to convert that mov file to avi file.
I know i can specify audio and video bit rate (from this article http://www.linuxjournal.com/article/8517
ffmpeg -i InputFile.mpg -ab 128 -b 1200 OutputFile.avi
But for my case, if i want to keep the original quality, what should be my audio and video bit rate?
Thank you.