VideoHelp Forum




+ Reply to Thread
Results 1 to 2 of 2
  1. 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 :

    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)
    2nd Script :

    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)
    Quote Quote  
  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
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!