Hello everyone! I am brand new to this forum, so thanks again for any help!!
So anyways I have like 1000 video files, in.mov format.
I need to convert the .mov to .mp4 and generate 30 second videos previews starting from around the 1 minute mark of each video till about a minute and a half. I have heard about ffmpeg but I have no idea how to use it.
How can I do that ? Is there any solution?
I really appreciate if anyone can help me out.
Thanks!!
Tom![]()
+ Reply to Thread
Results 1 to 4 of 4
-
Last edited by tcarp; 12th Mar 2014 at 13:18.
-
https://forum.videohelp.com/threads/356314-How-to-batch-convert-multiplex-any-files-with-ffmpeg
and the command to cut,
Code:-ss 00:01:00 -t 00:00:30
So
Code:for %%a in ("*.mov") do ffmpeg -i "%%a" -vcodec copy -acodec copy -ss 00:01:00 -t 00:00:30 "newfiles\%%~na.mp4" pause
Last edited by Baldrick; 12th Mar 2014 at 14:36.
Similar Threads
-
Batch processing all my video files.
By Paxmilitaris in forum Newbie / General discussionsReplies: 1Last Post: 25th Mar 2013, 16:43 -
Easy batch converting 1 and 2 channel files to surround?
By John T WIlliams in forum AudioReplies: 8Last Post: 30th Mar 2012, 13:16 -
Batch convert ISO's to video files
By Nucleus in forum Video ConversionReplies: 2Last Post: 13th Nov 2011, 12:50 -
Audio/Video-sync batch converting
By Lamur in forum Video ConversionReplies: 1Last Post: 8th Jan 2011, 13:13 -
Batch Converting MOV Files
By thomasj in forum LinuxReplies: 3Last Post: 25th Dec 2009, 14:50