logo Sign In

Post #1253794

Author
Arnied
Parent topic
4K83 - Released
Link to post in topic
https://originaltrilogy.com/post/id/1253794/action/topic#1253794
Date created
2-Nov-2018, 5:05 PM

CatBus said:

Arnied said:

Maybe I missed it but what are the framenumbers of the 2 extra frames? And how many frames are there in total?

IIRC the frames in this release are basically a superset of the NTSC GOUT plus the PAL GOUT, so it has one more frame than the PAL GOUT and two more frames than the NTSC GOUT.

Chewtobacca posted this in the GOUT sync thread for converting PAL GOUT to NTSC GOUT.

Chewtobacca said:

RotJ

PAL GOUT

Mpeg2Source()
AssumeFPS(24000,1001)
DuplicateFrame(141781)
DeleteFrame(68664,68665)

The Star Wars title card appears on frame 689.

My Avisynth-fu has never been anything except rusty, but I think that means if you delete frames 68664 and 68665 from 4k83, you’ll get NTSC GOUT. Really worth a second opinion though 😉

EDIT: OK, thanks.

So to sync your favorite GOUT synced audio to 4k83 all you have to do is:

  1. insert as a wavesource of your favorite audio track of ROTJ (that is GOUT synced) in the script below and copy it to an .avs file.
  2. open the avs file in virtualdub.
  3. click file > save wav

Although I don’t see how there can be 2 extra frames after frame 68663.

video = BlankClip(length=200000)
audio = wavsource(“ROTJ - 1985 Stereo Home Video Mix.wav”)
AudioDub(video, audio)

DuplicateFrame(68663)
DuplicateFrame(68663)