Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5,508
» Latest member: okus100
» Forum threads: 5,902
» Forum posts: 85,610
Full Statistics
|
Latest Threads |
Ripping Seamless Branchin...
Forum: Capture and rip
Last Post: Beber
14 minutes ago
» Replies: 11
» Views: 5,752
|
Hello,
Forum: Presentation
Last Post: okus100
1 hour ago
» Replies: 0
» Views: 6
|
Crocodile Dundee 1986 Aus...
Forum: Released
Last Post: dannyboy666
1 hour ago
» Replies: 24
» Views: 6,124
|
Casablanca 1984 CBS/Fox H...
Forum: Requests, proposals, help
Last Post: Johnny-5
Today, 01:05 AM
» Replies: 3
» Views: 1,835
|
U-571 Laserdisc
Forum: Requests, proposals, help
Last Post: BusterD
Yesterday, 04:56 PM
» Replies: 1
» Views: 119
|
Jackie Chan's "Who Am I?"...
Forum: Released
Last Post: Serums
Yesterday, 11:27 AM
» Replies: 28
» Views: 8,848
|
Dazed and Confused Fullsc...
Forum: Released
Last Post: Wak Nanook
Yesterday, 05:15 AM
» Replies: 1
» Views: 374
|
Ashes of Time (1994) Thea...
Forum: Official and unofficial releases
Last Post: PCFLaw2025
2025-09-12, 05:11 PM
» Replies: 90
» Views: 50,157
|
"Commando director's cut"...
Forum: Requests, proposals, help
Last Post: Beber
2025-09-12, 04:43 PM
» Replies: 15
» Views: 1,488
|
Highlander - The French T...
Forum: Released
Last Post: davwe986
2025-09-11, 10:56 PM
» Replies: 18
» Views: 14,420
|
|
|
Rigby Reardon's Mondo Sync Script for TGtBatU |
Posted by: Chewtobacca - 2016-11-13, 01:27 AM - Forum: Script snippets
- No Replies
|
 |
I'm posting this because:
- it got me into using AviSynth to sync and is something of an exemplar of how to do it;
- I think it's a little bit of scripting history.
The script synchronizes the English DTS-HD 5.1 from the (old i.e. pre-4K) MGM Blu-ray to the Italian BD from Mondo.
Requirements
- the latest version of AviSynth
- SoundOut and NicAudio plugins
- the audio track from the MGM BD in PCM format (which can be generated by eac3to)
*original post*
Code: /*
* GBUDub.avs
*
* This script generates a synced English dub for the
* Italian Blu-ray release of "The Good, the Bad, and
* the Ugly" out of the audio track of the MGM Blu-ray.
*
* Input file:
* PCM (big endian) format, 48kHz/24 bit, 6 channels
* runtime 02:58:41
*
* The runtime of the output file should be 02:54:23.
*
* "Rigby Reardon" @ AVSForum, 2009-10-18
*/
# Replace with your own filename here
au0 = NicLPCMSource("d:\video\GBU\gbu_6ch.pcm", 48000, -24, 6)
bl0 = BlankClip(length=256135, fps=24000, fps_denominator=1001, \
channels=6, audio_rate=48000, sample_type="24bit")
av0 = AudioDub(bl0, au0)
Trim(bl0, 0 , 413 ) ++ \
Trim(av0, 312 , 4237 ) ++ \
Trim(av0, 4254 , 18251 ) ++ \
Trim(av0, 18253 , 27442 ) ++ \
Trim(av0, 27441 , 35469 ) ++ \
Trim(av0, 35469 , 35796 ) ++ \
Trim(av0, 35796 , 40375 ) ++ \
Trim(av0, 40378 , 55111 ) ++ \
Trim(av0, 59854 , 66116 ) ++ \
Trim(av0, 66109 , 75416 ) ++ \
Trim(av0, 75418 , 76166 ) ++ \
Trim(av0, 76168 , 91535 ) ++ \
Trim(av0, 91534 , 94950 ) ++ \
Trim(av0, 94950 , 118982 ) ++ \
Trim(av0, 118974 , 124891 ) ++ \
Trim(av0, 124891 , 141569 ) ++ \
Trim(av0, 141569 , 147641 ) ++ \
Dissolve( \
Trim(av0, 149245 , 149536 ), \
Trim(av0, 147643 , 148134 ), 10 \
) ++ \
Dissolve( \
Trim(av0, 148132 , 148324 ), \
Trim(av0, 148321 , 149145 ), \
Trim(av0, 150217 , 150497 ), \
Trim(av0, 150490 , 150710 ), \
Trim(av0, 150705 , 150791 ), \
Trim(av0, 150787 , 151022 ), \
Trim(av0, 149522 , 149805 ), \
Trim(av0, 151029 , 151406 ), \
Trim(av0, 151396 , 151510 ), 2 \
) ++ \
Dissolve( \
Trim(av0, 151510 , 152091 ), \
Trim(av0, 149792 , 150237 ), \
Trim(av0, 152075 , 152492 ), 20 \
) ++ \
Dissolve( \
Trim(av0, 152583 , 152921 ), \
Trim(av0, 152984 , 154010 ), 2 \
) ++ \
Trim(av0, 154010 , 163697 ) ++ \
Trim(av0, 163699 , 168009 ) ++ \
Trim(av0, 168009 , 168723 ) ++ \
Trim(av0, 168723 , 175351 ) ++ \
Trim(av0, 175351 , 176293 ) ++ \
Trim(av0, 176284 , 211334 ) ++ \
Trim(av0, 211337 , 223241 ) ++ \
Trim(av0, 223240 , 224481 ) ++ \
Trim(av0, 224480 , 234857 ) ++ \
Trim(av0, 234859 , 244119 ) ++ \
Trim(av0, 244116 , 244155 ) ++ \
Trim(av0, 244155 , 244722 ) ++ \
Trim(av0, 244724 , 245819 ) ++ \
Trim(av0, 245821 , 249585 ) ++ \
Trim(av0, 249974 , 253861 ) ++ \
Trim(av0, 253890 , 256134 ).FadeOut0(240)
SoundOut()
# End of script
|
|
|
The GOUT Sync Thread |
Posted by: Chewtobacca - 2016-11-13, 12:47 AM - Forum: Script snippets
- Replies (12)
|
 |
