| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 6,769
» Latest member: t1murmat
» Forum threads: 6,289
» Forum posts: 87,941
Full Statistics
|
| Latest Threads |
Raiders of the Lost Ark [...
Forum: Released
Last Post: commandrbond
5 minutes ago
» Replies: 0
» Views: 2
|
Gandhi (1982) LD PCM 5.0 ...
Forum: Released
Last Post: commandrbond
13 minutes ago
» Replies: 2
» Views: 99
|
TROY (2004) - Replace Sco...
Forum: Requests, proposals, help
Last Post: odemmah
5 hours ago
» Replies: 84
» Views: 41,519
|
Gremlins 35mmized (1984)
Forum: Released
Last Post: PDB
5 hours ago
» Replies: 33
» Views: 38,932
|
44rh1n’s “The Fellowship ...
Forum: Released
Last Post: Beber
8 hours ago
» Replies: 47
» Views: 64,128
|
Dredd (2012) - Open Matte...
Forum: Requests, proposals, help
Last Post: maxwell_kennedy
Yesterday, 10:40 AM
» Replies: 2
» Views: 2,369
|
How to decode 6-track APT...
Forum: Converting, encoding, authoring
Last Post: little-endian
Yesterday, 01:14 AM
» Replies: 103
» Views: 67,521
|
Starchaser 3D
Forum: In progress
Last Post: Chris Solo
2026-06-08, 08:21 PM
» Replies: 4
» Views: 540
|
Introduction
Forum: Presentation
Last Post: THEEONIONGOD
2026-06-08, 06:39 PM
» Replies: 0
» Views: 64
|
Eraserhead - Original The...
Forum: Released
Last Post: THEEONIONGOD
2026-06-08, 03:27 AM
» Replies: 6
» Views: 8,330
|
|
|
| Sorcerer (1977) LD PCM |
|
Posted by: IcePrick - 2017-01-06, 02:04 AM - Forum: Requests, proposals, help
- Replies (28)
|
 |
Anybody have this Laserdisc?
http://www.lddb.com/laserdisc/02992/12009/Sorcerer
The Blu-ray 5.1 remix is quite revisionist, even more so than most 5.1 remixes, most notably *SPOILER ALERT* by adding a gunshot sound effect to the final shot.
If someone happens to have the LD and can rip the audio, then I hereby express interest in seeing it ripped and synced to the Blu-ray.
EDIT: I'm seeing now that the French BD has an English Stereo option. Don't know if it's the original mix or a downmix. If it's the former, then the LD might not be necessary.
|
|
|
| Hi |
|
Posted by: Darkbluesky - 2017-01-01, 12:20 PM - Forum: Presentation
- Replies (5)
|
 |
Hello
I have just registered with the new year! I am interested in restoration from laserdiscs and VHS, mainly cartoon related and for beter preservation. I did know of you thanks to a post referring to PanUp in other forum, so I came quickly here and discovered a lot of interesting threads.
Well, we'll see what I can learn and even maybe contribute, but I am fairly new in the restoration.
Tx
|
|
|
| Some thoughts about this year |
|
Posted by: spoRv - 2016-12-31, 07:40 PM - Forum: Everything else...
- Replies (3)
|
 |
Every end of the year I think about what's happened during the previous twelve months, trying to find the best things to remember, and errors to avoid; here I would write something about fan projects. - everyone wants you to release your project as soon as possible, and obtain it immediately, but few ones want to help; I always say that a simple "go on", or even a critic if constructive, may seems a little thing, but could be important for us to keep going on
- leaving a project behind sometimes is beneficial, because it clears our minds and, when we will be back, we often have fresh ideas and techniques
- every day I discover something new that will help to fix, enchance, change, reconstruct a given movie; when it could be important for the community, I share the idea, technique, method, script, whatever - even if often nobody seems to care...
- some old friends from other forums, and brand new members, have joined us lately; this is very positive for us all, not only for their projects, but also for their personal thoughts and inputs
- I must stop to continue to start new projects without releasing the previously started ones... my promise for the 2017 is that I will (try to) change that!

I wish an Happy New Year to everyone!
|
|
|
| DeFade function |
|
Posted by: spoRv - 2016-12-31, 12:35 AM - Forum: Script snippets
- Replies (4)
|
 |
Code: ###########################################################################################
### DeFade: recovers the faded part of a clip ###
### ###
### Usage: DeFadeIn(clip,frames) and DeFadeOut(clip,frames) ###
### ###
### The frames number includes the most near to the unfaded, and the nearest to black ###
### Nearest black frame(s) suffers of banding ###
### ###
### AviSynth script made by Gavino, using Motenai Yoda's method - Created: 2016-12-29 ###
### Original idea: spoRv - reference: http://forum.doom9.org/showthread.php?t=174140 ###
### ###
### Creative Commons 4,0 - Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) ###
### Link to the licence page: https://creativecommons.org/licenses/by-sa/4.0/ ###
###########################################################################################
function DefadeOut(clip c, int frames) {
c
Animate(framecount-frames-1, framecount, "Defade2", 1.0, 0.0)
}
function DefadeIn(clip c, int frames) {
c.reverse
Animate(framecount-frames-1, framecount, "Defade2", 1.0, 0.0)
reverse
}
# Helper function to be animated by Defade()
function Defade2(clip c, float div) {
mx = 1.0/div
c.mt_lut(expr="x 128 - "+string(mx)+" * 128 +", yexpr="x 16 - "+string(mx)+" * 16 +",u=3,v=3)
}
To be perfect, if should include also the frame number where the defade should start; but I'm too lazy to do that, so it's up to you - waiting for your modifications!
Happy New Year!
|
|
|
|