View Full Version : Problems with adding subs AVI to SVCD with DVD2SVCD


Spartaantje
16th October 2003, 12:25
Hello!

I hope there's somebody who can help.
I read\a lot of topics and got one telling me to insert the following lines into my avisynth.ini, I did and edited the mentioned path.

Only when tring to create a SVCD from a .avi it stops when using TMPGEnc.
Some error message about a wrong size?

I know it's because of the lines in BiCubicResize with forced subs, but I ca'n't seem to solve the problem. I've tried several textsub.vdr files on different locations, but in won't help!

Any suggestions?


This is my avisynth.ini

[AVISYNTH_SimpleResize]
0=LoadPlugin(!SimpleResize.dll)
1=ConvertToYUY2().SimpleResize(^TargetWidth,^TargetHeight)
2=AddBorders(0,^BorderTop,0,^BorderBottom)
!SimpleResize.dll=C:\Program Files\DVD2SVCD\Avisynth2.5 Plugins\SimpleResize\SimpleResize.dll

[AVISYNTH_BicubicResize]
0=BicubicResize(^TargetWidth,^TargetHeight,^b_value,^c_value)
1=AddBorders(0,^BorderTop,0,^BorderBottom)
^b_value=0.0
^c_value=0.6

[AVISYNTH_BilinearResize]
0=BilinearResize(^TargetWidth,^TargetHeight)
1=AddBorders(0,^BorderTop,0,^BorderBottom)

[AVISYNTH_BiCubicResize With forced subs for avi]
0=LoadPlugin("C:\Program Files\Gabest\VobSub\textsub.vdf")
1=BicubicResize(^TargetWidth,^TargetHeight,^b_value,^c_value)
2=AddBorders(0,^BorderTop,0,^BorderBottom)
3=textsub(!file.ssa)
4=AssumeFPS(25,1,True)
5=ConvertToYUY2()
^b_value=0.0
^c_value=0.6
!file.ssa=C:\Program Files\eMule\Incoming\7170_Charlies_Angels_Full_Throttle_2003_DVDrip\Charlies Angels Full Throttle 2003.ssa

Siku
16th October 2003, 13:40
Try to use VSFilter (http://sourceforge.net/project/showfiles.php?group_id=82303&release_id=180832) instead of textsub.vdr. It's an AviSynth plugin and it should work correctly.

Spartaantje
16th October 2003, 16:12
I've tried again, but still I get this message:

---------------------------------------------------------------
The resolution of teh video is illegal.

>The windows size need to be set between 8x8 and 4088x4088
>The width and height need to be a multiple of 8.
---------------------------------------------------------------

mic_ef
16th October 2003, 17:08
Try this:

[AVISYNTH_BiCubicResize With forced subs for avi]
0=BicubicResize(^TargetWidth,^TargetHeight,^b_value,^c_value)
1=AddBorders(0,^BorderTop,0,^BorderBottom)
2=LoadPlugin("D:\Program Files\VirtualDub\plugins\VSFilter.dll")
3=textsub(!file.sub)
^b_value=0.0
^c_value=0.6
!file.sub=*.srt

(* is the name of the subtitles)

Pay attention that I'm using SRT subtitles and not SSA

Hope it will help.

Spartaantje
17th October 2003, 11:52
Thanks both! Finally it works!

I'm testing if it 'll work with the .ssa extension as well.
But for now VSFilter.dll and the .srt extension works fine.

CU

Spartaantje
17th October 2003, 12:31
For all of you who want to know ...

The .ssa extension doen't work for me using the above (VSFilter.dll and the avisynth.ini script about BiCubic resize with forced subs).

:mad:

But ... as said before all works with the .srt extension!

:D

If sombody knows how what to do for me being able to use the .ssa extension files please let me know. I'm able to change the looks of the subs by converting them from .srt to .ssa, but I don't know how to set the subs as I like as a .srt file, so if you know please let me know.

For now thanx again!

mic_ef
22nd October 2003, 07:24
Hello again.
You can use "SubResync" which is one of the tools of VobSub.
Load the Subtitles, then, click on the Edit button and choose the font, size, colors and location of the subtitles on the screen. You can use this tool to transfer subtitles from one format to another also. Pay attention, when opening the subtitles don't forget to choose the right Frames per Second rate. Good Luck.

Bryt
25th October 2003, 10:03
Hi!
I have the same problem,i get, The resolution of teh video is illegal.
>The windows size need to be set between 8x8 and 4088x4088
>The width and height need to be a multiple of 8 when i try to make a svcd from avi with sub.
Can someone please explain how to do with this script,i am a beginner at this.