Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage

Reply
 
Thread Tools Search this Thread Display Modes
Old 4th August 2015, 01:20   #1  |  Link
mohamedh
Registered User
 
Join Date: Jan 2014
Posts: 6
Issue with scrolling credits

Hi,

I'm encoding bleach and I faced an issue while de-interlacing the scrolling credits in the ending song.

For example, look at the Japanese letters under "Heo soon nyu" at

Frames 820-826 if fps=29.970(3000/1001) (original)
or if Fps=23.976(24000/1001), frames 659-665

sample:
https://mega.nz/#!I40WwYCC!7SBM6CS9K...GHY2kZInuO6u4U

photos:
http://s5.postimg.org/gjz51lvk7/normal.png
http://s5.postimg.org/959t989on/wrong.png

Can anyone suggest a fix for this?
And thanks in advance

Last edited by mohamedh; 4th August 2015 at 15:49.
mohamedh is offline   Reply With Quote
Old 4th August 2015, 02:49   #2  |  Link
kuchikirukia
Registered User
 
Join Date: Oct 2014
Posts: 476
I'd suggest you use the creditless one from Bleach The Best if you have it.
kuchikirukia is offline   Reply With Quote
Old 4th August 2015, 05:10   #3  |  Link
AzraelNewtype
Registered User
 
AzraelNewtype's Avatar
 
Join Date: Oct 2007
Posts: 135
Use ivtc_txt60mc, problem probably solved. It's slow, and it's kind of annoying, but it works.
AzraelNewtype is offline   Reply With Quote
Old 4th August 2015, 08:40   #4  |  Link
Keiyakusha
契約者
 
Keiyakusha's Avatar
 
Join Date: Jun 2008
Posts: 1,576
in this case it may be possible to fix it perfectly. since it is just a white text on black BG, you can create a (very tall) still picture (or a few, if it would be too tall) made from the frames that you think look good and scroll it yourself at 23.976 fps.
Quote:
Originally Posted by mohamedh View Post
Frames 820-826 if fps=29.976 (original)
or if Fps=23.987, frames 659-665
Btw, those are typos? Both of there incorrect.

Last edited by Keiyakusha; 4th August 2015 at 08:44.
Keiyakusha is offline   Reply With Quote
Old 4th August 2015, 16:40   #5  |  Link
mohamedh
Registered User
 
Join Date: Jan 2014
Posts: 6
Quote:
Originally Posted by kuchikirukia View Post
I'd suggest you use the creditless one from Bleach The Best if you have it.
yeah I thought about this, but the Ending is just a little box and the credits, so if I use the creditless one It will look ugly. 70% of the screen wil be black.
thx for the suggestion, though.
Quote:
Originally Posted by AzraelNewtype View Post
Use ivtc_txt60mc, problem probably solved. It's slow, and it's kind of annoying, but it works.
I tried it, but it didn't fix it completely fix the issue.
the result is better than before, but it's not perfect.
do you have any suggestions regarding this script?

Quote:
Originally Posted by Keiyakusha View Post
in this case it may be possible to fix it perfectly. since it is just a white text on black BG, you can create a (very tall) still picture (or a few, if it would be too tall) made from the frames that you think look good and scroll it yourself at 23.976 fps.
It seems like a good idea, a lot of manual work though...
I will give it a try

EDIT: this is not possible as the ending credits change from episode to another.
Quote:
Originally Posted by Keiyakusha View Post
Btw, those are typos? Both of there incorrect.
corrected.


And thx everyone for replying

Last edited by mohamedh; 4th August 2015 at 21:46.
mohamedh is offline   Reply With Quote
Old 4th August 2015, 21:12   #6  |  Link
kuchikirukia
Registered User
 
Join Date: Oct 2014
Posts: 476
I'd use Bleach The Best. It's higher quality and has a few more pixels (even more so if you plan to crop the fuzz off the R2J). The credits don't add anything to it. You watch Bleach for Rukia, not the credits. She holds up that ending like she holds up the series.

