digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   Avisynth: msvcr70.dll file (http://www.digitalfaq.com/archives/avisynth/962-avisynth-msvcr70dll-file.html)

ZeppelinFan 08-24-2002 02:24 AM

Avisynth: msvcr70.dll file
 
About this msvcr70.dll file, It isn't on my comp anywhere. I have windows Me. I don't have any problems with tmpgenc or virtualdub or dvd2avi. So what is this file actually for? Since I don't have it, maybe it is for a program I do't use?

rendalunit 08-24-2002 10:37 AM

hi,

I'm not Kwag but I had this problem before-

Quote:

I found the answer to my problem of the "missing file MSVCR70.dll" error in TMPGenc. I COPIED the file MSVCRT.dll in the WINNT\SYSTEM32 folder to MSVCR70.dll (COPY not Rename!) << i'm using Windows 2000

ZeppelinFan 08-25-2002 02:22 AM

Well........
 
I don't have any problems with tmpgenc, or any of the programs. So maybe you don't need that file for Windows Me. I was just curious if anyone maybe knew if it was for tmpgenc or a different program, no big deal really.

aderunn3r 09-12-2002 11:46 PM

kwag ive just recently started using avisynth so i dont know what im doing wrong.. hopefully u can help me.
this is my script

LoadPlugin("c:\windows\system32\mpeg2dec.dll")
mpeg2source("D:\company.d2v")
BilinearResize(496,352,14,0,676,480)
#TemporalSmoother(2,2)
AddBorders(16,64,16,64)
Telecide()
Decimate()

i know u say i shouldnt put the # in front of temporalsmoother but if i dont it doesnt work. the other prob i get when i go to load this script is it says, there is no function named telecide().... where am i going wrong?

kwag 09-13-2002 12:00 AM

Quote:

Originally Posted by |3|aderunn3r
kwag ive just recently started using avisynth so i dont know what im doing wrong.. hopefully u can help me.
this is my script

LoadPlugin("c:\windows\system32\mpeg2dec.dll")
mpeg2source("D:\company.d2v")
BilinearResize(496,352,14,0,676,480)
#TemporalSmoother(2,2)
AddBorders(16,64,16,64)
Telecide()
Decimate()

i know u say i shouldnt put the # in front of temporalsmoother but if i dont it doesnt work. the other prob i get when i go to load this script is it says, there is no function named telecide().... where am i going wrong?

You're missing the decomb.dll
Get it at videotools.net or doom9.org.
Then your script should look like this:

LoadPlugin("c:\windows\system32\mpeg2dec.dll")
LoadPlugin("c:\encoding\decomb.dll") << Add this line >>
mpeg2source("D:\company.d2v")
BilinearResize(496,352,14,0,676,480)
#TemporalSmoother(2,2)
AddBorders(16,64,16,64)
Telecide()
Decimate()

See that I added the line LoadPlugin("c:\encoding\decomb.dll")
Change that to where you have your decomb.dll
decomb.dll is what supports telecide and decimate functions.

-kwag

aderunn3r 09-13-2002 01:57 AM

thanks for the quick reply kwag i know have decomb.dll but im still getting an error. this time the error says Unrecognized exception! D:\film.avs,line 4
this is the script

LoadPlugin("c:\windows\system32\mpeg2dec.dll")
LoadPlugin("c:\encoding\decomb.dll")
mpeg2source("D:\company.d2v")
BilinearResize(496,352,14,0,676,480)
#TemporalSmoother(2,2)
AddBorders(16,64,16,64)
Telecide()
Decimate()

what am i doing wrong now?


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

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.