Quantcast How to Put Several Parts of a Movie Together on KVCD? - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Video Encoding and Conversion

Reply
 
LinkBack Thread Tools
  #1  
06-22-2003, 05:14 AM
jshew jshew is offline
Free Member
 
Join Date: Mar 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
I am making a backup of my Memento DVD, chronological version, and it consists of 3 parts when ripped from the DVD, each with it's own Stream info file, IFO file and VOB files.

It is basically the main body of the movie as the middle part with credits at the beginning and the end.

I'm confused as how to go about doing it so my resulting KVCD flows from one to another. Suggestions??
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
06-22-2003, 07:53 AM
PyRoMaNiA PyRoMaNiA is offline
Free Member
 
Join Date: Jan 2003
Location: a PAL land (UK)
Posts: 408
Thanks: 0
Thanked 0 Times in 0 Posts
Do what you would always do, but when making your avisynth script, use something like this:

a=MPEG2Source("C:\part1.d2v")
b=MPEG2Source("C:\part2.d2v")
c=MPEG2Source("C:\part3.d2v")
x=a+b+c
x

#(filters here as usual)
Reply With Quote
  #3  
06-22-2003, 09:30 AM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
how do u mean in three parts? three parts in vobs? mpg? avi? what?
Reply With Quote
  #4  
06-22-2003, 07:05 PM
jshew jshew is offline
Free Member
 
Join Date: Mar 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
Yes, three sets of VOB files. Actually, part 1 has one Vob, part 2 has 4, part three has 1 VOB.
Reply With Quote
  #5  
06-22-2003, 07:55 PM
vico1 vico1 is offline
Free Member
 
Join Date: Sep 2002
Location: USA
Posts: 103
Thanks: 0
Thanked 0 Times in 0 Posts
PyRoMaNiA,
When combining multi .d2v files with avisynth, how would you go about resyncing audio...
if one, two, or all your individual .d2v files, had companion audio files with varied delays???
(ie: part1.d2v audio -66 delay, part2.d2v audio -100 delay, part3 audio -300 delay)


*******************************
The Devil`s always.....in the Details!
Reply With Quote
  #6  
06-23-2003, 01:52 AM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
Quote:
Originally Posted by jshew
Yes, three sets of VOB files. Actually, part 1 has one Vob, part 2 has 4, part three has 1 VOB.
ok, easy answer is have the vobs end in a consecative numer range, eg. VTS_01_1 then VTS_01_2 etc just make sure there in the right order when renaming. then load into dvd2avi and dvd2avi will automatically add the files and problem solved.
Reply With Quote
  #7  
06-23-2003, 07:28 AM
jshew jshew is offline
Free Member
 
Join Date: Mar 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
Okay, so it looks like we have two ways to do it.

Pyromania said use Avisynth and work with the three d2v files

andybno1 said to rename the VOB files in the order you want them, then DVD2AVI will sort it out from there.
Reply With Quote
  #8  
06-23-2003, 09:43 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
hey jshew

this guide i test and works... maybe help you:

http://www.dvdrhelp.com/forum/userguides/120021.php

Reply With Quote
  #9  
06-23-2003, 11:37 AM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
Quote:
Originally Posted by jshew
Okay, so it looks like we have two ways to do it.

Pyromania said use Avisynth and work with the three d2v files

andybno1 said to rename the VOB files in the order you want them, then DVD2AVI will sort it out from there.
I only sugesst put all vobs in the the one d2v file to save u messin about with three d2v files.
Reply With Quote
  #10  
06-23-2003, 12:10 PM
Bigswaffo Bigswaffo is offline
Free Member
 
Join Date: Apr 2002
Location: Tejas
Posts: 86
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by PyRoMaNiA
Do what you would always do, but when making your avisynth script, use something like this:

a=MPEG2Source("C:\part1.d2v")
b=MPEG2Source("C:\part2.d2v")
c=MPEG2Source("C:\part3.d2v")
x=a+b+c
x

#(filters here as usual)
Would that also work for avi's?
Reply With Quote
  #11  
06-23-2003, 12:12 PM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Bigswaffo
Quote:
Originally Posted by PyRoMaNiA
Do what you would always do, but when making your avisynth script, use something like this:

a=MPEG2Source("C:\part1.d2v")
b=MPEG2Source("C:\part2.d2v")
c=MPEG2Source("C:\part3.d2v")
x=a+b+c
x

#(filters here as usual)
Would that also work for avi's?
yes Bigswaffo,
same like this:

Part1 = avisource("part1.avi")
Part2 = avisource("part2.avi")
return Part1+Part2

...
Reply With Quote
  #12  
06-23-2003, 01:40 PM
PyRoMaNiA PyRoMaNiA is offline
Free Member
 
Join Date: Jan 2003
Location: a PAL land (UK)
Posts: 408
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by vico1
PyRoMaNiA,
When combining multi .d2v files with avisynth, how would you go about resyncing audio...
if one, two, or all your individual .d2v files, had companion audio files with varied delays???
(ie: part1.d2v audio -66 delay, part2.d2v audio -100 delay, part3 audio -300 delay)
I would just encode the audio files extracted by DVD2AVI separately with HeadAC3he as usual... then join them with mp3merge, try a search for it on Gooogle. Haven't tried this is a while though, so not sure if that's the best way to do it...
Reply With Quote
  #13  
06-23-2003, 01:47 PM
JoZ JoZ is offline
Free Member
 
Join Date: Mar 2003
Location: ntsc .us
Posts: 102
Thanks: 0
Thanked 0 Times in 0 Posts
Merging them with mp3merge could cause desync because audio often is
different then video size. IMHO.

How did you get three different vobs? Are they the same movie? If "yes"
then rename them in order like andybno1 suggested. Btw they should be
named like that at the time you've ripped them.

If "no" (means three separated vob streams) go and encode each of them
mux audio and video and you'll get three different mpegs. After that
use vcdeasy to put them on a single cd. Add them in order you want to
watch.
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
VirtualDub: Can't join two xvid parts together? Adder Video Encoding and Conversion 3 12-31-2004 03:44 PM
Avisynth: Cut credits on 2 parts of movie? (start and end) bman Avisynth Scripting 12 05-28-2004 06:10 AM
Best way to cut parts of a DVD2AVI file? audi2honda Video Encoding and Conversion 2 08-13-2003 12:05 AM
KVCD Movie stuttering? (begins at the halfway point of movie) incredible Video Encoding and Conversion 1 05-20-2003 09:26 AM
TMPGEnc: Cut in three parts increases total size? jorel Video Encoding and Conversion 14 01-11-2003 07:13 PM




 
All times are GMT -5. The time now is 11:03 PM  —  vBulletin © Jelsoft Enterprises Ltd