Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
Introduction
Forum: Presentation
Last Post: PixelPlate
34 minutes ago
» Replies: 0
» Views: 9
|
Kill Bill The Whole Blood...
Forum: Released
Last Post: PixelPlate
37 minutes ago
» Replies: 8
» Views: 3,868
|
Hi
Forum: Presentation
Last Post: athomasm1
7 hours ago
» Replies: 0
» Views: 20
|
Kill Bill Vol. 1 & 2 UNCU...
Forum: In progress
Last Post: SHN_TRU_92
9 hours ago
» Replies: 15
» Views: 7,187
|
No Time To Die (IMAX/Open...
Forum: Released
Last Post: Hitcher
Yesterday, 05:51 PM
» Replies: 18
» Views: 827
|
Highlander II - European ...
Forum: Released
Last Post: el_hache
Yesterday, 09:07 AM
» Replies: 96
» Views: 51,091
|
Hello there!
Forum: Presentation
Last Post: el_hache
Yesterday, 02:05 AM
» Replies: 0
» Views: 27
|
Ransom Extended Version
Forum: Released
Last Post: DreckSoft
2024-11-22, 08:07 PM
» Replies: 16
» Views: 4,039
|
Crimson Tide Extended Cut...
Forum: Movies, TV shows and other
Last Post: AdmiralNoodles
2024-11-22, 08:06 PM
» Replies: 9
» Views: 3,621
|
Crocodile Dundee - Austra...
Forum: In progress
Last Post: DreckSoft
2024-11-22, 08:00 PM
» Replies: 20
» Views: 7,583
|
|
|
Confirm Defaults Are HTTPS: Rather Than HTTP: |
Posted by: BronzeTitan - 2017-06-07, 07:06 PM - Forum: Bug reports and suggestions
- Replies (3)
|
|
In posting a rather humorous little video from YouTube, the default for inserting it into the post was for HTTP. Since FR upgraded to HTTPS, references (pictures, video) with HTTP: do not show the media, but only the links. With the defaults updated, they would at least serve as a warning for the unwary poster of the proper type to use. Perhaps adding some code to change any HTTP entry to HTTPS would work as well? (Keep in mind that while most website will respond to HTTPS, some do not support HTTPS, which would result in nothing or an error.)
There might be other instances, in different areas of the forum, that have not been updated to HTTPS defaults and probably those should be updated, too.
Or, as the Hungarian translation book would say, "I will not buy this record. It is scratched."
|
|
|
Misinterpretated Text-Conversion-To-Smileys |
Posted by: BronzeTitan - 2017-06-06, 05:41 PM - Forum: Bug reports and suggestions
- Replies (2)
|
|
I came across this ...
:victory: uperman: :victory:
... which reminded me of the same thing I had to deal with by Disable Smilies on a particular post.
Apparently, the algorithm used to determine text combinations for conversion to smiley graphics doesn't include assuring that the smiley text is completely isolated by spaces. The above example -- confused_smilies uperman: -- was from a colon, followed by the word "superman", followed by a colon. The present algorithm neglects a full-isolation check and so takes the starting colon and the first letter "s" (or "S") and immediately converts it to a smiley without consideration of the rest of the word from which it was taken.
BTW, this may have something to do with my seeing deletions, by the Delete and/or Backspace keys, getting stuck in place (and not deleting anything). Maybe, too, it could be problems with copying a word that includes the preceding space and pasting it elsewhere but with that preceding space not pasting, too. It could be lower-level editing and/or parsing bugs. Worse still is that they are not consistently repeatable.
|
|
|
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.
|
|
|
|