The issue is that it's VFR. Most is progressive 24fps except Ichigo who's scrolling by at a telecined 30. I don't actually know how to decimate that one section.
kuchikirukia is offline   Reply With Quote
Old 25th August 2015, 03:18   #7  |  Link
mohamedh
Registered User
 
Join Date: Jan 2014
Posts: 6
Code:
dec_txt60mc (3)
that solved it, but it's slow as hell, I guess I will just encode the ending once and then I'll include the filtered ending instead of re-filtering it every episode.
Thx for all your suggestions
Edit: it didn't solve it for the entire video it works on some frames only...

Last edited by mohamedh; 26th August 2015 at 03:44.
mohamedh is offline   Reply With Quote
Old 26th August 2015, 16:41   #8  |  Link
Overdrive80
Anime addict
 
Overdrive80's Avatar
 
Join Date: Feb 2009
Location: Spain
Posts: 673
You can using qtmgc and timecodes. Example:

Step 1. Set sections to telecined o pure interlacing:

Code:
DGDecode_mpeg2source("C:\Users\Isra\Desktop\Bleach\VID 2\VideoFile1.d2v", info=3)

ColorMatrix(hints=true, threads=0,interlaced=true)
Step 2. Deinterlacing:

Code:
DGDecode_mpeg2source("C:\Users\Isra\Desktop\Bleach\VID 2\VideoFile1.d2v", info=3)

ColorMatrix(hints=true, threads=0,interlaced=true)

part1=trim(0,38811).tfm().tdecimate()
part2_in=trim(38812,41089) 

part2=part2_in.QTGMC( Preset="very Slow", EdiMode="EEDI2",fpsdivisor=2).aaf().assumefps(part1.framerate)

return part1++part2
Step 3. Write timecodes:

Code:
DGDecode_mpeg2source("C:\Users\Isra\Desktop\Bleach\VID 2\VideoFile1.d2v", info=3)

ColorMatrix(hints=true, threads=0,interlaced=true)

part1=trim(0,38811).tfm().tdecimate()
part2_in=trim(38812,41089) 

part2=part2_in.QTGMC( Preset="very Slow", EdiMode="EEDI2",fpsdivisor=2).aaf().assumefps(part1.framerate)

part1++part2

WriteFile(last, "timecodesv1.txt" ,""" "# assume 29.970029" """, append=false)

WriteFile(last, "timecodesv1.txt" ,""" "0," """, "part1.framecount", """ "," """, "part1.framerate")

WriteFile(last, "timecodesv1.txt" , "part1.framecount+1", """ "," """ , "part1.framecount+part2.framecount-1",\
		 """ "," """, "part2_in.framerate")

return last

WriteFile(last, "timecodesv1.txt" , "part1.framecount+part2.framecount", """ "," """ ,\
		 "part1.framecount+part2.framecount+part3.framecount-1", """ "," """, "part3.framerate-1")
Export with lossless codec to avi.
__________________
Intel i7-6700K + Noctua NH-D15 + Z170A XPower G. Titanium + Kingston HyperX Savage DDR4 2x8GB + Radeon RX580 8GB DDR5 + ADATA SX8200 Pro 1 TB + Antec EDG750 80 Plus Gold Mod + Corsair 780T Graphite
Overdrive80 is offline   Reply With Quote
Old 7th October 2015, 04:04   #9  |  Link
real.finder
Registered User
 
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,587
Code:
AnimeIVTC(mode=1, omode=1, credconv="mocomp", nnedi3pel=true, i1=1027, e1=5, bobpresmooth=true,degrain=2)
or

Code:
AnimeIVTC(1, omode=1, credconv="mocomp", nnedi3pel=true, i1=1027, e1=5, bobpresmooth=true, extbobf="QTGMC (SourceMatch=3, Lossless=2, tr0=1, tr1=1, tr2=1)", cbob=5)
__________________
See My Avisynth Stuff

Last edited by real.finder; 20th October 2015 at 19:37.
real.finder is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 21:02.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.