I can play a video with melt if I do the command:
melt video.mp4 in=50 out=1000
The in
parameter lets me specify that I want the video to start at frame 50. The out
parameter lets me specify that I want to video to stop playing at frame 1000. My question is: Is there any way I can do something like this instead:
melt video.mp4 in=50 length=950
It would be very useful in a case where I want to mix together a lot of clips that needs to have the same length. Is there any such parameter available?