sumpm1
1st October 2004, 19:50
Hello
I am trying to convert some old mpeg's to low quality rv10 for archiving. I am using Avisynth 2.5.5 and AutoRV10 v1.0 beta 4 . I have very little knowledge of Avisynth. I use Avisynth script generators to do my scripting for me. I used the generator from Helix Producer Gui. And I also used SwiftAVS.
Since Avisynth doesn't handle mpeg directly like it does avi, I was using DirectShowSource().
The problem that I am having is that AutoRV10 will not handle the .avs scripts that I am giving it. It will preview them just fine, but then when I go to encode, it gives me an error: Runtime error '9'.....and then crashes.
AutoRV10 has no problem handling my scripts that link to avi sources, those jobs encode just fine.
Does anyone have any idea what could be causing these crashes, or have any experience with mpegs specifically in Avisynth? I know that this can work, and rv10 can do very low bitrate, which is what I want for these files.
Here is the script that AutoRV10 is creating for the file:
---------------------------------------
# PLUGINS
#
# VIDEO SOURCE
Video=Import("J:\emule\Outgoing\Video\AVS\derek roddy 1.avs").ConvertToYV12()
#
# CROPPING
Video=Crop(Video,0,0, -0, -0, align=true)
#
# RESIZING
Video=BicubicResize(Video,352,240,0,0.5)
#
# LIMIT Chroma & Luma Value
Video=Limiter(Video)
#
# FINISH
Return(Video)
-----------------------------------------
This is what the Helix Producer Gui Avisynth script generator gave me:
-----------------------------------------
#####################AVS Script generated by Helix Producer GUI 1.1.2#####################
LoadPlugin("G:\Helix Producer Gui\Dll\MPEG2Dec3.dll")
video = directshowsource("J:\emule\Outgoing\Video\Derek Roddy Drums Video 01.mpg")
crop(video, 0, 0, -0, -0)
trim(0, 0)
##############################http://hel-xproducergui.fr.st##############################
--------------------------------------------
I tried just using the Directshowsource of the file, and created my own script, I still got the same error.
I am trying to convert some old mpeg's to low quality rv10 for archiving. I am using Avisynth 2.5.5 and AutoRV10 v1.0 beta 4 . I have very little knowledge of Avisynth. I use Avisynth script generators to do my scripting for me. I used the generator from Helix Producer Gui. And I also used SwiftAVS.
Since Avisynth doesn't handle mpeg directly like it does avi, I was using DirectShowSource().
The problem that I am having is that AutoRV10 will not handle the .avs scripts that I am giving it. It will preview them just fine, but then when I go to encode, it gives me an error: Runtime error '9'.....and then crashes.
AutoRV10 has no problem handling my scripts that link to avi sources, those jobs encode just fine.
Does anyone have any idea what could be causing these crashes, or have any experience with mpegs specifically in Avisynth? I know that this can work, and rv10 can do very low bitrate, which is what I want for these files.
Here is the script that AutoRV10 is creating for the file:
---------------------------------------
# PLUGINS
#
# VIDEO SOURCE
Video=Import("J:\emule\Outgoing\Video\AVS\derek roddy 1.avs").ConvertToYV12()
#
# CROPPING
Video=Crop(Video,0,0, -0, -0, align=true)
#
# RESIZING
Video=BicubicResize(Video,352,240,0,0.5)
#
# LIMIT Chroma & Luma Value
Video=Limiter(Video)
#
# FINISH
Return(Video)
-----------------------------------------
This is what the Helix Producer Gui Avisynth script generator gave me:
-----------------------------------------
#####################AVS Script generated by Helix Producer GUI 1.1.2#####################
LoadPlugin("G:\Helix Producer Gui\Dll\MPEG2Dec3.dll")
video = directshowsource("J:\emule\Outgoing\Video\Derek Roddy Drums Video 01.mpg")
crop(video, 0, 0, -0, -0)
trim(0, 0)
##############################http://hel-xproducergui.fr.st##############################
--------------------------------------------
I tried just using the Directshowsource of the file, and created my own script, I still got the same error.