cafevincent
7th November 2017, 11:07
I need a way to copy a small clip from a video so that filebot can detect still detect video properties like resolution, video and audio codecs. It's for a batch script that oversees filebot renaming.
I'm currently not aware of any way of doing this to any file type so I'm not sure if there is a different way to do this for a video but I suspect so. I was trying to do this via mkvmerge
mkvmerge -o "%tempdir%\%file%.mkv" --split timecodes:10s --split-max-files 2 "%full%"
It appears that the split function always writes out the whole file (in pieces) even if I use the max files limit. Maybe mkvmerge is not what I should be using here?
I'm currently not aware of any way of doing this to any file type so I'm not sure if there is a different way to do this for a video but I suspect so. I was trying to do this via mkvmerge
mkvmerge -o "%tempdir%\%file%.mkv" --split timecodes:10s --split-max-files 2 "%full%"
It appears that the split function always writes out the whole file (in pieces) even if I use the max files limit. Maybe mkvmerge is not what I should be using here?