Quantcast VirtualDub/Avisynth - How do I get an IDX File? - digitalFAQ.com Forums [Archives]
  #1  
01-21-2004, 07:20 PM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
well I'm back again still ahvin probs with LOTR encode.

my script:
Code:
###Ver. November 21, 2003 @07:45 GMT ###
##DLL Section ##
#
LoadPlugin("C:\Program Files\MovieStacker\Filters\MPEG2Dec3.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\GripFit.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\STMedianFilter.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\asharp.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\unfilter.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\undot.dll")

#
####
##Main section and static filters ###
#
Mpeg2Source("D:\LOTR_SEE_D1\LOTR-FOTR.d2v")
#
undot()
Limiter()
asharp(2.5,4)
GripCrop(720, 576)
GripSize(resizer="BicubicResize")
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
#
#

##Linear Motion Adaptive Filtering ##
#
#( Portions from AviSynth's manual )
#This will apply variable temporalsoften
#and variable blur.
#Both filters are active at all times, and work inversely proportional to the
#activity, measured from current frame to next frame.

ScriptClip(" nf = YDifferenceToNext()" +chr(13)+ "unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100))).TemporalSoften( fmin( round(2/nf), 6), round(1/nf), round(3/nf), 1, 1) ")

#
#
#
VobSub("D:\LOTR_SEE_D1\VIDEO_TS\vts_01_0.idx")
GripBorders()
#LetterBox( Your_Values_Here )#Depends on situation. Use MovieStacker!
Limiter()

#
#
##Functions ###

function fmin( int f1, int f2){
  return ( f1<f2 )? f1 : f2
}
ConverttoRGB24()

#
####
I ran this in vdub to preview it and well got this


how do I get an idx file??
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-21-2004, 07:33 PM
rds_correia rds_correia is offline
Free Member
 
Join Date: Apr 2003
Location: Chinese Democracy starts now!
Posts: 2,563
Thanks: 1
Thanked 0 Times in 0 Posts
Hi Andy,
I believe you cannot use the file's extension with VobSub.
Try it without extension like: Vobsub("D:\....\vts_01_1")
Cheers
__________________
Rui
Reply With Quote
  #3  
01-21-2004, 07:34 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
I do not see any loadplugin line for "VSFilter.dll" (the vobsub plugin). Where did you put this plugin on your disc ? Did you put it in avisynth plugin directory ?
If yes, why don't you put ALL other dll in that directory and remove these ugly loadplugin lines ?

If not : you must add that line !

note :
Code:
asharp(2.5,4)
2.5 ? It's very big. No ?
Your CQ will suffer I fear.
Reply With Quote
  #4  
01-21-2004, 07:35 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by rds_correia
Hi Andy,
I believe you cannot use the file's extension with VobSub.
Try it without extension like: Vobsub("D:\....\vts_01_1")
Cheers
No, you can use either .idx or .sub
Reply With Quote
  #5  
01-21-2004, 07:44 PM
rds_correia rds_correia is offline
Free Member
 
Join Date: Apr 2003
Location: Chinese Democracy starts now!
Posts: 2,563
Thanks: 1
Thanked 0 Times in 0 Posts
Hmm,
Seams like I haven't been using hardcoded subs for a while now ...
I completely agree with your post on the VSFilter.dll, Phil.
C ya
__________________
Rui
Reply With Quote
  #6  
01-22-2004, 02:49 AM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
I had a look for VSFilter.dll and can't seem to find the dll file, I've just found it on the net and bung it in the plugin folder to save on the loadplugin lines.

Thanx
Reply With Quote
  #7  
01-22-2004, 02:58 AM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
dll was put in the plugin folder and everythin is the same in script, I put it in vdub and vdub closed straight away after openin the sctript so I loaded it in tmpgenc and got "The application has failed to start because vsub32.dll was not found please re-install the program" wel I;ve done this still gettin that msg and I've done a search for vsub32.dll on the net and nothin came up.
Reply With Quote
  #8  
01-22-2004, 04:19 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
I didn't know because I have it already installed on my PC but it's possible that the avisynth plugin VSFilter rely on the installation on Vobsub 2.23 !

Go DL and install it (see at doom9.org).
Reply With Quote
  #9  
01-22-2004, 01:37 PM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
well this is really annoyin, I think this will be my first and last go with subs I think I've downloaded and installed vobsub 2.23 and I'm still gettin the same dll error. I also got a msg in tmpgenc video preview window sayin "Script Error. Expected a , or ) (C:\LOTR-FOTR-D1.avs, Line 32, Column 9)"
Reply With Quote
  #10  
01-22-2004, 02:56 PM
rds_correia rds_correia is offline
Free Member
 
Join Date: Apr 2003
Location: Chinese Democracy starts now!
Posts: 2,563
Thanks: 1
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Dialhot
I didn't know because I have it already installed on my PC but it's possible that the avisynth plugin VSFilter rely on the installation on Vobsub 2.23 !

