Hi! > Am 20.08.2016 um 05:08 schrieb s00b4u 4u <[email protected]>: > > For example, my source file is MOV file. It's Video Bitrate is: 122113 KB/s > and Audio Bitrate is: 1536 KB/s. > I want to convert it into an MP4 file with Video Bitrate: 11 MB/s and Audio > Bitrate: 256 KB/s. > > When I tried to do this transcoding, I used command: > ffmpeg -i myfile.mov -vcodec libx264 -acodec copy myfile.mp4
How is FFmpeg supposed to know that you want 11MB/s? If input audio has 1536k and you want 256k -acodec copy will not help... Try "-b:v 11M -acodec ac3 -b:a 256k" Carl Eugen _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
