+ Reply to Thread
Results 31 to 35 of 35
-
But your video is different. You said it delivered 5000 kbps when you asked for 30000. So the encoder probably can't deliver much more than 5000 kbps with that video.
I ran some tests. The default settings use no B frames (only I and P) and a GOP size of 12. You can force it to use all I frames to get higher frame rates. But doesn't necessarily mean you'll get better quality.
I don't really know because I was using a small portion of a larger file. The entire AVC source video had an average bitrate around 2000 kbps (1920x1080, 24 fps). But it doesn't matter what the source bitrate was. Different encoders with different settings will deliver different bitrates.Code:ffmpeg -y -i input.mp4 -an -c:v mpeg1video -g 1 -b:v 30000k output.m1v
-
Thank you so much for taking the time to help. This new command helped bump things up to 30k in the final m1v. I need to bring it down a bit though. I tried to bring it down using
and got something around the ballpark of 13k which is what i need.Code:ffmpeg -y -i run.mkv -an -c:v mpeg1video -g 1 -b:v 12000k run2.m1v
Ill run some more tests, but at least I know there are options out there! -
hmmm I cant seem to bring it any lower than 13.8 Mb/s now.
Using:andCode:ffmpeg -y -i run.mkv -an -c:v mpeg1video -g 1 -b:v 12000k run.m1v
both give a bitrate of 13.8 Mb/sCode:ffmpeg -y -i run.mkv -an -c:v mpeg1video -g 1 -b:v 5000k run.m1v

taking out theseemed to work asCode:-g 1
yielded a 8067 kb/s file, but alas this is still too big! lol. I'll just have to keep tinkering with things. I think you've helped me quite a bit.Code:ffmpeg -y -i run.mkv -an -c:v mpeg1video -b:v 8000k run.m1v
Thanks so much. -
Some more experimenting. You can get higher bitrates by limiting the min/max quantizers (defaults are 2 and 31):
That gave me a 34 Mb/s video from my test file. But "fixes" like this are limiting the encoder's ability to deliver an exact requested bitrate. So you may get higher bitrates but not have good control on the exact bitrate you get.Code:ffmpeg -y -i input.mp4 -an -c:v mpeg1video -qmin 1 -qmax 1 -b 30000k output.m1v
Similar Threads
-
How can I convert a walmart security video .avi(sn40 codex) to normal video
By DrBaheim in forum Newbie / General discussionsReplies: 20Last Post: 14th Jan 2025, 19:58 -
m1v format restricts resolution options.
By Mr.Curious in forum Newbie / General discussionsReplies: 26Last Post: 15th Jun 2020, 01:30 -
Video to Video won't convert full batched files
By technicality1 in forum Video ConversionReplies: 2Last Post: 28th Jan 2017, 05:01 -
Audio pitch after video is convert using handbrake or video coder
By Freelife2345 in forum AudioReplies: 3Last Post: 9th May 2016, 03:33 -
How to convert 15hour ( 30fps ) long video to timelapse video ( 15mins )?
By rplusj1 in forum EditingReplies: 9Last Post: 10th Oct 2015, 19:46



Quote