-
Side by Side videos with text overlay
I am trying to take two UHD videos and compare them side by side to each other with a text overlay describing which is which. The first video to go on the left half of the frame is the source. The second video on the right half is a transcode of the source converted to ProRes in a previous step. I am cropping each video by half horizontally so that when the two are shown side by side, the resulting video is still in UHD resolution and appears to be a single natural image (ie, not mirrored). The final output of the combined assets must be in ProRes format again.
The following command is what I have thus far:
ffmpeg -i v210.avi -vf “crop=1920:2160:1920:0 [inScale]; color=c=black@1.0:s=3840×2160 [bg]; movie=ProRes.mov, crop=1920:2160:0:0 [vid2]; [bg][vid2] overlay=0:0 [basis1]; [basis1][inScale] overlay=1920:0” -r 60 -c:v prores_ks -profile:v 3 -qscale:v 2 -vendor ap10 -pix_fmt yuv422p10le test.movThis command works fine. But I would like to be able to add a simple text overlay to the final video describing which is the source and which is the transcode. Everything I have tried thus far has been met with errors in ffmpeg and I get no output file.
Any help would be greatly appreciated.
Regards,
CS
