PDA

View Full Version : Chopping credits + adding outtakes: possible?


Prizm
15th December 2001, 02:24
I'm using GKnot with DVD2AVI - I know it's possible to chop
the credits, but it is possible to choose the start and end?

I want to chop the credits of a movie, and add the outtakes
to the end of the movie, which are in a different VOB.

Is this possible?

Prizm

twistee
23rd December 2001, 08:37
you could just probably just encode them sepretely, then cut the credits and append the outtakes...but if there is a 'proper' way to cut the credits before encoding im interested (ive always wanted to do that myself)

philippas
24th December 2001, 00:42
I've done that when i was encoding Starwars Episode 1. You can automate it if you use avisynth+virtualdub/nandub and create a script like that:
---------------------------------------------------------------
LoadPlugin("C:\Divx\GORDIA~1\mpeg2dec.dll")
video = mpeg2source("C:\movie.d2v").trim(startframe,endframe)
extra = mpeg2source("C:\extras.d2v")
video+extra
---------------------------------------------------------------