Quantcast TMPGEnc: Problems Getting AVS to Work - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Video Encoding and Conversion

Reply
 
LinkBack Thread Tools
  #1  
01-30-2003, 05:32 PM
ponykiller ponykiller is offline
Free Member
 
Join Date: Jan 2003
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Hi Was wondering if anyone could help me. New at this KVCD stuff but I think that Ive got the general jist of it, thing is, as you can see from the heading, whenever i try and bring in an avs file into TMPGENC I get an error from the Avsynth2 .dlls.

Speciffically this:

LOAD PLUGIN:unable to load"C:Program Files\Avisynth2\Plugins\Gripfit\Gripfit_Preview.dl l
(Movielocation.avs, line 6)

When I preview the avs in tmpgenc this is what i see in the screen. The avs goes in fine, but i cant get around this.

As far as I can tell Ive got everything configured properly. All the .dlls in the right place, movie name is correct in the avs file and matchs the location of the actual movie file.

Ive reinstalled the gripfit dll, reinstalled tmpgenc, followed the guide on how to setup the avsreader and so on. But nothing.

Please help.

thanks
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  
01-30-2003, 05:46 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
Hi ponykiller,

Post your script

-kwag
Reply With Quote
  #3  
01-31-2003, 03:38 AM
ponykiller ponykiller is offline
Free Member
 
Join Date: Jan 2003
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Hey Kwag

Im using the template for the script in the converting divx to kvcd tutorial I found on the site. Believe its by black prince, I realise that this is not the correct way, or rather, not the ideal way to do this type of conversion. But like i said im new at this and just want to see what the results look like. I will give fitcd a try once I get this to work.
Here's my script:

LoadPlugin("C:\Program Files\AviSynth2\plugins\MPEG2DEC.dll")
LoadPlugin("C:\Program Files\AviSynth2\plugins\LegalClip.dll")
LoadPlugin("C:\Program Files\AviSynth2\plugins\Blockbuster.dll")
LoadPlugin("C:\Program Files\AviSynth2\plugins\FluxSmooth.dll")
LoadPlugin("C:\Program Files\AviSynth2\plugins\Sampler.dll")
LoadPlugin("C:\Program Files\AviSynth2\plugins\Gripfit\GripFit_Preview.dl l")
avisource("C:\Documents and Settings\administrator\Desktop\Robotech01.avi")
LegalClip()
GripCrop(352, 240, overscan=1)
GripSize()
FluxSmooth()
LegalClip()
#Sampler(length=24)

Im probably missing something vital right? Let me know.

Thanks
Reply With Quote
  #4  
01-31-2003, 07:53 AM
Perfect Cell Perfect Cell is offline
Free Member
 
Join Date: Jan 2003
Posts: 46
Thanks: 0
Thanked 0 Times in 0 Posts
Try this one.

Make a test.avs script and put in there this line:

version

Only this: a test.avs file with only 1 line. I ever use this to see if avisynth is correct instaled in my system. Just load this test.avs in tmpgenc and you must see the version for avisynth ( must be 2.07 ).
Reply With Quote
  #5  
01-31-2003, 09:40 AM
ponykiller ponykiller is offline
Free Member
 
Join Date: Jan 2003
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Hi Perfect cell

Did what you said and it is version 2.07. Where do I go from here?

Thanks
Reply With Quote
  #6  
01-31-2003, 11:03 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
Quote:
Originally Posted by ponykiller

Im probably missing something vital right? Let me know.

Thanks
Yes you are : You didn't have GripBorders(). Try this:

Code:
LoadPlugin("C:\Program Files\AviSynth2\plugins\MPEG2DEC.dll") 
LoadPlugin("C:\Program Files\AviSynth2\plugins\LegalClip.dll") 
LoadPlugin("C:\Program Files\AviSynth2\plugins\Blockbuster.dll") 
LoadPlugin("C:\Program Files\AviSynth2\plugins\FluxSmooth.dll") 
LoadPlugin("C:\Program Files\AviSynth2\plugins\Sampler.dll") 
LoadPlugin("C:\Program Files\AviSynth2\plugins\Gripfit\GripFit_Preview.dll") 
avisource("C:\Documents and Settings\administrator\Desktop\Robotech01.avi") 
LegalClip() 
GripCrop(width=352, height=240, overscan=1) 
GripSize() 
FluxSmooth()
GripBorders() 
LegalClip() 
#Sampler(length=24)
And set input aspect in TMPEG to "Center".

-kwag
Reply With Quote
  #7  
01-31-2003, 11:34 AM
ponykiller ponykiller is offline
Free Member
 
Join Date: Jan 2003
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Hey Kwag

I appreciate your help, but Im still getting the same error. So Ive moved onto fitcd and Ive got TMPGENC to work properly, not sure how to work fitcd exactly but i will get there. Thing is now ive got black borders in tmpgenc, any ideas?

This is the script Ive got from fitcd:

# -= AviSynth script by FitCD v1.1.2 =-
#LoadPlugin("C:\Plugins\MPEG2DEC.dll")
#LoadPlugin("C:\Plugins\Blockbuster.dll")
#LoadPlugin("C:\Plugins\.FluxSmooth.dll")
#LoadPlugin("C:\Plugins\GripFit.dll")
#LoadPlugin("C:\Plugins\LegalClip.dll")
#LoadPlugin("C:\Plugins\Sampler.dll")
AviSource("C:\Documents and Settings\administrator\Desktop\Robotech01.avi")
BilinearResize(320,208,0,0,352,240)
AddBorders(24,16,24,16)
#Trim(0,42680).FadeOut(150)
ConvertToRGB24() # For TMPGEnc or VFAPI

Thanks
Reply With Quote
  #8  
01-31-2003, 12:10 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 ponykiller
Thing is now ive got black borders in tmpgenc, any ideas?
Set TMPEG's input aspect to "Full screen".
Mind you, if the movie you are processing is a "wide screen" movie, you will get black borders

-kwag
Reply With Quote
  #9  
02-01-2003, 11:33 AM
ponykiller ponykiller is offline
Free Member
 
Join Date: Jan 2003
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Hey Kwag

Thanks I will change that setting in tmpeg, I did go ahead and reincode the dvix footage with the black borders, just to see what the result would be and i was very impressed. Very small file with a minimum of loss in quality. But then another problem sprung up.

I encode the video in tmpeg but when its done, i try and scan through the footage, just to make sure its all there, and i can scan in the first few minutes but as soon as i get further than say 2 minutes the footage freezes, i can skip further or back, but then the image changes but is locked.

Thinking that maybe if i mux the new footage together with the new audio file it might sort it out, i do, but nothing changes. Except now it seems like the audio is trying to catch up, because after waiting a while it seems to and the footage carries on playing.

So I took it into nero and burnt a vcd on a rewritable, but the vcd only plays the first 10 seconds of the video. I changed the settings to non compliant vcd, so I dont know.

Any ideas?

Thanks
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
TMPGEnc: Issues with TMPGEnc and unresolved problems Blubear Video Encoding and Conversion 10 05-09-2006 01:40 PM
KVCD: De-Multiplex won't work in TmpGEnc? TBO Video Encoding and Conversion 3 09-01-2004 05:06 AM
TMPGEnc: For those of us with intermittent TMPGEnc problems el_mero_zooter Video Encoding and Conversion 5 09-26-2003 02:53 PM
TMPGEnc: Pixelation problems ezysk Video Encoding and Conversion 0 06-05-2003 04:57 PM
TMPGEnc: D2v problems andybno1 Video Encoding and Conversion 11 10-02-2002 10:59 AM




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