Quantcast Avisynth: get a Blue Screen in TMPGEnc? - digitalFAQ.com Forums [Archives]
  #1  
04-29-2002, 04:27 PM
kasun000 kasun000 is offline
Free Member
 
Join Date: Apr 2002
Posts: 18
Thanks: 0
Thanked 0 Times in 0 Posts
I don't know i did it right but
I put the decomb.dll, mpeg2dec.dll, avisynth.dll and install.req and uninstall.req in the C:windows\system32.

i generate the avs from fitcd which I might did wrong something

here my avscript

LoadPlugin("C:\WINDOWS\SYSTEM32\MPEG2DEC.dll")
LoadPlugin("C:\WINDOWS\SYSTEM32\decomb.dll")
AviSource("C:\anime series\kanon1\kanon07.avi")
Telecide(reverse=false,swap=false,firstlast=false, post=true,threshold=15,dthreshold=9,blend=true,chr oma=false,y0=0,y1=0)
Decimate(cycle=5,mode=0,threshold=0)
BilinearResize(352,240,0,0,352,240)
Trim(0,32607).FadeOut(150)
TemporalSmoother(2,2)
AddBorders(0,0,0,0)

When I try load in TMPGEnc, I got a blue screen and then the program shut down.

There anyway fixs this.

kasun000
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  
04-29-2002, 06:31 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 kasun000
I don't know i did it right but
I put the decomb.dll, mpeg2dec.dll, avisynth.dll and install.req and uninstall.req in the C:windows\system32.

i generate the avs from fitcd which I might did wrong something

here my avscript

LoadPlugin("C:\WINDOWS\SYSTEM32\MPEG2DEC.dll")
LoadPlugin("C:\WINDOWS\SYSTEM32\decomb.dll")
AviSource("C:\anime series\kanon1\kanon07.avi")
Telecide(reverse=false,swap=false,firstlast=false, post=true,threshold=15,dthreshold=9,blend=true,chr oma=false,y0=0,y1=0)
Decimate(cycle=5,mode=0,threshold=0)
BilinearResize(352,240,0,0,352,240)
Trim(0,32607).FadeOut(150)
TemporalSmoother(2,2)
AddBorders(0,0,0,0)

When I try load in TMPGEnc, I got a blue screen and then the program shut down.

There anyway fixs this.

kasun000
Hi kasun000:

Remove this line: Trim(0,32607).FadeOut(150)

And what type of video is this kanon07.avi.
Is it a DIVx file or a captured AVI?

kwag
Reply With Quote
  #3  
04-29-2002, 07:01 PM
kasun000 kasun000 is offline
Free Member
 
Join Date: Apr 2002
Posts: 18
Thanks: 0
Thanked 0 Times in 0 Posts
kanon07.avi is DIVXMPG4 V3 type.

Even I took the Trim out but I encode a black screen with red text saying:

Telecide: yuy2 data only (no RGB): use convert yuy2
(C:\anime series\kanon1\film.avs, line 4)

I guess did something wrong with fitcd

kasun000
Reply With Quote
  #4  
04-29-2002, 07:17 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 kasun000
kanon07.avi is DIVXMPG4 V3 type.

Even I took the Trim out but I encode a black screen with red text saying:

Telecide: yuy2 data only (no RGB): use convert yuy2
(C:\anime series\kanon1\film.avs, line 4)

I guess did something wrong with fitcd

kasun000
Insert the following line in your .avs script right after your AviSource line:

ConvertToYUY2()

kwag
Reply With Quote
  #5  
04-29-2002, 07:33 PM
kasun000 kasun000 is offline
Free Member
 
Join Date: Apr 2002
Posts: 18
Thanks: 0
Thanked 0 Times in 0 Posts
like this:

AviSource ("c:\anime series\kanon1\kanon07.avi") ConvertToYUY2 ()


kasun000
Reply With Quote
  #6  
04-29-2002, 07:45 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 kasun000
like this:

AviSource ("c:\anime series\kanon1\kanon07.avi") ConvertToYUY2 ()


kasun000
Yes. But put it like this:

LoadPlugin("C:\WINDOWS\SYSTEM32\MPEG2DEC.dll")
LoadPlugin("C:\WINDOWS\SYSTEM32\decomb.dll")
AviSource("C:\anime series\kanon1\kanon07.avi")
ConvertToYUY2()
Telecide(reverse=false,swap=false,firstlast=false, post=true,threshold=15,dthreshold=9,blend=true,chr oma=false,y0=0,y1=0)
Decimate(cycle=5,mode=0,threshold=0)
BilinearResize(352,240,0,0,352,240)
TemporalSmoother(2,2)
AddBorders(0,0,0,0)


And all of this is assuming that your AVI is 29.97 interlaced. If your source is 23.976, you have to remove the Telecide and the Decimate lines.

kwag
Reply With Quote
  #7  
04-29-2002, 08:31 PM
kasun000 kasun000 is offline
Free Member
 
Join Date: Apr 2002
Posts: 18
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
And all of this is assuming that your AVI is 29.97 interlaced. If your source is 23.976, you have to remove the Telecide and the Decimate lines.
that why I was kept getting that blue screen error
cuz my source is 23.976

Quote:
You should process your file with an AviSynth script, using the TemporalSmoother filter, and this way it won't be as slow as using the internal TMPEG filter.
Is TemporalSmoother filter like noise reduction or you meant
using the temporalsmoother filter with avisynth script and using
the tmpeg filter so it won't be that slow or something else.

thanks you for your help

kasun000
Reply With Quote
  #8  
04-29-2002, 08:36 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 kasun000

Is TemporalSmoother filter like noise reduction or you meant
using the temporalsmoother filter with avisynth script and using
the tmpeg filter so it won't be that slow or something else.

thanks you for your help

kasun000
Yes. TemporalSmoother is an adaptive noise reduction filter.
Just use the TemporalSmoother in the AviSynth script.

Don't use the TMPEG filters. They are very slow.

kwag
Reply With Quote
  #9  
04-29-2002, 08:43 PM
kasun000 kasun000 is offline
Free Member
 
Join Date: Apr 2002
Posts: 18
Thanks: 0
Thanked 0 Times in 0 Posts
thanks again

what last question what are the best setting or max setting that temporalsmoother could go up to I see so post in vcdhelp forum
about your post some (2,2). Could go higher then 2,2?
Reply With Quote
  #10  
04-29-2002, 08:55 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 kasun000
thanks again

what last question what are the best setting or max setting that temporalsmoother could go up to I see so post in vcdhelp forum
about your post some (2,2). Could go higher then 2,2?
I suggest you stay with the 2,2 default. Going higher creates "trails" in moving images.

kwag
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
VirtualDub: Video does not appear, only blue screen with audio ?! bitaites Video Encoding and Conversion 1 10-15-2004 12:57 PM
TMPGEnc: Tmpgenc black preview screen khusru Video Encoding and Conversion 4 03-03-2004 09:24 AM
Avisynth: Movie was too blue? Bilal Avisynth Scripting 10 08-26-2003 08:55 AM
KVCD: Black screen with blue lines? Wolfi Video Encoding and Conversion 4 02-16-2003 01:43 PM
KVCD: red or blue blocks appear on the screen? aderunn3r Video Encoding and Conversion 10 06-02-2002 06:52 AM

Thread Tools



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