This is a direct copy of my thread on ot.com. It should already fulfil the requirements that Feallan posted in his introductory thread, but I'll double-check this when I have everything copied over.
Requirements
Obviously, the latest version of AviSynth is required. Scripts that use MPEGSource2() envisage use of DGIndex. Other script-specific requirements are listed as they arise.
A few people have mentioned that it might be nice to have a thread devoted to synchronizing various projects to the NTSC GOUT. Currently, most of the the relevant information is available, but it is scattered about a bit.
Background Information
In this context, GOUT refers to the bonus discs that came with the Limited Edition DVD release of the OT. By convention, audio mixes are synchronized to the NTSC GOUT, not the PAL GOUT; therefore, releases of the original theatrical versions of the OT tend to be synchronized to it as well so people can mux in their favorite audio.
Audio
All of hairy_hen's mixes are already synchronized to the NTSC GOUT. Belbucus' audio tracks need the following delay values.
Code: SW: + 1.017s
ESB: + .948s
ROTJ: + 1.015s
I'll start with scripts that sync the PAL GOUT to the NTSC GOUT and add others as people make them available.
Useful Links
Reel Lengths
|
|
|
Script snippets subforum |
Posted by: Feallan - 2016-11-12, 06:53 PM - Forum: Script snippets
- Replies (3)
|
 |
This subforum is intended to be an easily searchable collection of scripts that do something. Could be anything related to A/V editing that's done using a series of text commands rather than a graphical interface.
To keep things manageable:
1. Each script must have its own thread with a descriptive name.
2. Each thread must have a prefix (you choose it from a list next to a field with thread name), which describes the piece of software your script is for. E.g. Avisynth
3. Inside each thread, write up what the script does, what it requires, how it is intended to be used etc. and then post the contents of the script using a "code" tag:
Code: Script body goes here
4. If your script is long and contains indents (\t), you should attach a file to your post instead
5. If your thread gets a lot of replies that made you change something in your script, update your original post and include information what was changed and why
Thread prefixes available now are AviSynth, eac3to, FFmpeg, x264, x265, Other. I couldn't think of any more, if you can, please post your suggestions here
|
|
|
tim_p from UK saying hi |
Posted by: tim_p - 2016-11-07, 09:42 PM - Forum: Presentation
- Replies (6)
|
 |
Hi!
Lurker and occasional poster on lddb (not for a while) and OT (likewise) and blu-ray.com. Have always been interested in original soundtracks over revisionist nonsense and the golden/silver age of surround sound technology. Got really brave and bought an M-Audio soundcard last year to attempt some ld captures and never got round to installing it and sold it on! Real life means it'll be more of the low profile from me but I like to offer the occasional opinion, bit of research and so on.
To all those doing - keep up the good work!
|
|
|
lossless codecs problem |
Posted by: spoRv - 2016-11-06, 02:28 PM - Forum: Converting, encoding, authoring
- Replies (7)
|
 |
