logo Sign In

pittrek

User Group
Members
Join date
16-Nov-2005
Last activity
25-Jun-2025
Posts
2,737

Post History

Post
#292383
Topic
Help: looking for... ADM's Star Wars: Episode II.V - The Clone Wars
Time
Originally posted by: lordjedi
I can probably seed this some more tomorrow. One of you will need to take over for a bit once it's complete. I think I originally seeded this out to 12+ people.


If you're the one seeder who appeared yesterday evening, thanks a lot, don't be afraid, I seed everything to at least 1.5 ratio and delete the files after nobody downloads from me at least a week.
Post
#291191
Topic
2006 DVD OOT
Time
The original theatrical versions were NEVER released on DVD. The shit commonly know as GOUT are NOT the theatrical versions. They are the "definitive collection" masters transfered to a incredibbly BAD looking video.
The differences between the theatrical versions :
1) The colors are different on many scenes - just look at the Tantive IV segment on E4 (the walls, the rebels shirts) or the blue snow on E5. I don't know if these are color anomalies created by the film ageing, or "deliberate creative decisions", but they were NOT on the original movies, just look some older laserdisc or VHS transfers.
2) The digital video noise reduction which was done to this masters fucked the complete video, now we have a video with a very small detail, trails, 4-eyed stormtroopers and similar shit which was not on the original film.
3) Some frames are missing
4) The audio is NOT from the theatrical versions, it is from the DE version. It is VERY similar to the theatrical stereo, but not the same.
5) At some countries (like Austria) the audio suffers from PAL speedup.

I really can't tell anything good about this "Fuck you, fans" release. Those are NOT the theatrical versions, they look and sound like shit.
Post
#290910
Topic
Star Wars - The Vintage Edit (* unfinished project *)
Time
Well, the method I've mentioned makes exactly what I have written, simply takes the GOUT video as the base layer, and puts over this layer the same video from the 2004 release with black being transparent. That's why the code doesn't work.
Both Layer and ColorKeyMask expect a clip as their parameter, and not an avs script, so you should have it ALL in one script, and you should start it with for example

GOUT = mpeg2source("path_to_GOUT_clip.d2v")
SE = mpeg2source("path_to_SE_clip.d2v")

GOUT = GOUT.Trim(..., ...) #the start and end frames if you want to do it only with one scene
SE = SE.Trim(... , ...) #the same

GOUT = Crop(... , ... , ... , ...).Lanczos4Resize(720, ...) # crop it and resize, the numbers are depending on the format you're using (NTSC / PAL)

#and later use
Layer(GOUT, ColorKeyMask(SE, $000000, 10), "add", 255, 0, 0)



That's one method. If you don't wanna do it this way, tellan wrote a couple of month ago a different method on chroma keying in his "Lancer project" thread. Maybe it's worth reading.
Post
#290413
Topic
NTSC to PAL
Time
If you don't care much about quality and "good" is good enough for you, here's a "quick and dirty" way :

Write an AviSynth script, add to its end the lines
Lanczos4Resize(720, 576)
ConvertFPS(25)


Load the script to an mpeg encoder (CCE, HCEncoder, QuEnc, TMPGEnc), and create an mpeg video stream. Author with your favorite DVD authoring software