Just checking back, I still can't do anything with the End Of Eva page. I'm assuming it has something to do with the error messages at the top of the screen (which strangely don't show up when in preview mode), or that maybe my IP address got blacklisted during one of the bans against spammers - if the sort of banning which would cause that was used, that is.
If anyone wants to try themselves, this was what I was planning to adjust on the page (the whole page's code is included to simplify things, just a highlight-everything-and-then-paste-new-text deal):
- Code: Select all
{{avisynthscriptstub}}
==Region 1 release - Script by Qyöt27==
Manga Entertainment's Region 1 release of End Of Evangelion suffers from several problems, including [[Dot Crawl]], Rainbowing, a shifty telecine, dull colors, slight reddening, and huge black borders around the viewable field area.
===Script data===
'''AVISynth version required: 2.5''x''
'''AVISynth plugins and scripts required: [[Deen]], [http://bengal.missouri.edu/~kes25c/ TIVTC], [http://www.animemusicvideos.org/phpBB/viewtopic.php?t=56491 LUTDeRainbow], [[DFMDeRainbow]], [http://bengal.missouri.edu/~kes25c/ TComb], DGDecode, MSharpen, MaskTools, FluxSmooth, Repair
This is intended for use as a {{footage preprocessor}}.
<pre><nowiki>
MPEG2Source("eoe.d2v", ipp=true, cpu=4)
TComb(mode=0,fthreshL=16,othreshL=16,scthresh=100)
LUTDeRainbow()
TFM(order=-1,mode=5,PP=7,field=1,slow=2)
TDecimate()
Crop(28,68,-34,-68)
LanczosResize(672,352)
DFMDeRainbow()
deen("w3d",3,14,16)
ColorYUV(gain_v=-5)
Tweak(sat=1.2,bright=-15,cont=1.1)
</nowiki></pre>
===Processing examples===
(outlinks to Photobucket until image uploading is allowed again)<br>
[http://i20.photobucket.com/albums/b235/qyot27/eoer1-1.jpg Lighter colors]<br>
[http://i20.photobucket.com/albums/b235/qyot27/eoer1-2.jpg Bright colors]<br>
[http://i20.photobucket.com/albums/b235/qyot27/eoer1-3.jpg White Balance]<br>
[http://i20.photobucket.com/albums/b235/qyot27/eoer1-5.jpg Dot Crawl, Rainbows, and Preservation Of Detail]
===Notes===
* This script is ''very'' slow.
* This script assumes the .d2v file is in the same directory.
* DFMDeRainbow is used after the IVTC because using it before tended to produce weird interlace artifacts, or at least I remember not seeing them anymore after shifting it from before to after.
* TDecimate can be left out for 29.97fps output instead.
* The Tweak and ColorYUV commands are optional.
- Region 1 information, ~~~~
==Region 2 (Renewal) release - Script by Qyöt27==
The Japanese release of End Of Evangelion Renewal is very clean, containing only slight film grain. It is also anamorphic.
===Script data===
'''AVISynth version required: 2.5''x''
'''AVISynth plugins and scripts required: Crop, [[Deen]], Lanczos4Resize'''
This is intended for use as a {{footage preprocessor}}.
<pre><nowiki>
mpeg2source("eoe.d2v")
Crop(8, 0, -6, 0)
Lanczos4Resize(864, 480) # see notes
deen("w3d", 2, 8, 8)
</nowiki></pre>
===Processing examples===
<gallery>
Image:http://www.amvwiki.org/images/c/c5/Eoe1-temp.jpg|Film grain correction - Multiple colors
Image:http://www.amvwiki.org/images/c/c5/Eoe2-temp.jpg|Film grain correction - Homogenous areas of color
</gallery>
===Notes===
* This script assumes the .d2v file is in the same directory.
* From rounding up instead of down. This should correct the too tall look from resizing to 848x480. If it doesn't, then you can try a wider size.
* The Renewal edition of End Of Evangelion is set with a 3:2 pulldown flag, making '''Telecide'''/'''Decimate''' or other [[inverse telecine]] functions in AVISynth unnecessary. Just use the Forced FILM option in DGIndex.
- Region 2 information, [[User:Qyöt27|Qyöt27]] 15:11, 11 May 2005 (MDT)
[[Category:AVISynth Scripts]]