2010-02-01, 11:30 PM
(This post was last modified: 2010-02-06, 08:01 PM by luttrell1962.)
I have a batch file to run on a ts file that is 1080p, but says file is 60fps according ffmpeg. Looks like mpeg4 codec only supports 30fps. (I think this is my problem)
During the first pass I get a average of bitrate of 2200 but the second pass the mpeg4 codec complains that the bitrate is to low for the codec and errors out. codec below.
I might need to convert the file to 30fps first and this may fix the problem.
DMO Mpeg4 Decoder DMO MPG4, mpg4, mp42, MP42 MPG4DECD.dll
VBR can really compress this file and still have good quality if I can get it to work. Do I need a different mpeg4 codec?
Whats a mpeg4s codec?
During the first pass I get a average of bitrate of 2200 but the second pass the mpeg4 codec complains that the bitrate is to low for the codec and errors out. codec below.
Code:
"D:\Program Files (x86)\Devnz\GBPVR\Third Party\ffmpeg\ffmpeg.exe" -y -i %1 -ab 128k -ac 2 -acodec libmp3lame -ar 44100 -deinterlace -f avi -threads 8 -pass 1 -b 5000k -minrate 0 -maxrate 10000k -bufsize 300k -vcodec mpeg4 -vtag xvid nul
"D:\Program Files (x86)\Devnz\GBPVR\Third Party\ffmpeg\ffmpeg.exe" -y -i %1 -ab 128k -ac 2 -acodec libmp3lame -ar 44100 -deinterlace -f avi -threads 8 -pass 2 -b 5000 -minratek 0 -maxrate 10000k -bufsize 300k -vcodec mpeg4 -vtag xvid %2
I might need to convert the file to 30fps first and this may fix the problem.
DMO Mpeg4 Decoder DMO MPG4, mpg4, mp42, MP42 MPG4DECD.dll
VBR can really compress this file and still have good quality if I can get it to work. Do I need a different mpeg4 codec?
Whats a mpeg4s codec?