Go DL and install it (see at doom9.org).
I'm affraid I've never had VobSub 2.23 installed on my PC and still can use the VSFilter.dll.
Here is what I use:
VobSub Ripper http://prdownloads.sourceforge.net/g...0.zip?download to Rip the subs from your VOBs.
VobSub Filter http://prdownloads.sourceforge.net/g...8.zip?download to use with Avisynth 2.5x.
Have a go with the original VobSub 2.23 package or with these, Andy.
EDIT: Also be carefull enough of removing any vsub23.dll you may have on your avisynth\plugins directory because I believe that is a 2.0x plugin and you are running avisynth 2.5x, ok?
C ya
__________________
Rui
Reply With Quote
  #11  
01-22-2004, 03:04 PM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
I have the vsfilter.dll file already so I'll get the vsrip too see if that helps but I already ripped the subs from the vob file with subrip to a .sub file.
Reply With Quote
  #12  
01-22-2004, 03:16 PM
rds_correia rds_correia is offline
Free Member
 
Join Date: Apr 2003
Location: Chinese Democracy starts now!
Posts: 2,563
Thanks: 1
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by andybno1
I ran this in vdub to preview it and well got this


how do I get an idx file??
Man,
Now I got it
You have the wrong kind of sub
You have to use VobSub Configure to rip the subs or use VSRip as I told you on previous email.
Maybe VSRip is more straight forward that vobsub configure because noon ever seems to find the right button as in CQMatic noone seems to find Save TMPG project text.tpr or something.
Keep me updated if you don't make it.
C ya
__________________
Rui
Reply With Quote
  #13  
01-22-2004, 03:25 PM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
well I downloaded the vsrip I said where to save the idx file but after it done whatever it does there was no idx file but a .chunk file appeared.
Reply With Quote
  #14  
01-22-2004, 03:32 PM
rds_correia rds_correia is offline
Free Member
 
Join Date: Apr 2003
Location: Chinese Democracy starts now!
Posts: 2,563
Thanks: 1
Thanked 0 Times in 0 Posts
What do u mean? A file with an extension *.chunck?
That's just crazy
You should have an *.idx and a big *.sub file.
Friend, uninstall vobsub and VSRip, restart ur PC, check to see if old vobsub's folder is
still in c:\program files\vobsub, if so erase it.
Reinstall VSRip and try it again. If u still only get a chunck file try it with a different movie.
Keep me updated.
Cheers
__________________
Rui
Reply With Quote
  #15  
01-22-2004, 03:44 PM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
well done that uninstalled restarted ran vsrip, didn;t work tried it with different vobs same thing happend its just not producin the idx file.
Reply With Quote
  #16  
01-22-2004, 03:45 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
And with vobsub configure ?
Reply With Quote
  #17  
01-22-2004, 03:48 PM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
u have to configure vsrip for vobsub? how do I do that
Reply With Quote
  #18  
01-22-2004, 03:52 PM
rds_correia rds_correia is offline
Free Member
 
Join Date: Apr 2003
Location: Chinese Democracy starts now!
Posts: 2,563
Thanks: 1
Thanked 0 Times in 0 Posts
Andy,
You loaded the IFO file that comes with the VOBs when u rip the movie, right?
By then u choose the file location where VSRip will put your idx/sub files, right?
Now do you see some problem on the panel below or it just says it parsed it right?
From this point forward u only check or uncheck a language because everything is already for you to start ripping the subs.
And let me tell u it takes a good while in my PC.
Are u proceding this way?
Because it never failed me yet...
Cheers
__________________
Rui
Reply With Quote
  #19  
01-22-2004, 03:56 PM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
well I'm confused its now creatin idx files oh well never mind I shall carrty on now (hopefully) lol
Reply With Quote
  #20  
01-22-2004, 03:57 PM
rds_correia rds_correia is offline
Free Member
 
Join Date: Apr 2003
Location: Chinese Democracy starts now!
Posts: 2,563
Thanks: 1
Thanked 0 Times in 0 Posts
No.
Wait a minute: either u use vobsub configure from vobsub 2.23 package or u use VSRip that I showed you where to look for.
Keep with VSRip because it's more updated than vobsub 2.23!
Now I also get a .chunk file if I look at VSRip panel below the progression bar.
But when I go to the output directory I now have an idx and an sub files.
How about u?
__________________
Rui
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
VirtualDub: Editing an mpg file with virtualdub? shgr Video Encoding and Conversion 1 09-14-2004 12:17 AM
VirtualDub: Cannot rip Wav file EightBall Video Encoding and Conversion 19 10-22-2003 08:49 AM
getting VirtualDub error on .tpr file? FulciLives Video Encoding and Conversion 3 05-16-2003 02:45 AM
VirtualDub: Cannot save as wav file Wolfi Video Encoding and Conversion 4 03-05-2003 10:50 PM
VirtualDub: Open video file via Avisynth rendalunit Video Encoding and Conversion 2 02-14-2003 01:50 PM

Thread Tools



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