Quantcast Subtitles: Textsub.dll Not Found! Where to Download? - digitalFAQ.com Forums [Archives]
  #1  
07-14-2003, 11:59 AM
Edlund Edlund is offline
Free Member
 
Join Date: Jul 2003
Location: Pazardjik, Bulgaria
Posts: 147
Thanks: 0
Thanked 0 Times in 0 Posts
Hi all! I discovered this incredible KVCD a few days ago. After hours of reading and trying and downloading and what not I understood how it works. But I can't add subtitles to my mpg because when I put this filter on, the .avs file shows "Textsub.dll not found" (or something similar I tried today the whole day other solutions, but nothing worked and finally I decided to bother you with my questions.

1. TextSub.dll is in moviestalker\filters directory and all other filters are used correctly except this one. Can I download only this .dll from somewhere, or what is wrong with my TextSub.dll, or any other ideas?

2. I used TMPGenc before for adding subtitles (directshow plug-in on top) If I encode the whole movie and try to add subtitles this way, will the quality reduce from the TMPG-convertion, or how long will the convertion last? (I must try it myself but right now I have a headache

3. WinSubMux and the SubMux-function of VobSub don't work! I am not ripping a dvd but a downloaded .avi with downloaded subs, that's why Winsubmux doesn't work I think. The submux in vobsub works, but creates only a 10-seconds long file and I don't know why. Do you know some other program for submuxing?

Can you help me please, I know it's bothering to answer so many questions but I really couldn't find the solution myself.

Many 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  
07-14-2003, 12:33 PM
Krillenok Krillenok is offline
Free Member
 
Join Date: Apr 2003
Location: Sweden
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
If ypu are using avisynth version 2.52. You need to download Vsfilter from this link
http://sourceforge.net/projects/guliverkli/
Then you just load vsfilter.dll instead of textsub.dll
In your script use
Textsub() as usual.

Lycka till
Reply With Quote
  #3  
07-14-2003, 02:52 PM
Edlund Edlund is offline
Free Member
 
Join Date: Jul 2003
Location: Pazardjik, Bulgaria
Posts: 147
Thanks: 0
Thanked 0 Times in 0 Posts
A big THANK YOU, man. Anyway, on my .avs file the subtitles are not on the black borders but on the screen and are very blurred. Would you tell me an example of what to write to set them under the scrren?
Reply With Quote
  #4  
07-14-2003, 03:04 PM
Krillenok Krillenok is offline
Free Member
 
Join Date: Apr 2003
Location: Sweden
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Ex script

## DLL Section ##
#
LoadPlugin("E:\Filters25\MPEG2Dec3.dll")
LoadPlugin("E:\Filters25\GripFit_YV12.dll")
LoadPlugin("E:\Filters25\STMedianFilter.dll")
LoadPlugin("E:\Filters25\asharp.dll")
LoadPlugin("E:\Filters25\unfilter.dll")
LoadPlugin("E:\Filters25\undot.dll")
LoadPlugin("E:\Filters25\vsfilter.dll")
#
####

## Defined Variables and Constants ##
#
MaxTreshold = 1.50
nf = 0 # Current frame.
#
####

## Main section and static filters ###
#
AviSource("C:\movie.avi")
#
undot()
Limiter()
asharp(1, 4)
BicubicResize(528, 270, 0, 0.6, 11, 0, 554, 240)
STMedianFilter(8, 32, 0, 0 )
MergeChroma(blur(MaxTreshold))
MergeLuma(blur(0.1))
#
#

## Linear Motion Adaptive Filtering ##
#
# ( Portions from AviSynth's manual ) - This will apply temporalsoften to
# very static scenes, and apply variable blur on moving scenes.
# We also assign a variable - and this is why a line break is inserted:

SwitchThreshold = (Width<=352) ? 4 : (Width<=480) ? 3 : 2
ScriptClip("nf = YDifferenceToNext()"+chr(13)+ "nf >= SwitchThreshold ? \
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) ")

#
#
#

AddBorders(0, 105, 0, 105)
LetterBox(16, 16, 16, 16)
Limiter()

#
#
## Functions ###

function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}
TextSub("C:\textfile.ssa")
#
####
####

and here are some values from the textfile.ssa

[Script Info]
; This is a Sub Station Alpha v4 script.
; For Sub Station Alpha info and downloads,
; go to http://www.eswat.demon.co.uk/
; or email kotus@eswat.demon.co.uk
;
; Note: This file was saved by Subresync.
;
ScriptType: v4.00
Collisions: Normal
PlayResX: 384
PlayResY: 288
Timer: 100.0000

[V4 Styles]
Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, TertiaryColour, BackColour, Bold, Italic, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, AlphaLevel, Encoding
Style: Default,Tahoma,12,&Hffffff,&H00ffff,&H000000,&H000 000,-1,0,1,2,3,6,20,20,228,0,1
Reply With Quote
  #5  
07-15-2003, 01:13 AM
Edlund Edlund is offline
Free Member
 
