Quantcast Testing DVD2SVCD 1.1b1a and Prediction Factor - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Video Encoding and Conversion

Reply
 
LinkBack Thread Tools
  #1  
11-18-2002, 09:23 AM
VILLA21 VILLA21 is offline
Free Member
 
Join Date: Oct 2002
Location: Greece
Posts: 63
Thanks: 0
Thanked 0 Times in 0 Posts
The movie: "La Pianiste", PAL, 16:9, ~125min

1st attempt:
---AVS Begin---
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec .dll")
LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1.DLL")
mpeg2source("E:\Video\Movie\DVD2AV~1.D2V")
BilinearResize(352,216)
AddBorders(0,36,0,36)
LoadPlugin("C:\Program Files\DVD2SVCD\Avisynth\NoMoSmooth.dll")
NoMoSmooth()
LoadPlugin("C:\Program Files\DVD2SVCD\Avisynth\Blockbuster.dll")
Blockbuster( method="noise", detail_min=1, detail_max=10, lv=1 )
Blockbuster( method="sharpen", detail_min=20, detail_max=90, strength=20 )
AvisynthSubtitler("E:\Video\Movie\Subs\","permsubs .txt")
----AVS End----

Pred.Factor=0.95
Video Encoding time: 3h 30min
File size: 780MB
Comments: Very poor quality,dark, too many blocks

2nd attempt:
---AVS Begin---
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec .dll")
LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1.DLL")
mpeg2source("E:\Video\Movie\DVD2AV~1.D2V")
LoadPlugin("C:\Program Files\DVD2SVCD\Avisynth\UnFilter.dll")
Unfilter(20,20)
BilinearResize(352,216)
AddBorders(0,36,0,36)
LoadPlugin("C:\Program Files\DVD2SVCD\MPEG2Dec\MPEG2DEC2.dll")
TemporalSmoother(2,1)
AvisynthSubtitler("E:\Video\Movie\Subs\","permsubs .txt")
----AVS End----

Pred.Factor=0.97
Video Encoding time: 2h 30min
File Size: 815MB
Comments: Amazing quality! blockness

Conclusion:
Using Unfilter and TemporalSmoother gave me excellent results, fast encoding and increasing the Pred.Factor to 0.97 the final image almost filled the CDR capacity.

PS: I post it again to the right thread, sorry
__________________
The aRt oF FaLLing ApaRt
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
  #2  
11-18-2002, 09:56 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
Hi VILLA21,

Could you try this combination:

FluxSmooth(temporal_threshold=7, spatial_threshold=7)

######## Auto Strength, proportional strength depending on resolution #####
## Remove only one "#" on front of the resolution that matches your encoding.


BB_Resolution = 352*240
#BB_Resolution = 352*480
#BB_Resolution = 528*480
#BB_Resolution = 544*480
#BB_Resolution = 704*480

BB_StrengthConstant = 352 * 240 * 20 # Base strength
StrengthValue = round (BB_StrengthConstant / BB_Resolution)
Blockbuster( method="noise", detail_min=1, detail_max=10, lv=1 ) # Apply noise if complexity is <= 10%.
Blockbuster( method="sharpen", detail_min=20, detail_max=90, strength=StrengthValue) # Sharpen only if complexity is >= 20% AND <=90%.

# The last ~10% is left untouched (pass-through), to avoid sharpening highest frequency components ( Peak artifacts, sharpest edge, etc. )
##
################## End Auto Strength ###################


I'm getting excelent results with this combination.

-kwag
Reply With Quote
  #3  
11-18-2002, 06:27 PM
Daagar Daagar is offline
Free Member
 
Join Date: May 2002
Posts: 158
Thanks: 0
Thanked 0 Times in 0 Posts
With what predicition factor, Kwag?

Also... some of these tests are being done with various filters before/after the resize and add borders commands. Won't this affect the outcome as well?

(I was under the impression that most/all filters should be run prior to resize at the sacrifice of some encoding speed...)
Reply With Quote
  #4  
11-18-2002, 08:05 PM
syk2c11 syk2c11 is offline
Free Member
 
Join Date: Jun 2002
Posts: 290
Thanks: 0
Thanked 0 Times in 0 Posts
Kwag,
The links you posted in "What's happening" for KVCD Predictor does not work!

-----Blockbuster( method="sharpen", detail_min=20, detail_max=90, strength=StrengthValue) # Sharpen only if complexity is >= 20% AND <=90%.-----

If I don't want that much sharpening in dark scene (I am using KDVD Full-D1, CQ_VBR, Min=1000, Max=4000, CQ=25), do I increase the value of "detail_min" or do I decrease the value of "detail_max"? I tried the combination of "Nomosmooth" and "Blockbuster" in the above-mentioned KDVD settings, the black is too black, the white is too white.
Reply With Quote
  #5  
11-18-2002, 08:47 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 syk2c11
Kwag,
The links you posted in "What's happening" for KVCD Predictor does not work!
Check again, and if you can't download from SansGrip's site, get the file from the kvcd.net link
http://www.kvcd.net/forum/viewtopic.php?t=1737

-kwag
Reply With Quote
  #6  
11-19-2002, 04:54 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 Daagar
With what predicition factor, Kwag?

Also... some of these tests are being done with various filters before/after the resize and add borders commands. Won't this affect the outcome as well?

(I was under the impression that most/all filters should be run prior to resize at the sacrifice of some encoding speed...)
3rd Attempt:
---AVS Begin---
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec .dll")
LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1.DLL")
mpeg2source("E:\Video\Movie\DVD2AV~1.D2V")
LoadPlugin("C:\Program Files\DVD2SVCD\Avisynth\FluxSmooth.dll")
FluxSmooth(temporal_threshold=7,spatial_threshold= 7)
LoadPlugin("C:\Program Files\DVD2SVCD\Avisynth\Blockbuster.dll")
Blockbuster( method="noise", detail_min=1, detail_max=10, lv=1 )
Blockbuster( method="sharpen", detail_min=20, detail_max=90, strength=20 )

BilinearResize(352,216)
AddBorders(0,36,0,36)
AvisynthSubtitler("E:\Video\Movie\Subs\","permsubs .txt")
----AVS End----

(Filters before resize)
Pred.Factor=0.97
Video Encoding time: 6h 30m...!!
File Size: 813Mb
Comments: Very good quality though i can"t tell the diference from Unfilter+TemporalSmoother
__________________
The aRt oF FaLLing ApaRt
Reply With Quote
  #7  
11-20-2002, 04:38 PM
VILLA21 VILLA21 is offline
Free Member
 
Join Date: Oct 2002
Location: Greece
Posts: 63
Thanks: 0
Thanked 0 Times in 0 Posts
4th Attempt:
Again Unfilter+TemporalSmoother but before resize at this time.

---AVS Begin---
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec .dll")
LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1.DLL")
mpeg2source("E:\Video\Movie\DVD2AV~1.D2V")
LoadPlugin("C:\Program Files\DVD2SVCD\Avisynth\UnFilter.dll")
LoadPlugin("C:\Program Files\DVD2SVCD\MPEG2Dec\MPEG2DEC2.dll")
Unfilter(20,20)
TemporalSmoother(2,1)
BilinearResize(352,216)
AddBorders(0,36,0,36)
AvisynthSubtitler("E:\Video\Movie\Subs\","permsubs .txt")
----AVS End----

Pred.Factor=0.98
Video Encoding time: 3h 30m
File Size: 817Mb...!
Comments: Very good quality

PS: On the weekend i"ll try the latest versions of FluxSmooth+Blockbuster with pred.factor=0.98 or...0.985, as i"ll be away from home for 2 days...
__________________
The aRt oF FaLLing ApaRt
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
DVD2SVCD: CQ prediction problems paolo Video Encoding and Conversion 0 01-12-2005 04:08 AM
DVD2SVCD: Why is D2S prediction so inconsistent? magnus Video Encoding and Conversion 6 01-08-2004 01:02 AM
DVD2SVCD: File prediction and CQ telemike Video Encoding and Conversion 4 04-16-2003 05:27 PM
DVD2SVCD: DVD2SVCD file size prediction for CQ_VBR black prince Video Encoding and Conversion 0 12-04-2002 07:32 PM
KVCD: DVD2SVCD? Where is the File Prediction included?? Jellygoose Video Encoding and Conversion 6 11-20-2002 11:23 AM




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