Trying the batch processor.
I am following the examples in
http://www.solveigmm.com/forum/index.php?topic=2332.0.
I do not get #3 to work.
#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>The output is not a join of the list of input files, only the first one appears in the (joined) output.
I actually use :
<timeline>
<group name="D:\test\join_1.WMV" mode="joining">
<track video="-1" audio="-1">
<clip src="D:\test\o_1.WMV" start="00:00:00:00" stop="00:00:00:00" />
<clip src="D:\test\t_1.WMV" start="00:00:00:00" stop="00:00:00:00" />
<clip src="D:\test\o_2.WMV" start="00:00:00:00" stop="00:00:00:00" />
</track>
</group>
</timeline>
t_1.wmv is a transition file I created using "PictureToVideo", as I did not get "SolveigMM BMPs to AVI | .NET application + DLL" to run, and because it allows for transitions. I suppose that the video params of this transition file do not exactly match with those of the other WMV files ? Which params are critical ?
When I remove this transition file, and I keep the 2 regular WMV files, SMM_Batchsplit creates the join file, but crashes before writing its log file, with the regular Windows error "... has encountered a problem and needs to close...".