| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 7,311
» Latest member: alphareg
» Forum threads: 6,463
» Forum posts: 89,055
Full Statistics
|
| Latest Threads |
TROY (2004) - Replace Sco...
Forum: Requests, proposals, help
Last Post: alphareg
32 minutes ago
» Replies: 115
» Views: 73,624
|
Looking for the US DVD of...
Forum: Requests, proposals, help
Last Post: DeafYakuza
35 minutes ago
» Replies: 5
» Views: 558
|
Hacklink Market - Hacklin...
Forum: Everything else...
Last Post: Semiramist66
1 hour ago
» Replies: 0
» Views: 8
|
Alien (1979) - 4K UHD Aud...
Forum: Released
Last Post: izzybell
2 hours ago
» Replies: 5
» Views: 2,930
|
TERMINATOR 2 Blu-ray regr...
Forum: In progress
Last Post: DTS-6D
4 hours ago
» Replies: 89
» Views: 29,841
|
One Flew Over the Cuckoo'...
Forum: Released
Last Post: velocity
6 hours ago
» Replies: 4
» Views: 106
|
Terminator 2 CDS mix
Forum: Released
Last Post: Kado_2020
7 hours ago
» Replies: 422
» Views: 444,154
|
The Abyss (1989) "Braver ...
Forum: Released
Last Post: Stamper
8 hours ago
» Replies: 3
» Views: 5,054
|
Terminator 2: Judgment Da...
Forum: Released
Last Post: ark216
10 hours ago
» Replies: 96
» Views: 108,165
|
New (and probably useless...
Forum: Presentation
Last Post: Grandy
11 hours ago
» Replies: 0
» Views: 39
|
|
|
| Highlander 3 - US Theatrical Version |
|
Posted by: Bigrob - 2017-06-05, 07:08 PM - Forum: Everything else...
- Replies (1)
|
 |
Hoping someone can clarify something.
From my understanding, Highlander 3 got two releases on home video. A directors cut with upgraded special effects and an international cut.
Was there ever a US theatrical cut? If so, was it released anywhere?
|
|
|
loading a source divided in several files |
|
Posted by: spoRv - 2017-06-03, 01:35 AM - Forum: Script snippets
- No Replies
|
 |
I wonder if there is a best way to load a 29.97fps (actually a 59.94 fields per seconds) interlaced source, divided in several parts, like a TV recorded program with commercial breaks cut away, or a laserdisc capture of several sides, and ITVC it, or if they are all the same...
Code: # method 1 for MPEG-2
# load all parts on DGindex and save a single d2v file
LoadPlugin("C:\Program Files (x86)\Avisynth\plugins\dgdecode.dll")
film=mpeg2source("001-004.d2v").TFM(d2v = "001-004.d2v").TDecimate
...
Code: # method 2 for MPEG-2
# load every part separately and save a d2v file for each one
# then TFM and TDecimate any part
LoadPlugin("C:\Program Files (x86)\Avisynth\plugins\dgdecode.dll")
part1=mpeg2source("001.d2v").TFM(d2v = "001.d2v").TDecimate
part2=mpeg2source("002.d2v").TFM(d2v = "002.d2v").TDecimate
part3=mpeg2source("003.d2v").TFM(d2v = "003.d2v").TDecimate
part4=mpeg2source("004.d2v").TFM(d2v = "004.d2v").TDecimate
film=part1+part2+part3+part4
...
# method 2 for avi
# TFM and TDecimate any part
part1=avisource("001.d2v").TFM.TDecimate
part2=avisource("002.d2v").TFM.TDecimate
part3=avisource("003.d2v").TFM.TDecimate
part4=avisource("004.d2v").TFM.TDecimate
film=part1+part2+part3+part4
Code: # method 3 for MPEG-2
# load every part separately and save a d2v file for each one
# then TFM any part, and TDecimate the joined result
LoadPlugin("C:\Program Files (x86)\Avisynth\plugins\dgdecode.dll")
part1=mpeg2source("001.d2v").TFM(d2v = "001.d2v")
part2=mpeg2source("002.d2v").TFM(d2v = "002.d2v")
part3=mpeg2source("003.d2v").TFM(d2v = "003.d2v")
part4=mpeg2source("004.d2v").TFM(d2v = "004.d2v")
film=(part1+part2+part3+part4).TDecimate
...
# method 3 for avi
# TFM any part, and TDecimate the joined result
part1=avisource("001.d2v").TFM
part2=avisource("002.d2v").TFM
part3=avisource("003.d2v").TFM
part4=avisource("004.d2v").TFM
film=(part1+part2+part3+part4).TDecimate
Code: # method 4 for avi
# join all the parts, then TFM and TDecimate
part1=avisource("001.d2v")
part2=avisource("002.d2v")
part3=avisource("003.d2v")
part4=avisource("004.d2v")
film=(part1+part2+part3+part4).TFM.TDecimate
I always use method 2 for laserdisc captures; I'm using the same for Harry Potter.
|
|
|
| hey peeps |
|
Posted by: OogieBoogie - 2017-06-01, 02:11 AM - Forum: Presentation
- Replies (5)
|
 |
Really interesting site you guys (and gals?) have going on here. I've only known about fanres for the last couple of years, one of my first was jerryshadoe's Last of the Mohicans which I adore, but have grown to love it, not every film, but the concept behind it as it were.
Anyway, just thought I would say hi and thanks to all that are involved with providing/sharing these gems
|
|
|
|