-
resize and add burn in
Newbie question…
I want to add burn in timecode and also resize a video called C13v01.
I have succeeded in doing this in 2 stages but how do I write it so its all in one line of code?
this is my code for the burn inffmpeg -y -i C13v01.mov -c:v libx264 -preset ultrafast -b:v 1500k -pass 1 -c:a pcm_s32le -b:a 128k -pix_fmt yuv420p -vf drawtext=”fontsize=15:fontfile=/Library/Fonts/Andale Mono.ttf:\
timecode=’00\:00\:00\:00′:rate=25:text=’TCR\:’:fontsize=72:fontcolor=’white’:\
boxcolor=0x000000AA:box=1:x=10:y=10″ mymovie.movand this is the code for the resize
ffmpeg -y -i C13v01.mov -c:v libx264 -preset ultrafast -b:v 1500k -pass 1 -c:a pcm_s32le -b:a 128k -pix_fmt yuv420p -vf scale=iw/3:-1 mymovie.movmany thanks in advance!!