Posts: 1,539
Threads: 60
Joined: 2015 Jan
Thanks: 229
Given 632 thank(s) in 372 post(s)
Country:
2016-11-13, 12:47 AM
(This post was last modified: 2016-11-13, 01:08 AM by Chewtobacca.)
Posts: 1,539
Threads: 60
Joined: 2015 Jan
Thanks: 229
Given 632 thank(s) in 372 post(s)
Country:
2016-11-13, 12:48 AM
(This post was last modified: 2016-11-13, 01:03 AM by Chewtobacca.)
Posts: 1,539
Threads: 60
Joined: 2015 Jan
Thanks: 229
Given 632 thank(s) in 372 post(s)
Country:
2016-11-13, 12:49 AM
(This post was last modified: 2020-03-02, 01:19 AM by Chewtobacca.)
ESB
PAL GOUT
Code: Mpeg2Source()
AssumeFPS(24000,1001)
DeleteFrame(150204,150205)
Hairy_hen’s 2020 5.1 track is synced to the slowed-down PAL GOUT. The following script will sync it to the NTSC by crossfading the audio at the appropriate point, to account for the two-frame difference.
First, decode the MLP to W64.
Code: eac3to.exe ESB_hh_5.1_v3.mlp ESB_hh_5.1_v3.w64
Make sure that you have AviSynth+ and VirtualDub2 installed. Download BeHappy, look in the plugins32 folder, and copy NicAudio.dll to your working directory. Open a text editor. Copy in the following script, save it as whatever.avs in your working directory, and open it in VirtualDub2.
Code: LoadPlugin("NicAudio.dll")
blank =
\AudioDub(
\BlankClip(length=179670,
\fps=24000,
\fps_denominator=1001),
\RaWavSource("ESB_hh_5.1_v3.w64",1)
\)
sync=
\Dissolve(
\Trim(blank, 0, 150211),
\Trim(blank, 150203, 0),
\11)
return sync
File->Save Audio...-> whatever.w64
Team Negative1's Renegade Grindhouse Edition v1
Code: # This also works for the BD-compatible release. Use eac3to demux
# the video.
Loadplugin("C:\Program Files (x86)\Haali\MatroskaSplitter\avss.dll")
ESB=FFmpegSource2("02ESB_Grindhouse_1080p_BD25.mkv") \
.ConvertToYV12()#.ShowFrameNumber(scroll=true)
ESB2= \
Trim(ESB, 0,3096).Loop(12,0,0) ++ \
ESB.Loop(6,30727,30727).Trim(3096, 35385) ++ \
ESB.Loop(3,35381,35381).Trim(35381, 59546) ++ \
ESB.Loop(7,59544,59544).Trim(59544, 59758) ++ \
ESB.Loop(5,59753,59753).Trim(59753, 75034) ++ \
Trim(ESB,75030,75978) ++ \
Trim(ESB,75978,90851) ++ \
ESB.Loop(7,90852,90852) \
.Trim(90852,104633) \
.DuplicateFrame(13781) ++ \
Trim(ESB,104627,121679) ++ \
ESB.Loop(24,121679,121679).Trim(121679, 150156) ++ \
ESB.Loop(11,150134,150134).Trim(150134, 0)
return ESB2
PSB
Code: # Load VTS_01_1.VOB through VTS_01_5.VOB into DGIndex.
# Set the field operation to "Forced Film".
# When prompted to correct the field-order transition, click "Yes".
PSB=Mpeg2Source("PSB.d2v")
PSB2= \
Trim(PSB, 3455, 63023) ++ \
PSB \
.DuplicateFrame(102542, 102543) \
.Loop(5, 63242, 63242) \
.Trim(63127, 125280) \
.FadeOut0(25) ++ \
PSB \
.DeleteFrame(153858, 153859) \
.Trim(125377, 183321)
return PSB2
The Star Wars title card appears on frame 688.
Posts: 1,539
Threads: 60
Joined: 2015 Jan
Thanks: 229
Given 632 thank(s) in 372 post(s)
Country:
2016-11-13, 12:50 AM
(This post was last modified: 2017-03-22, 10:05 PM by Chewtobacca.)
Posts: 139
Threads: 8
Joined: 2015 Mar
Thanks: 37
Given 74 thank(s) in 34 post(s)
Country:
Can I get a frame count for all 3 gout films? I've switched pc's and had to redo the d2v files and I'm not coming up with the same frame count as I had on the older pc. My old frame count for esb was 179668 and now I'm getting 179444.
Posts: 1,539
Threads: 60
Joined: 2015 Jan
Thanks: 229
Given 632 thank(s) in 372 post(s)
Country:
I don't have frame counts to hand. To check, I'd have to find the discs and rip them. (I'm willing to do this; it just might be a while before I get round to it.)
Did you use forced film in DGIndex for both indices? Are you indexing the same files or did you re-rip the discs? Did you demux with PGCDemux?
Posts: 139
Threads: 8
Joined: 2015 Mar
Thanks: 37
Given 74 thank(s) in 34 post(s)
Country:
2017-03-17, 01:09 AM
(This post was last modified: 2017-03-17, 01:09 AM by althor1138.)
I reripped the discs. No I didn't use pgcdemux. I ripped to an iso with dvddecrypter and then demuxed the pgc using dvddecrypter. I'll try again with pgcdemux.
Posts: 1,539
Threads: 60
Joined: 2015 Jan
Thanks: 229
Given 632 thank(s) in 372 post(s)
Country:
2017-03-17, 01:17 AM
(This post was last modified: 2017-03-17, 01:18 AM by Chewtobacca.)
^ That's the explanation. Using DVD Decrypter has caused problems like this before. Always rip with DVDFab or AnyDVD, demux with PGCDemux, and make an index with DGIndex with forced film selected. That way, GOUT sync is virtually assured.
Posts: 139
Threads: 8
Joined: 2015 Mar
Thanks: 37
Given 74 thank(s) in 34 post(s)
Country:
Will do. So the question remains, have I been gout-syncing to the wrong frame count all of this time? I gotta go to bed will investigate more tomorrow.
Posts: 139
Threads: 8
Joined: 2015 Mar
Thanks: 37
Given 74 thank(s) in 34 post(s)
Country:
2017-03-17, 01:24 AM
(This post was last modified: 2017-03-17, 01:26 AM by althor1138.)
When you say demux do you mean demux by pgc to m2v, using pgcdemux?
or by vobid?
|