Quantcast Avisynth: Mergechroma to Gain Compression? - Page 5 - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Avisynth Scripting

Reply
 
LinkBack Thread Tools
  #81  
03-02-2003, 11:44 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
@ yelever
from:
http://www.kvcd.net/forum/viewtopic....f6458e5f73c6a1

(you can read this but can't write no more...)

bye! ....feel ,cos i think that your thread is the first locked here!



if you need or want help,change your "way" and back here.
you got help and fantastic results...but please:

"be good",et!
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #82  
03-02-2003, 10:10 PM
Tutankhamun Tutankhamun is offline
Free Member
 
Join Date: May 2002
Location: Ohio - U.S.
Posts: 93
Thanks: 0
Thanked 0 Times in 0 Posts
Hey guys, I didn't mean to cause trouble in the thread, I was just wondering if I was missing something using Avisynth! Kwag you and fellow members are awsome and I was just trying your scripts to see how good compression you get. Notice the three different sample sizes? I guess I was wondering if I sould be putting something in the () after some of the filters. That is why I also posted my process and versions of software I use. I dont know that is why I post. I guess I should have came right out and asked that

By the way, please dont lock me out. I am just tryin to learn
I dont think I broke any rules LOL
__________________
Thanks for the help
Reply With Quote
  #83  
03-03-2003, 07:11 AM
Bchteam Bchteam is offline
Free Member
 
Join Date: Jan 2003
Posts: 275
Thanks: 0
Thanked 0 Times in 0 Posts
Right now I'm a little confused.You're all talking about 130 Minute Movies fitting on 1 CD,I understand that so far.But how are you able to get a CQ value of around 70???

I wanted to encode the Movie "Spygame",which has 122 Minutes.The maximum CQ Value that I could get was 45.Remember,you are encoding 130 Minute Movies with CQ 70 I'm encoding 122 Minute Movies with CQ 45.

Can someone explain all that to me???
Reply With Quote
  #84  
03-03-2003, 07:24 AM
Bchteam Bchteam is offline
Free Member
 
Join Date: Jan 2003
Posts: 275
Thanks: 0
Thanked 0 Times in 0 Posts
I have to add something.

A couple of days ago I encoded The Movie "The Others".It has 100 Minutes.The CQ Value was around 79.I mean 79 is very good but compared to Kwag's CQ 70 for a 131 Minute Movie,my 79 is nothing.

The Same with "Kiss of the Dragon,which has 94 Minutes.The Maximum CQ was 71,which also very good.But compared to Kwag's CQ 70 for a way longer Movie,my 71 is nothing.

I just can't understand it.

Especially "The Others".It has almost no Action scenes and it is very dark.

Kwag,are you a Wizard???
Reply With Quote
  #85  
03-03-2003, 10:31 AM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Bchteam

Kwag,are you a Wizard???
No , but looking at your script above, you are puting the subtitles after all your filters, and that will kill a lot of quality. Change your script to this:

Code:
mpeg2source("G:\HDR\HerrdeRinge.d2v") 
LegalClip() 

GripCrop( source_anamorphic=False, width=528, height=576, overscan=2 ) 
GripSize(resizer="lanczosresize") 
VobSub("G:\HDR\HDRSubs\Tonspur 1\VTS_01_0") 
mergechroma(blur(1.58)) 
mergeluma(blur(0.2))  
FaeryDust() 
FluxSmooth(7,7) 
NoMoSmooth(40,1,6,1,3,false) 
Convolution3D(preset="movieHQ") 
DctFilter(1,1,1,1,1,.5,.5,0) 


GripBorders()    
LegalClip() 
Sampler(length=24)
-kwag
Reply With Quote
  #86  
03-05-2003, 04:58 PM
DorvalCS DorvalCS is offline
Free Member
 
Join Date: Dec 2002
Location: Montreal, Canada
Posts: 31
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to DorvalCS
Hi guys!

Just a quick question;

Where do I find this filter:

<<LoadPlugin("F:\Programme\AviSynth2\dctfilter_YUY 2.dll")>>

Thanks

DorvalCS
Reply With Quote
  #87  
03-05-2003, 05:47 PM
VILLA21 VILLA21 is offline
Free Member
 
Join Date: Oct 2002
Location: Greece
Posts: 63
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by kwag
Quote:
Originally Posted by Bchteam

Kwag,are you a Wizard???
No , but looking at your script above, you are puting the subtitles after all your filters, and that will kill a lot of quality. Change your script to this:

Code:
mpeg2source("G:\HDR\HerrdeRinge.d2v") 
LegalClip() 

GripCrop( source_anamorphic=False, width=528, height=576, overscan=2 ) 
GripSize(resizer="lanczosresize") 
VobSub("G:\HDR\HDRSubs\Tonspur 1\VTS_01_0") 
mergechroma(blur(1.58)) 
mergeluma(blur(0.2))  
FaeryDust() 
FluxSmooth(7,7) 
NoMoSmooth(40,1,6,1,3,false) 
Convolution3D(preset="movieHQ") 
DctFilter(1,1,1,1,1,.5,.5,0) 


GripBorders()    
LegalClip() 
Sampler(length=24)
-kwag
@Kwag, testing the above script with tOk (only prediction), the encoding time for just one sample is 15min on my P4-1.5Ghz...damn sloooow!
U got the same time on your PC?
__________________
The aRt oF FaLLing ApaRt
Reply With Quote
  #88  
03-05-2003, 05:54 PM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by VILLA21
@Kwag, testing the above script with tOk (only prediction), the encoding time for just one sample is 15min on my P4-1.5Ghz...damn sloooow!
U got the same time on your PC?
Hi VILLA21,

hedix is aware of the problems, and he's addressing them

-kwag
Reply With Quote
  #89  
03-06-2003, 06:10 PM
VILLA21 VILLA21 is offline
Free Member
 
Join Date: Oct 2002
Location: Greece
Posts: 63
Thanks: 0
Thanked 0 Times in 0 Posts
@Kwag:"....looking at your script above, you are puting the subtitles after all your filters, and that will kill a lot of quality. .."

Wouldn"t that kill also the compressibility of all these filters(mean apply subtitles before filters)?
__________________
The aRt oF FaLLing ApaRt
Reply With Quote
  #90  
03-06-2003, 06:31 PM
alfredini alfredini is offline
Free Member
 
Join Date: Dec 2002
Posts: 38
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by VILLA21
@Kwag:"....looking at your script above, you are puting the subtitles after all your filters, and that will kill a lot of quality. .."

Wouldn"t that kill also the compressibility of all these filters(mean apply subtitles before filters)?
You will get better quality (higher CQ) because of the better compressibilty if you put the subtitles before filtering
Reply With Quote
  #91  
03-13-2003, 11:25 AM
Holomatrix Holomatrix is offline
Free Member
 
Join Date: Aug 2002
Posts: 130
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by kwag
Quote:
Originally Posted by heyitsme
Kwag you crack me up man!
Have a beer Branden
Quote:
Thanks Jellygoosse for bringing this mergechroma to our attention!
Yeah, I just knew this thread was going to take us somewhere . These filters really make a huge difference. Anyone encoding at 352x240(28 with all these filters added up, can actually encode with CQ=100 and get a ~120 minute movie on one CD , and even at CQ=100, sampler size is still below wanted size (on most movies)

-kwag
I still don't understand how the mpg gets to 800meg. When I use the 120min template I get 1.6gig files (2CD). Do I need to drop the max bitrate to 900 so that I get one CD ??? Like with the above "~120 minute movie on one CD " what are you changing in the template to get it to one CD? CQ? Bitrate? Because when I look at the template it uses CQ60 and max bitrate of 2500 which ofcourse will give you 2 CD's.
Reply With Quote
  #92  
03-13-2003, 01:37 PM
GFR GFR is offline
Free Member
 
Join Date: May 2002
Posts: 438
Thanks: 0
Thanked 0 Times in 0 Posts
If you put the subs before GripBorders() then the subs will appear over the movie, if you put then after GripBorders() they'll appear on the black bar below the movie (except if it's a two-line sub). Some people don't like it when you have a letterboxed movie with only ~360 lines of heigth (or less - I've downloaded a xXx avi that's 256 lines high) and then put two lines of text in big characters over it , specially when you have those big unused black bars above and below.

And if you move GripBorders() to before the filters, filtering takes more time and the borders get smeared

There's a paliative - you can check the "smooth" box in VOBSUB.

I'm glad my player handles CVD subs
Reply With Quote
  #93  
03-14-2003, 07:54 AM
bagel00 bagel00 is offline
Free Member
 
Join Date: Feb 2003
Posts: 18
Thanks: 0
Thanked 0 Times in 0 Posts
here:

http://forum.doom9.org/showthread.ph...r&pagenumber=3
Reply With Quote
  #94  
03-24-2003, 02:05 AM
J-Wo J-Wo is offline
Free Member
 
Join Date: Nov 2002
Location: Toronto, Canada
Posts: 454
Thanks: 0
Thanked 0 Times in 0 Posts
Wow guys, it's so hard to keep up to date with all the latest new filters and settings people find. So glad I stumbled on this thread! Currently trying to encode an SVCD of Chicago onto one CD. I notice that the filters used are for DVD sources. Anyone tried to see if any changes need to be made for noiser sources, like SVCD or DivX? Should we change SpaceDust() to PixieDust()?

P.S. Kwag I really think you ought to put a sticky linked to the main KVCD page with your latest AVS script(s). And possibly links to some threads of interest as well. Just an idea!
Reply With Quote
  #95  
03-24-2003, 02:27 AM
vhelp vhelp is offline
Free Member
 
Join Date: Jan 2003
Posts: 1,009
Thanks: 0
Thanked 0 Times in 0 Posts
.
.
because my source is Satellite, and mostly pretty clean (xcept for when the
source is made crummy (blocks)) I use pixieDust() whenever I can.

As far as any filters being slow.. well, if the quality is better then going
faster, but w/ less quality, I'll stick w/ the slow filter. It's more than worth
the time he he..

Just using pixieDust() is a quality giver !!

-vhelp
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Avisynth: New compression filters? tengo6dedos Avisynth Scripting 17 04-27-2008 02:56 PM
Avisynth: Good compression? muhali3 Avisynth Scripting 10 10-14-2003 05:18 PM
Avisynth: Is there a filter for increasing compression even more? audioslave Avisynth Scripting 70 08-08-2003 08:39 AM
Avisynth: mergeLuma and mergechroma? Wolfi Avisynth Scripting 7 05-05-2003 04:38 AM
Avisynth: Increasing compression through preprocessing SansGrip Avisynth Scripting 67 01-29-2003 11:00 AM




 
All times are GMT -5. The time now is 12:24 PM  —  vBulletin © Jelsoft Enterprises Ltd