While Importing Videos to Premiere 2 frames are getting missed.
All Players shows full frames but in some old versions of Premiere or DaVinci will trim starting 2 or 3 frames in time line.
Play blast from Maya will work fine but after adding HUD from ffmpeg its happening.
Solutions:
The issue is basically lies on its codec settings. for adding HUD we will use '-vf "drawtext"' as ffmpeg command. So we could not use -c: copy along with -vf command. In this scenario use -crf 0 usually it will be 22 or 12. I am using H264 codec.
The ffmpeg command:
ffmpeg -i input.mov -c:v libx264 -crf 0 -vf "drawtext= 'fontcolor=white:fontsize=12:start_number=101'" output.mov
OR
you can use mpeg4 codec instead of libx264 it will resolve this issue but it will loose some quality of video
Comments
Post a Comment