How the Splitter operates in command line mode
By Olga Krovyakova - modified October 9, 2023, created March 28, 2019.
Q:-> I found that the Splitter has CLI (command line interface) named SMM_BatchSplit.exe. What are examples of editing video by means of the utility?
A:-> Yes, SolveigMM Video Splitter is shipped with CLI SMM_BatchSplit.exe utility that accept as an input an XML file with described task or batch of tasks named groups.
Here are the samples scripts to fulfill some simple editing tasks like trimming, edition out some porions and joinin some files.
<timeline> <group name="C:\video\result\output1.WMV"> <track video="1" audio="1" obey_sample_times="0"> <clip src="C:\video\input.WMV" start="00:04:00.00" stop="00:07:00.00"/> </track> </group> </timeline> |
and save an output without set fragments as an output2.WM
<timeline> <group name="C:\video\result\output2.WMV"> <track video="1" audio="1" obey_sample_times="0"> <clip src="C:\video\input.WMV" start="00:01:30.00" stop="00:03:20.00"/> <clip src="C:\video\input.WMV" start="00:05:00.00" stop="00:06:00.00"/> <clip src="C:\video\input.WMV" start="00:08:10.00" stop="00:09:10.00"/> </track> </group> </timeline> |
3. We have a set of Windows Media files with same video/audio paramenters (for example output1.WMV output2.WMV) and want to merge them to one single file - join_output3.WMV
<timeline> <group name="C:\video\result\join_output3.WMV" mode="joining"> <track video="-1" audio="-1"> <clip src="C:\video\result\output1.WMV" start="00:00:00:00" stop="00:00:00:00" /> <clip src="C:\video\result\output2.WMV" start="00:00:00:00" stop="00:00:00:00" /> </track> </group> </timeline> |
Olga Krovyakova is the Technical Support Manager in Solveig Multimedia since 2010.
She is the author of many text and video guidelines of company's products: Video Splitter, HyperCam, WMP Trimmer Plugin, AVI Trimmer+ and TriMP4.
She works with programs every day and therefore knows very well how they work. Сontact Olga via support@solveigmm.com if you have any questions. She will gladly assist you!