I’m having problem combining .mpg video clips; originally these videos were from a same TV source. These open fine with DirectShowSource as individuals but when I use scripts as stated in the guide, I get an error message.
What do you think, I’m doing wrong? Thanks!
TS
+ Reply to Thread
Results 1 to 9 of 9
-
-
Try something like:
v1 = DirectshowSource("video1.avi")
v2 = DirectshowSource("video2.avi")
v3 = DirectshowSource("video3.avi")
return(v1+v2+v3)
All should have the same frame size, frame rate, etc. Consider using DGIndex/DGDecode and MPEG2Source() instead of DirectShowSource(). -
Originally Posted by ks47
What is the error message?
Anyway, Avisynth is probably not the best choice unless you're converting it to AVI or another format. If it's just joining MPEGs and outputting it as MPEG, use an MPEG editor.
https://www.videohelp.com/tools/sections/video-editors-mpg-dvd -
Originally Posted by jagabo
“AlanHK”
What is your actual script?
What is the error message?
TS
Edit: While trying to clone the example scripts above, I used DirectShowSource .mpg rather than avi as was stated in the in the initial post. -
So you have been using MPEG2Source("video1.d2v") but decided to try DirectShowSource() instead? That may imply some sort of problem with the installed Directshow MPEG2 decoder or file splitter.
-
Originally Posted by ks47
One possibility is that the filenames are causing problems. You have spaces, commas, full stops in them. Some programs choke on these (thus "was not found" errors). Rename files and folders to simple, short names and try again. -
Originally Posted by AlanHK
1. UnalignedSplice(DirectShowSource("G:\Video Music\A.00.mpg"), DirectShowSource("G:\Video Music\B.01.mpg"))
2.DirectShowSource("G:\Video Music\A.00.mpg") + DirectShowSource("G:\Video Music\B.01.mpg")
TS -
You still have an extra period in your filenames.
Get rid of that.
Then try just one file:
Code:DirectShowSource("G:\Video Music\A00.mpg")
-
Originally Posted by jagabo
TS
Similar Threads
-
Combining DVD's
By grandsire02 in forum Authoring (DVD)Replies: 2Last Post: 8th Apr 2012, 07:06 -
File Combining
By ccrow79 in forum Newbie / General discussionsReplies: 1Last Post: 9th Feb 2010, 06:57 -
TS combining
By vassock in forum Authoring (Blu-ray)Replies: 7Last Post: 17th Jul 2009, 22:12 -
combining two VOBs into one
By Jan G. in forum EditingReplies: 16Last Post: 8th Apr 2009, 12:27 -
Combining Images
By DuBsTaR in forum ComputerReplies: 4Last Post: 27th Mar 2008, 20:15