Hello Forum,
I would like to seek the opinion of those who can offer some expertise with regards to the quality of my MP4 video. I have here a link to a screenshot where I have a red square indicating to some sort of artifacts in which I would like to eliminate if it can be done (You must view it Full Size). I used MeGUI for converting. I have also provided my .AVS script just below.
http://img526.imageshack.us/i/blockyartifacts.png/
If anyone can provide me with some help, it would be much appreciated.# Set DAR in encoder to 37 : 20. The following line is for automatic signalling
global MeGUI_darx = 37
global MeGUI_dary = 20
DGDecode_mpeg2source("C:\Users\Lucky\Videos\Samura i Shamploo V1\VIDEO_TS\SCE2.d2v")
Load_Stdcall_Plugin("C:\Program Files\MeGUI\tools\yadif\yadif.dll")
Yadif(order=1)
crop( 0, 6, 0, -4)
Lanczos4Resize(720,560) # Lanczos4 (Sharp)
VobSub("C:\Users\Lucky\Videos\Samurai Shamploo V1\VIDEO_TS\SCE2Subs.idx")
Thanks, TheAlmighty
+ Reply to Thread
Results 1 to 15 of 15
-
-
Some of that artifacting is probably in your MPEG 2 source. You may be able to reduce it a bit with a deblocking filter. The rest may be from too little bitrate in your encoding. Dark areas are the first lose quality when there's not enough bitrate. Make sure your decoder has its deblocking filter enabled during playback.
By the way, when you post sample images it's best to leave them at their actual size, 720x560 in this case. Otherwise it's hard to tell which defects were in the image and which were caused by resizing it. -
Thanks for quick replies.
By the way, when you post sample images it's best to leave them at their actual size, 720x560 in this case. Otherwise it's hard to tell which defects were in the image and which were caused by resizing it.
Also I use the x264: Unrestricted 2pass Anime_Toons Insane encoder setting and the default bitrate is set to 1000. What bitrate should I try it at. I also read somewhere (and correct me if I am wrong) that 1000 is a standard of some sort. I'm not entirely sure of this, perhaps someone could enlighten me.
Thanks for the help so far
Regards, TheAlmighty -
Originally Posted by TheAlmighty
Originally Posted by TheAlmighty
Originally Posted by TheAlmighty -
Maybe not officially, but a bitrate around one megabit was a symbol in the earlier days when it was every pirate's dream for DVD quality to be possible at CD bitrates, which is just barely possible now with x264 if the movie is 90 minutes or shorter. So a bitrate of 1000 for anime should be a standard IMO as it could achieve HQ 576p rips.
To me, it looks like your source sucks and the problem is banding, not blocking artifacts. -
Look. I've done a little bit of research and have come to the conclusion that it is 'Banding'. But I am having some difficulty trying to implement this (GradFun2DBmod) filter into my AVS Script. I have downloaded all other filters required being;
Masktools v2.0a35
Removegrain v1.0PR
GradFun2db v1.0
AddGrainC v1.4
In relation to those filters, these are the DLL applications in my AVISynth plugins folder;
AddGrainC.dll
gradfun2db.dll
mt_masktools-26.dll
RemoveGrainSSE3.dll
RepairSSE3.dll
RSharpenSSE3.dll
GradFun2DBmod.v1.3.avsi
Just making sure I have all the necessary applications
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\NNEDI.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\YadifMod.dll")
global MeGUI_darx = 15
global MeGUI_dary = 8
MPEG2Source("C:\Users\Lucky\Videos\Samurai Shamploo V1\VIDEO_TS\SCE2TEST.d2v")
YadifMod(edeint=NNEDI())
Crop( 0, 10, 0, -6)
Thanks, TheAlmighty -
I have here a 40 second clip of the video.
http://www.yourfilelink.com/get.php?fid=515219
Here are some clips of the original source.
http://img14.imageshack.us/img14/7458/originalsource1.png
http://img406.imageshack.us/img406/5986/originalsource2.png
Thanks, TheAlmighty -
Typically the debanding filter would go at the end
That isn't a sample your original source -
Maybe I should elaborate a bit more on perhaps what I mean. I don't really have any issues in terms of been able to figure out some settings. There are a few I've seen on some forums for example GradFun2DBmod(thr=1.6,thrC=1.2,str=0.8,strC=0.4). I want to know more on how to write it into the AVS script. And if someone can extend my small script into how they would demonstrate the process of adding in the command line. Do I need to load those extra plugins into the script?
-
Put the GradFun2DBmod.avsi file in your AviSynth plugins folder. Then just add the line to your script:
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\NNEDI.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\YadifMod.dll")
global MeGUI_darx = 15
global MeGUI_dary = 8
MPEG2Source("C:\Users\Lucky\Videos\Samurai Shamploo V1\VIDEO_TS\SCE2TEST.d2v")
YadifMod(edeint=NNEDI())
Crop( 0, 10, 0, -6)
GradFun2DBmod(thr=1.6,thrC=1.2,str=0.8,strC=0.4)
Before (huge levels adjustment to bring out all the details):
After GradFun2DBmod():
But I think you're going to find that once you recompress the video most of that banding will come back unless you use a really high bitrate. -
Animation naturally has banding from compressed MPEG and XVID encoding.
Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS
Similar Threads
-
Covert a .mp4 movie's audio alone to mp3 without changing the video quality
By ckarvnd in forum Video ConversionReplies: 1Last Post: 11th Oct 2010, 11:02 -
Video quality on DVD is worse than of MP4 of the same videoclip
By soezkan in forum Authoring (DVD)Replies: 13Last Post: 7th Apr 2010, 15:30 -
Flash with high quality video (MP4 with H264 video and AAC audio)
By Baldrick in forum User guidesReplies: 49Last Post: 19th Mar 2010, 09:05 -
How do I replicate Camtasia 6 high quality MP4 in other video editors?
By raysolomon in forum Video ConversionReplies: 3Last Post: 3rd Mar 2009, 20:32 -
How do I replicate Camtasia 6 high quality MP4 in other video editors?
By raysolomon in forum Video ConversionReplies: 1Last Post: 3rd Mar 2009, 18:44