Quantcast Blockbuster Causes a/v Out of Sync - Any Replacement? - digitalFAQ.com Forums [Archives]
  #1  
10-06-2004, 03:24 PM
dongxu dongxu is offline
Free Member
 
Join Date: Sep 2003
Posts: 47
Thanks: 0
Thanked 0 Times in 0 Posts
I used the version 4:

Code:
AviSource("PATH\NAME.avi",false) 
BlindPP(cpu=4) 
Blockbuster(method="noise",detail_min=1,detail_max=3,variance=0.1,seed=1) 
Convolution3D(1, 6, 12, 6, 8, 2.8, 0) 
GripCrop(WIDTH, HEIGHT, overscan=1, source_anamorphic=false) 
GripSize(resizer="LanczosResize") 
Undot() 
TemporalSoften(2,7,7,3,2) 
DCTFilter(1,1,1,1,1,1,0.5,0) 
#Blockbuster(method="noise",detail_min=1,detail_max=10,variance=0.3,seed=5623) 
GripBorders()
found that Blockbuster caused v/a out of syn because when I remove it and the a/v was perfect. but there was lots of blocks without Blockbuster. Any other filters can replace Blockbuster?
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  
10-06-2004, 03:35 PM
Prodater64 Prodater64 is offline
Free Member
 
Join Date: Mar 2003
Location: Palma de Mallorca - España
Posts: 2,925
Thanks: 0
Thanked 0 Times in 0 Posts
It is the first time that I ear something like this!
What another change did you do when encoding without blockbuster.
Please, post another data, step by step.
Other way, will come Dialhot and will send you to your brother house (this is a joke, don't worry).
Reply With Quote
  #3  
10-06-2004, 03:44 PM
dongxu dongxu is offline
Free Member
 
Join Date: Sep 2003
Posts: 47
Thanks: 0
Thanked 0 Times in 0 Posts
here is the script
Code:
Directshowsource("d:\xxx.wmv",fps=25.00)
crop(0,94,480,272)
ConvertToYV12()
BlindPP(cpu=4) 
#Blockbuster(method="noise",detail_min=1,detail_max=3,variance=0.1,seed=1) 
Convolution3D(1, 6, 12, 6, 8, 2.8, 0) 
LanczosResize(352,208) 
Undot() 
TemporalSoften(2,7,7,3,2) 
DCTFilter(1,1,1,1,1,1,0.5,0) 
#Blockbuster(method="noise",detail_min=1,detail_max=10,variance=0.3,seed=5623) 
AddBorders(0,2,0,30)
TextSub("d:\xxx.ssa")
Only difference was with or without Blockbuster (both lines), even one will cause the trouble
Reply With Quote
  #4  
10-06-2004, 10:04 PM
kev23m kev23m is offline
Free Member
 
Join Date: Feb 2004
Location: India
Posts: 185
Thanks: 0
Thanked 0 Times in 0 Posts
Should be something else , I have been using Blockbuster on most of my scripts and never had such a problem.
Reply With Quote
  #5  
10-06-2004, 10:17 PM
dongxu dongxu is offline
Free Member
 
Join Date: Sep 2003
Posts: 47
Thanks: 0
Thanked 0 Times in 0 Posts
Even I did not think it was the problem. But it is true. It took me more than three weeks to find out. I tried many other frame savers and happened to find that the A/V was OK without any filters, only then I realised something wrong with the filters. I omitted it one by one and finally got it right.

It makes the audio gradually out of syn. For my 2 hours movie, there was about 3 seconds in the end.
Reply With Quote
  #6  
10-07-2004, 02:52 AM
incredible incredible is offline
Free Member
 
Join Date: May 2003
Location: Germany
Posts: 3,189
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to incredible
Quote:
Code:
Directshowsource("d:\xxx.wmv",fps=25.00)
That should be the guilty one as I dont know WHY you open an avi with directshowsource.

Open your avi using GSpot and do look which decoder is needed. Then be shure you got that needed system decoder installed.
If you cant open your source using avisource but directshowsource then you dont have the fvw compount of that codec installed but the directshow compount. As "avisource" uses fvw to decode sources!


EDIT: I saw its an WMV ... I dont know if THATs the one where Virtualdub gots no longer decoding support due to M$ license issues. But do look in the Web (Google: "VirtualDub" AND "WMV" ) ... theres an old Vdub version which handles such WMV ... so you can frameserve it using Vdub and open the input in avisynth using "avisource("xxxxx.vdf")"
Reply With Quote
  #7  
10-07-2004, 03:38 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
For your problem, Blockbuster can be in cause in no way.
Reply With Quote
  #8  
10-07-2004, 05:14 AM
stephanV stephanV is offline
Free Member
 
Join Date: May 2004
Posts: 43
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by incredible
Quote:
Code:
Directshowsource("d:\xxx.wmv",fps=25.00)
EDIT: I saw its an WMV ... I dont know if THATs the one where Virtualdub gots no longer decoding support due to M$ license issues. But do look in the Web (Google: "VirtualDub" AND "WMV" ) ... theres an old Vdub version which handles such WMV ... so you can frameserve it using Vdub and open the input in avisynth using "avisource("xxxxx.vdf")"
hmmm... no

wmv is usually VFR (actually, WMV doesnt even have a frame rate) and VDub still cant handle VFR. besides, asf/wmv support in those VirtualDub versions was never really finished; i wouldn't recommend using it for opening WMV files. also, avisynth doesnt know how to handle VFR (which is most likely where the desynch is coming from). And then theres still the problem that youd need a VFW codec for WMV9... there is one, but im not sure if it supports the decoding of b-frames.

the only program which ive seen that can reliably convert WMV to AVI or MPEG1/2 is TMPGEnc, but of course you can do little filtering then.
Reply With Quote
  #9  
10-07-2004, 07:25 AM
Boulder Boulder is offline
Free Member
 
Join Date: Sep 2002
Location: Lahti, Finland
Posts: 1,652
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by stephanV
the only program which ive seen that can reliably convert WMV to AVI or MPEG1/2 is TMPGEnc, but of course you can do little filtering then.
The solution would then be to encode the WMV file to a lossless HuffYUV AVI with TMPGEnc and then process the AVI normally? I've never used TMPGEnc for such conversion so I don't know if it really would work.
Reply With Quote
  #10  
10-07-2004, 07:42 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Boulder
The solution would then be to encode the WMV file to a lossless HuffYUV AVI with TMPGEnc and then process the AVI normally? I've never used TMPGEnc for such conversion so I don't know if it really would work.
For sure it works. I do taht any time I do not find an other solution
(that was the case with MPEG1 files that avisynth prior to 2.5.4 couldn't handle correctly).
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Improved Replacement for GripFit vmesquita Video Encoding and Conversion 9 02-21-2004 06:15 PM
Avisynth: Experimental fxToon replacement - mfToon jorel Avisynth Scripting 1 05-02-2003 11:22 AM
KVCD: Blockbuster? Anonymous Video Encoding and Conversion 1 12-12-2002 03:42 PM
KVCD: Blockbuster? WhiteKnight54 Video Encoding and Conversion 5 12-12-2002 03:02 PM
Recording Video: Best new Capture card replacement? kenny Video Capturing / Recording 4 11-24-2002 11:24 AM

Thread Tools



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