I'm "back in business" in the last few days; trying to encode some pending projects, I had a lot of troubles - encoding crashes, stops at different frames etc.
I strongly suspect Lagarith is guilty; in particular, using more than one istance could be the problem... for example, I tried to save a project with it, using two sources encoded with the same codec - so, two Lagarith in, one Lagarith out... and it stops everytime; also, two Lagarith in, one X264 out do the same... trying to solve the problem saving those with other codecs - the LD with Huffyuv, the HD-DVD with MagicYUV, then I will try to encode the final project both in Lagarith and X264, and see what will happen - if Lagarith will fail, the problem lies in the codec itself, if also X264 will fail, problem is somewhere else, but where?
Let's wait until the final encoding...
|
|
|
The Thing [spoRv] v2.0 |
Posted by: spoRv - 2016-11-06, 04:10 AM - Forum: Archived projects
- Replies (76)
|
 |
IMPORTANT UPDATE: Project released under the new [Fundamental Collection] label - please visit https://fanrestore.com/thread-1348.html and post your comments there, thanks!
The Thing (1982) [special preserved or Restored version] v2.0
Project mission: restore John Carpenter's The Thing video to be closest to the theatrical version as could be possible at the present day, using the best video source chosen from all the various available versions; adding the best original and remastered audio soundtracks in different languages.
Video sources: HD-DVD Scream Factory BD, Laserdisc as color reference.
Audio sources: uncompressed PCM soundtracks captured directly from Laserdiscs; AC3 soundtracks from DVD; DTS soundtracks from BD.
Subtitles sources: from BD.
The Thing [spoRv] v2.0
Source Material
Video:
- La Cosa (The Thing) - PAL IT DVD - just for color reference where LD has fades
Audio:- The Thing (Signature Collection) - NTSC US laserdisc CLV/CAV - English soundtrack PCM 2.0 (original)
- The Thing (letterbox edition) - NTSC US laserdisc CLV - English soundtrack PCM 2.0 (changed)
- The Thing - PAL France laserdisc CLV - French soundtrack PCM 2.0
- The Thing - 1998 US DVD - English commentary AC3 1.0
- La Cosa (The Thing) - 1998 PAL IT DVD - Italian soundtrack AC3 2.0 (changed)
- La Cosa (The Thing) - 1998 PAL IT DVD - Spanish soundtrack AC3 1.0 (changed)
- The Thing - UK BD - English soundtrack DTS-HD MA (new remix)
- The Thing - UK BD - French soundtrack DTS 5.1 (new remix)
- The Thing - UK BD - Italian soundtrack DTS 5.1 (new remix)
- The Thing - UK BD - German soundtrack DTS 5.1 (new remix)
- The Thing - UK BD - Spanish soundtrack DTS 2.0 mono (new remix)
Subtitles:
english, italian, french, spanish, german from the BD.
Capture setup & processing info
Hardware:- Pioneer DVL-909 PAL/NTSC laserdisc/DVD player
- Sony Vaio VGX-XL201 PC CPU Core 2 Duo E6300 1.86Hz, 3GB RAM, 32GB+2TB+4TB HDDs, BD-RE
- AverMedia BDA A16C internal video card (with Philips SAA713x chipset)
- Western Digital Elements 1TB external USB HD
- Microsoft XBOX360 HD-DVD player
- Monster Cable S-Video 5pin cable (very high quality)
- SONY optical S/PDIF cable (very high quality)
- no-brand coaxial cable (very high quality)
Software:- VirtualDub as capture software
- VirtualDub and AviSynth for video editing
- AviSynth + SoundOut and Foobar2000 for audio conversions
- tsMuxeR and AVIdemux for muxing/demuxing
Settings:- laserdisc video captured at card native resolution 720x576 @25fps (PAL), YUV Lagarith lossless compression
- PCM digital audio from Laserdisc to PC via S/PDIF bit-perfect 16bit 44.1KHz stereo
Project status: RELEASED on 2017-03-05
Video sources and processing:
HD-DVD VC-1 BD AVC and DVD MPEG2 are converted using the Lagarith lossless compression (YV12); laserdisc video is captured using the Lagarith lossless compression (YUY2).
HD-DVD BD is used as frame reference (so no frames are cut or duplicated); it's simply converted to lossless with not further processing.
PAL UK laserdisc is used as primary color reference: it's captured using AviSynth at its original resolution of 720x576@25fps; then frame rates is changed to 23.976; a rainbow remover is applied to the capture, along with mild noise reduction to get rid of eventual dropouts; at the end, video is upscaled to 1920x816 and frames are cut or duplicated to match the HD-DVD BD video.
PAL IT DVD is used as secondary color reference, just to replace two laserdisc fades: it's converted to lossless; then frame rates is changed to 23.976; at the end, video is upscaled to 1920x816.
After a lot (and when I mean a lot, I mean A LOT) of tests, the video will be treated as following:- opening credits (up to "Antarctica, winter 1982") are taken untouched from HD-DVD BD video, because there is no need for color regrading, as the flying saucer and earth colors are almost the same of the laserdisc/DVD - for the end credits, from the last image of the movie, BD is used, but with zero saturation, because it has a lilac dominance
- the rest of the movie is regraded using the HD-DVD BD as source, and laserdisc as color reference; avisynth script ColourMatch is used
- except the laserdisc side 1 end / side 2 beginning scenes, as they have fade out / fade in, were not possible to be used, so I used the DVD there for color reference, tweaked a little bit to be as close as possible to the laserdisc
Then, the result video is saved as lossless, to be converted to lossy AVC for the final Blu-Ray.
Audio sources and processing:
PAL FR LD is captured (thanks to ilovewaterslides); then converted to 48KHz; as LD video frames are cut or duplicated to match the HD-DVD video, audio is adjusted accordingly to be in sync with the HD-DVD video.
NTSC US LDs are captured and processed to be in sync with the HD-DVD video (thanks to Jonno); the letterbox LD is converted to AC3.
PAL IT DVD italian, spanish and english commentary AC3 soundtracks are demuxed, then converted to PCM to be processed; as DVD video frames are cut or duplicated to match the HD-DVD video, all the soundtracks are adjusted accordingly to be in sync with the HD-DVD video; the resulted tracks are then reconverted to AC3 to be BD compliant.
UK BD english DTS-HD MA, french, italian, german DTS 5.1 and spanish DTS 2.0 (mono) are used as they are (thanks to Jonno)
Final format: BD-25
Video:- letterbox 2.35:1 1920x816 pixel inside the 16:9 1920x1080 pixel FHD frame, AVC (x264) 23.976fps, average bitrate 18500kbps
Audio:- english PCM 2.0 16bit 1536kbps - from NTSC Signature Collection LD
- english AC3 2.0 16bit 384kbps - from NTSC letterbox LD
- english DTS-HD MA 5.1 24bit 3900kbps (1536kbps core DTS) - from UK BD
- french PCM 2.0 16bit 1536kbps - from PAL french LD
- french DTS 5.1 24bit 768kbps - from UK BD
- italian AC3 2.0 16bit 192kbps - from PAL IT DVD
- italian DTS 5.1 24bit 768kbps - from UK BD
- spanish DTS 2.0 24bit 384kbps (mono) - from UK BD
- spanish AC3 1.0 16bit 96kbps - from PAL IT DVD
- german DTS 5.1 24bit 768kbps - from UK BD
- commentary AC3 16bit 1.0 96kbps - from PAL IT DVD
Subtitles:
english (full and SDH); french, italian, spanish, german (full and forced) from UK BD
Special thanks to:
Jonno, for english laserdisc, all BD soundtracks, missing frames, and A LOT OF HELP!!! Without you, this project could not be the same! THANK YOU VERY MUCH!
Other credits:- The Aluminum Falcon for the HD-DVD video
- zeropc for DVD english soundtrack and commentary
- ilovewaterslides for the PCM french soundtrack
- Namtar for the isolated score
- Jetrell Fo for general supporting and encouragement
- MrBrown for German and Spanish tracks
- everyone who showed interest and appreciation
Cover:
Blu-ray custom cover
![[Image: The_Thing_spo_Rv_BD_25_mini.jpg]](https://s13.postimg.cc/591d0ev07/The_Thing_spo_Rv_BD_25_mini.jpg)
Full resolution, ready to print: outside cover - inside cover - disc label
Screenshot comparisons (top spoRv 2.0, middle LD, bottom BD):
Notes:
- v2.0 will use the new Scream Factory BD, due to its higher resolution and visible film grain in comparison to the HD-DVD used for the previous version; the upgrading aiming to improve the color regrading quality, and of course will benefit of the superior source resolution; audio and subtitles are the same.
- updated project info accordingly
|
|
|
|