I've got about 50 VOB files that I want to trim off the first 50 seconds on every one of them. Does anyone know of an easy way to do this? The VOB files aren't huge. They range from about 500meg to about 1.5gig. And I can convert them to basically any other format if there is a format specific editor that can do this. Thanks in advance.
+ Reply to Thread
Results 1 to 3 of 3
-
-
You can try ffmpeg
Code:for %%a in ("*.vob") do ffmpeg -i "%%a" -ss 50 -vcodec copy -acodec copy "newfiles\%%~na.mpg"
ffmpeg batch guide
https://forum.videohelp.com/threads/356314-How-to-batch-convert-multiplex-any-files-with-ffmpeg