I will try to migrate to Shotcut.
Since I will be not using the automatic un-drifting and alignment through Shtocutâs UI until Monday, I shall use the following hack. Iâd love to get some help from MLT gurusâŠ
I have written a script that generates an mlt
file, just like @brian mentioned.
The script uses the âdrift and alignment calculatorâ and then executes something like
melt -profile atsc_1080p_60 file.mp4 -track -blank 78 file.wav -consumer xml
to generate the â.mltâ file. I will include this mlt file instead offile.mp4
andfile.wav
.
However, I do not know how to instruct melt
to apply the âdriftâ. It seems I need to use -chain
and -link
. I want to apply those to file.wav
, without applying it to -blank 78
. I suppose it is something like this:
melt -profile atsc_1080p_60 file.mp4 -track -blank 78 -chain file.wav -link timeremap speed=0.9995 -consumer xml
The values 78
and 0.9995
are determined by the program I wrote.
So, does any one know the proper way to instruct melt to generate this âaligned and undriftedâ mlt file?
Actually, Iâd also like to suppress file.mp4
âs audioâŠ