+ 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.
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
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:Code:ffmpeg -y -i run.mkv -an -c:v mpeg1video -g 1 -b:v 12000k run.m1v
Code:ffmpeg -y -i run.mkv -an -c:v mpeg1video -g 1 -b:v 5000k run.m1v
taking out theCode:-g 1
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):
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, 18:58 -
m1v format restricts resolution options.
By Mr.Curious in forum Newbie / General discussionsReplies: 26Last Post: 15th Jun 2020, 00:30 -
Video to Video won't convert full batched files
By technicality1 in forum Video ConversionReplies: 2Last Post: 28th Jan 2017, 04:01 -
Audio pitch after video is convert using handbrake or video coder
By Freelife2345 in forum AudioReplies: 3Last Post: 9th May 2016, 02:33 -
How to convert 15hour ( 30fps ) long video to timelapse video ( 15mins )?
By rplusj1 in forum EditingReplies: 9Last Post: 10th Oct 2015, 18:46