Hi
So I would like to know how to load multiple videos into 1.avs. I have two VOB files and i would like to cut 2 pieces out of each video and have only 1 output file. So how do I join these two scripts together?
1st Script :
2nd Script :LoadPlugin("C:\Program Files\MeGUI\tools\ffms\ffms2.dll")
audio = FFAudioSource("C:\test1.VOB", 1)
video = FFVideoSource("C:\test1.VOB", threads=1)
AudioDub(video,audio)
TFM().TDecimate()
Trim (240,742) ++ Trim (812,982)
LoadPlugin("C:\Program Files\MeGUI\tools\ffms\ffms2.dll")
audio = FFAudioSource("C:\test2.VOB", 1)
video = FFVideoSource("C:\test2.VOB", threads=1)
AudioDub(video,audio)
TFM().TDecimate()
Trim (110,440) ++ Trim (521,762)
+ Reply to Thread
Results 1 to 2 of 2
-
-
There are several ways to do this. Me, I'd open the VOBs together in DGIndex and make a single D2V file for them and then do it in a single script. But, given what you've already done, maybe something like:
A=Import("C:\Path\To\FirstScript.avs")
B=Import("C:\Path\To\SecondScript.avs")
A ++ B
Similar Threads
-
Why don't Premiere and Vegas do basic non-lossy trimming and joining?!
By dorenhagen in forum EditingReplies: 3Last Post: 31st Jan 2011, 23:26 -
Trimming with Avisynth: An exploration
By Krelmaneck in forum EditingReplies: 2Last Post: 22nd Oct 2010, 12:20 -
Noob needs help trimming, splicing, audio with AviSynth
By PapaDmitry in forum EditingReplies: 39Last Post: 6th Jul 2010, 09:53 -
joining + trimming + subtitle creation + volume normalization All-In-One?
By sincostan45 in forum EditingReplies: 2Last Post: 30th Mar 2010, 22:53 -
Trimming the audio to go along with the video cuts in avisynth?
By mt123 in forum Newbie / General discussionsReplies: 0Last Post: 10th Jan 2010, 03:23