Quantcast Avisynth Error Calling Temporalsmoother - digitalFAQ.com Forums [Archives]
  #1  
04-24-2002, 11:46 AM
Omega Omega is offline
Free Member
 
Join Date: Apr 2002
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Hi

I got "TemporalSmoother is not a function" if I define it in my avs script, what's wrong ? Is it a AviSynth build-in component or a plug-ins or what ?

Cheers

Omega
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-24-2002, 12:23 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 Omega
Hi

I got "TemporalSmoother is not a function" if I define it in my avs script, what's wrong ? Is it a AviSynth build-in component or a plug-ins or what ?

Cheers

Omega
Hi Omega:

Did you install the MPEG2DEC.dll somewhere?

Seems that the dll is not loaded, and that's why you get the error.

kwag
Reply With Quote
  #3  
04-24-2002, 12:48 PM
Omega Omega is offline
Free Member
 
Join Date: Apr 2002
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Hi kwag

Sure I have, here is my script:

LoadPlugin("C:\WINDOWS\SYSTEM32\MPEG2DEC.dll")
LoadPlugin("C:\WINDOWS\SYSTEM32\decomb.dll")
mpeg2source("E:\Vob\DVD2AVI_PROJECT_FILE.d2v")
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,480,0,0,720,480)
TemporalSmoother(2,2)
AddBorders(0,0,0,0)


Mpeg2Dec.dll has the size of 163'840 bytes, dated 18.05.01
AviSynth.dll has the size of 196'608 bytes. dated 25.10.01

Tried several AviSynth.dll's with no success -

btw, if I want 2 tracks of audio, can I just take the mpv (MPEG-1 / KVCD profile) and mux with with the 2 mp2s in BBMpeg with SVCD profile (MPEG-2), then I should get a S(X)VCD, what do you think ?

Thanks

Omega
Reply With Quote
  #4  
04-24-2002, 03:41 PM
Omega Omega is offline
Free Member
 
Join Date: Apr 2002
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
@kwag

Problem solved !

I searched around and found a good Mpeg2Dec.dll here:

http://users.win.be/dividee/avisynth.html

And it worked.

Thanks anyway.

Omega
Reply With Quote
  #5  
04-24-2002, 03: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 Omega
Hi kwag

Sure I have, here is my script:

LoadPlugin("C:\WINDOWS\SYSTEM32\MPEG2DEC.dll")
LoadPlugin("C:\WINDOWS\SYSTEM32\decomb.dll")
mpeg2source("E:\Vob\DVD2AVI_PROJECT_FILE.d2v")
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,480,0,0,720,480)
TemporalSmoother(2,2)
AddBorders(0,0,0,0)

Mpeg2Dec.dll has the size of 163'840 bytes, dated 18.05.01
AviSynth.dll has the size of 196'608 bytes. dated 25.10.01

Tried several AviSynth.dll's with no success -

btw, if I want 2 tracks of audio, can I just take the mpv (MPEG-1 / KVCD profile) and mux with with the 2 mp2s in BBMpeg with SVCD profile (MPEG-2), then I should get a S(X)VCD, what do you think ?

Thanks

Omega
Hi Omega:

Download a newer version of MPEG2DEC.DLL.
Mine is 188,416 dated 3/24/2002.

I think that's the problem.

About the 2 mp2's, I don't know!, haven't tried that yet!.

kwag
Reply With Quote
  #6  
04-27-2002, 11:47 AM
Learner Learner is offline
Free Member
 
Join Date: Apr 2002
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Hi Kwag, I am back to my video project after out of town for a while. Also congratulation your works and whatever your helps to newbie like me

I captured my family VHS tape through win TV card by using AV_IO prgram set on 352x480, 29.97pfs, Huffy compression. Then try to do IVTC as your suggest, after using tmpenc v2.52 to open film.avs file and I came up with error " file g:\film.avs can not open or supported". Here is my scripts

LoadPlugin("c:\winnt\system\MPEG2DEC.dll")
LoadPlugin("c:\winnt\system\decomb.dll")
AviSource("c:\1\capture.00.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,352,0,5,352,469)
TemporalSmoother(2,2)
AddBorders(0,64,0,64)


What's wrong with this script? Do I am missing something? I can't find out so just need an expert like you . BTW, I did double check all *.dlls file are located correctly and the file capture.00.avi is working OK

Thanks
Reply With Quote
  #7  
04-27-2002, 12:18 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 Learner
Hi Kwag, I am back to my video project after out of town for a while. Also congratulation your works and whatever your helps to newbie like me

I captured my family VHS tape through win TV card by using AV_IO prgram set on 352x480, 29.97pfs, Huffy compression. Then try to do IVTC as your suggest, after using tmpenc v2.52 to open film.avs file and I came up with error " file g:\film.avs can not open or supported". Here is my scripts

LoadPlugin("c:\winnt\system\MPEG2DEC.dll")
LoadPlugin("c:\winnt\system\decomb.dll")
AviSource("c:\1\capture.00.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,352,0,5,352,469)
TemporalSmoother(2,2)
AddBorders(0,64,0,64)


What's wrong with this script? Do I am missing something? I can't find out so just need an expert like you . BTW, I did double check all *.dlls file are located correctly and the file capture.00.avi is working OK

Thanks
Hi Learner:

I think you have a problem with your AviSynth installation.
Your script is correct, and just like yours, mine works the same for my captures via WinTV Go s-video and VirtualDub with the Huffy CODEC.

Try to open your .avs script file with Media Player. You should see the video playing slowly. If you get an error, the problem is the AviSynth installation.

kwag
Reply With Quote
  #8  
04-27-2002, 12:52 PM
Learner Learner is offline
Free Member
 
Join Date: Apr 2002
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Yeah, you are right, somehow my avisynth.dll was damaged or corrupted. Just download a new one and bingo. Thank again, you are the maaaan.
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
G.729/G.726 - Calling all SIP users rds_correia Computers 3 02-09-2006 02:21 PM
Avisynth: TemporalSmoother? buller Avisynth Scripting 4 04-12-2004 06:39 AM
Avisynth: Error opening the avisynth file i76276 Avisynth Scripting 5 10-22-2003 05:56 AM
Avisynth: With or without temporalsmoother? jorel Avisynth Scripting 5 05-27-2003 01:50 AM
I'm calling good friends to came here! jorel Off-topic Lounge 1 03-21-2003 02:17 AM

Thread Tools



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