Hi ****
I need to encode this AA012101.MXF that is a mxf/mpeg2 video file into a .mp4 420 using ffmpeg.
https://www.dropbox.com/s/l2y4blybgv8q5aw/AA012101.MXF?dl=0
Semms that crf encoding is taking an output too heavy in MB of the final .mp4 output
Please can you suggest me a commandline that generate an efficient encoding, able to generate a video without artifacts, with a "small" heavy in MB of this? thanks
+ Reply to Thread
Results 1 to 5 of 5
-
-
Anonymous543Guest
use 2 pass rate control mode also reduce video resolution if you can and
libx265 encoder for video
libopus encoder for audio
with mkv wrapper -
sorry but my station need only h264 codec with .mp4 continer. Resolution have to be the same x 1920 1080.
Only a scaling 422-->420 is permitted
please I need the commandline desperately
[Attachment 63798 - Click to enlarge] -
Anonymous543Guest
you mean chroma subsampling?
if yes then -vf format=yuv420p this will change your video to 4:2:0
use this complete code if you are using windows
Code:ffmpeg -y -i input -c:v libx264 -preset slow -vf format=yuv420p -b:v 4000k -pass 1 -an -f null NUL && ^ ffmpeg -i input -c:v libx264 -preset slow -vf format=yuv420p -b:v 4000k -pass 2 -c:a aac -b:a 128k output.mp4
Similar Threads
-
FFMpeg XDCAM RDD9 Compliant MXF - Gop Structure
By ausmetal in forum Video ConversionReplies: 5Last Post: 8th Dec 2022, 23:12 -
MXF IBBP To MXF I frame only
By zahoor in forum Video ConversionReplies: 3Last Post: 27th Feb 2021, 13:54 -
FFMPEG Conversion from MKV to MP4 returns a empty MP4 file?
By lolmaisine in forum Video ConversionReplies: 4Last Post: 6th Mar 2019, 07:45 -
FFMPEG, how to encode this Panasonic P2 camera MXF video file?
By marcorocchini in forum Newbie / General discussionsReplies: 7Last Post: 31st Jul 2018, 09:14 -
Best way to Re-encode Canon 5D .mov file after Deshake?
By PhotoCat in forum Video ConversionReplies: 104Last Post: 8th May 2018, 22:35