Using the command line you gave half works - it made a combined file of the two files, but forgot to include the video
So assuming it to be a transcoding issue, I tried this:
Code: Select all
"c:\vlc\vlc" -vvv "d:\media\video1.avi" "d:\media\video2.avi" --sout=#transcode{vcodec=WMV2,scale=1,acodec=wma,ab=96,channels=2}:duplicate{dst=std{access=file,mux=asf,dst="D:\media\test.wmv"}} --sout-keep
I figured I might as well get it ready for 360 streaming while I'm combining it. Sadly though this only transcoded the first file and output it to test.wmv. However, although it went through the transcoding process for the second file, it didn't seem to save it anywhere - certainly not on the end of the first file. Now, I'm not that hot with vlc's command line, so I may be doing something obviously wrong, but I don't know what it is. Anyone know where I'm going wrong?