Join Date: Jul 2003
Location: Pazardjik, Bulgaria
Posts: 147
Thanks: 0
Thanked 0 Times in 0 Posts
Ok, I made the avs-file and it looks fine. But of course there is another problem - when starting the prediction process ToK creates a video.avs file, which has a loadPlugin c:.. Sampler.dll in it. But yesterday I installed avisynth 2.52 and that's why all the sampler.dll-files that i have (4 are not avisynth 2.5 plug-ins as it says on the screen and I can't predict my CQ. I will encode it without prediction, no problem, but do you know what to do with the sampler.dll? It's not on http://www.avisynth.org/users/warpenterprises/ (
I think many of you have had this problem but I can't find the answer by myself.
Reply With Quote
  #6  
07-15-2003, 11:45 AM
ezysk ezysk is offline
Free Member
 
Join Date: Apr 2003
Posts: 197
Thanks: 0
Thanked 0 Times in 0 Posts
If ypu are using avisynth version 2.52. You need to download Vsfilter from this link
http://sourceforge.net/projects/guliverkli/
Quote:

............FILE NOT FOUND.......any other "working link" to get this ???
Reply With Quote
  #7  
07-15-2003, 04:35 PM
Edlund Edlund is offline
Free Member
 
Join Date: Jul 2003
Location: Pazardjik, Bulgaria
Posts: 147
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks, ezysk, I have VSfilter working, my sampler.dll wasn't working. I use a script which a member of the forum(the guy who made a yahoo group for kvcd) has posted and it works great. And didn't require sampler.dll Do you know what exactly does this sampler do?
Reply With Quote
  #8  
07-16-2003, 02:00 AM
Krillenok Krillenok is offline
Free Member
 
Join Date: Apr 2003
Location: Sweden
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Download the latest sampler version here. For avisynth 2.5 you load sampler-25.dll instead of sampler.dll.
This should work


http://www.kvcd.net/sansgrip/avisynth/
Reply With Quote
  #9  
07-16-2003, 03:16 AM
Edlund Edlund is offline
Free Member
 
Join Date: Jul 2003
Location: Pazardjik, Bulgaria
Posts: 147
Thanks: 0
Thanked 0 Times in 0 Posts
Thank you, too, Krillenok. This sampler was a big pain in the ass because I couldn't predict the filesize of the mpg.
I think it will be much easier for newbies to have a section with all the .dll files possible. I searched through some sites and there was no sampler.dll, but many others. It would be good if they were all at one site
Reply With Quote
  #10  
07-16-2003, 04:00 AM
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 Edlund
I think it will be much easier for newbies to have a section with all the .dll files possible.
There is, on the home page of KVCD.net (see menu on the left, "software download").

And there is also a button "search" at the top of this present screen. Use it
Reply With Quote
  #11  
07-16-2003, 04:28 AM
Edlund Edlund is offline
Free Member
 
Join Date: Jul 2003
Location: Pazardjik, Bulgaria
Posts: 147
Thanks: 0
Thanked 0 Times in 0 Posts
Yes I used them many times without success. And I didn't knew that I must search for "sampler-25.dll". The name could have been different. I searched for sampler.dll and in the first results there was the word sampler, in the next only "dll" and that was it.
Reply With Quote
  #12  
07-16-2003, 06:54 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
Edlund,
welcome in forum!


take care of this link,
you will find there anything you need,ok?

download page:
http://www.kvcd.net/forum/viewtopic.php?t=2553&start=0

ps:
in the link of "SansGrip Filters" in download page,you will find sampler!
Reply With Quote
  #13  
07-16-2003, 05:22 PM
Edlund Edlund is offline
Free Member
 
Join Date: Jul 2003
Location: Pazardjik, Bulgaria
Posts: 147
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks to you too, but I've checked this link noumerous times already. I simply missed the "SansGrip Filters" - link
Reply With Quote
  #14  
07-16-2003, 09:31 PM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Edlund
Thanks to you too, but I've checked this link noumerous times already. I simply missed the "SansGrip Filters" - link

maybe i'm not understand you Edlund...
it means that you can't find this in the link posted?

see,copy of the link of our download page posted (thanks bp):
SansGrip Filters
click in this link http://www.jungleweb.net/~sansgrip/avisynth/
and download the sampler0.2a.zip

Reply With Quote
  #15  
07-17-2003, 09:27 AM
Edlund Edlund is offline
Free Member
 
Join Date: Jul 2003
Location: Pazardjik, Bulgaria
Posts: 147
Thanks: 0
Thanked 0 Times in 0 Posts
It's ok, man, I've found it In the previous post I wrote "I simply missed the link". That's Past Tense. I missed it before I posted here. Now I know where it is.
Reply With Quote
  #16  
07-17-2003, 04:05 PM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Edlund
It's ok, man, I've found it In the previous post I wrote "I simply missed the link". That's Past Tense. I missed it before I posted here. Now I know where it is.
ok, right my friend!


"That's Past Tense"
oh...thanks for english course!
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
I found this links. Is it ok? Prodater64 Off-topic Lounge 2 07-25-2005 06:58 PM
Some cool site I found! kwag Off-topic Lounge 7 06-19-2003 03:03 PM
textsub doesn't work with avisynth 2.08? Adder Avisynth Scripting 4 04-20-2003 04:26 AM
Subtitles with Avisynth and TextSub, error! Wolfi Avisynth Scripting 1 02-20-2003 07:13 PM
How to make textsub work on avisynth ? pacodoni Avisynth Scripting 2 10-19-2002 08:44 PM

Thread Tools



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