Shana AMV Quality Problems
- surfsama
- Joined: Tue May 01, 2007 2:35 pm
- Status: Heading to the other side
- Location: California
Shana AMV Quality Problems
Hi, I'm having a tough time improving a few scenes in my AMV. The source is DVD. The following script has improved the quality substantially but as you can see it's far from ideal. I'm a learner so any guidance or suggestions would be appreciated:
AVISource("D:\ShanaAMV\HeavyMetal Take 02.avi")
ConvertToYV12
Deblock(quant=35)
deen("a3d",4,12,12)
vmtoon(strength=50,sharpen=true)
SangNom(2,151)
Tweak(cont=1.1,sat=1.3,bright=-15, hue=0.4)
Here is a screen shot of the most problematic area (which looks a little exaggerated by the photobucket compression):
AVISource("D:\ShanaAMV\HeavyMetal Take 02.avi")
ConvertToYV12
Deblock(quant=35)
deen("a3d",4,12,12)
vmtoon(strength=50,sharpen=true)
SangNom(2,151)
Tweak(cont=1.1,sat=1.3,bright=-15, hue=0.4)
Here is a screen shot of the most problematic area (which looks a little exaggerated by the photobucket compression):
Hide the Cheese Whiz
-
- Joined: Wed Jun 04, 2008 4:24 pm
- Kariudo
- Twilight prince
- Joined: Fri Jul 15, 2005 11:08 pm
- Status: 1924 bots banned and counting!
- Location: Los taquitos unidos
- Contact:
try throwing a pair of parenthesis onto the end of converttoyv12 there.
I'm a bit rusty on what sangnom does (IIRC it's anti-aliasing and deinterlacing) but from what I remember Sangnom always introduced some ugly artifacts on the lines.
Deblock may be a bit too strong resulting in a washed-out look.
I'm a bit rusty on what sangnom does (IIRC it's anti-aliasing and deinterlacing) but from what I remember Sangnom always introduced some ugly artifacts on the lines.
Deblock may be a bit too strong resulting in a washed-out look.
- Phantasmagoriat
- Joined: Mon Feb 06, 2006 11:26 pm
- Status: ☁SteamPunked≈☂
- Contact:
if it's just a couple garbage frames from the dvd, I would simply skip them.
But I'll follow up with two other questions.
-What type of files are you putting into your editor?
-What codec are you using to export from your editor?
It almost looks like macroblocking from using a lossy codec
[which is partially fixed by deblock()]
But I'll follow up with two other questions.
-What type of files are you putting into your editor?
-What codec are you using to export from your editor?
It almost looks like macroblocking from using a lossy codec
[which is partially fixed by deblock()]
PLAY FREEDOOM!! | Phan Picks! | THE424SHOW | YouTube | "Painkiller" | Vanilla MIDI's
"Effort to Understand; Effort to be Understood; to See through Different Eyes."
"Effort to Understand; Effort to be Understood; to See through Different Eyes."
- surfsama
- Joined: Tue May 01, 2007 2:35 pm
- Status: Heading to the other side
- Location: California
Kariudo:
I put the parenthesis at the end of converttoyv12 but no change.
Sangnom is set at the lowest setting to prevent the jagged interlacing lines.
Deblocking is also at the lowest setting to keep it from looking worse.
Phantasmagoriat:
The files went into Premier as mpeg's and the output was lagarith.
Yeah, I could probably skip it (it only affects a few scenes) but I'd like to try to tame it a bit more because it's really ugly for dvd source.
I put the parenthesis at the end of converttoyv12 but no change.
Sangnom is set at the lowest setting to prevent the jagged interlacing lines.
Deblocking is also at the lowest setting to keep it from looking worse.
Phantasmagoriat:
The files went into Premier as mpeg's and the output was lagarith.
Yeah, I could probably skip it (it only affects a few scenes) but I'd like to try to tame it a bit more because it's really ugly for dvd source.
Hide the Cheese Whiz
- Phantasmagoriat
- Joined: Mon Feb 06, 2006 11:26 pm
- Status: ☁SteamPunked≈☂
- Contact:
yeah, if it's the original mpeg2 stream, then I'm not sure what else you can do about it . Maybe cleverly add a blur effect to the amv [I've actually done that before ]
PLAY FREEDOOM!! | Phan Picks! | THE424SHOW | YouTube | "Painkiller" | Vanilla MIDI's
"Effort to Understand; Effort to be Understood; to See through Different Eyes."
"Effort to Understand; Effort to be Understood; to See through Different Eyes."
- mirkosp
- The Absolute Mudman
- Joined: Mon Apr 24, 2006 6:24 am
- Status: (」・ワ・)」(⊃・ワ・)⊃
- Location: Gallarate (VA), Italy
- Contact:
I'd echo Kariudo on the SangNom. Try to use an alternative filter for the antialiasing, for example AntiAliasing, AAA or perhaps TIsophote (scroll down a bit for this).
Also, I personally don't like vmtoon very much for the sharpening, and I'm not the only one I think... try limitedsharpenfaster or maybe get the Toon. If you need line darkening, perhaps use vmtoon(sharpen=false).
Also, I personally don't like vmtoon very much for the sharpening, and I'm not the only one I think... try limitedsharpenfaster or maybe get the Toon. If you need line darkening, perhaps use vmtoon(sharpen=false).
- LivingFlame
- Joined: Sat May 28, 2005 4:41 pm
- Location: Closer than you think...
- surfsama
- Joined: Tue May 01, 2007 2:35 pm
- Status: Heading to the other side
- Location: California
Thanks everyone. I took a bit of everyone's suggestions and here is the revised script:
avisource("D:\ShanaAMV\Sequence 01.avi")
ConvertToYV12(interlaced=true)
Telecide(order=1,guide=1)
deen("a3d",4,7,8)
Tweak(cont=1.1,sat=1.3,bright=-15, hue=0.4)
Toon()
LimitedSharpenFaster(Smode=4)
and result (.png FTW):
Not perfect but much improved. Kariudo got me thinking that if I had to add that much blocking and SangNom then something during the editing process was wrong. I went back and removed the Premier deinterlacing functions and enabled blend frames then just output the interlaced clips. Telecide did a much better job of deinterlacing.
avisource("D:\ShanaAMV\Sequence 01.avi")
ConvertToYV12(interlaced=true)
Telecide(order=1,guide=1)
deen("a3d",4,7,8)
Tweak(cont=1.1,sat=1.3,bright=-15, hue=0.4)
Toon()
LimitedSharpenFaster(Smode=4)
and result (.png FTW):
Not perfect but much improved. Kariudo got me thinking that if I had to add that much blocking and SangNom then something during the editing process was wrong. I went back and removed the Premier deinterlacing functions and enabled blend frames then just output the interlaced clips. Telecide did a much better job of deinterlacing.
Hide the Cheese Whiz