Hello !!!
I have a MKV file that I am converting to standard DVD Video format.
I am using AviSynth for this along with the VSFilter.dll and TextSub commands to "burn" the subtitles into the video image while doing the video conversion to DVD Video format.
This works but the subtitles are very low in the image and will get "cut off" on a standard TV due to TV OVERSCAN so I want to adjust the position of the subs to make them higher up in the image than they are.
My script looks like this so far:
So is there a way with the TextSub command to adjust the position of the subs or do I have to open them up into a Subtitle program to adjust them and if so how do I do it?Code:LoadPlugin("C:\Program Files\DirectVobSub\VSFilter.dll") vid=DirectShowSource("C:\ZZZ\DMC\DMC01.mkv") aud=WavSource("C:\ZZZ\DMC\DMC01.wav") AudioDub(vid,aud) LanczosResize(704,480) AddBorders(8,0,8,0) TextSub("C:\ZZZ\DMC\DMC01.ass") ConvertToYUY2()
I do have some limited Subtitle Workshop experience ... mostly with the SSA subtitle format. Does Subtitle Workshop handle the ASS subtitle format and do what I want?
In fact ... come to think of it ... the subs are a bit on the "big" side as well so it would be nice if I can make them a bit smaller as well as adjust the position.
- John "FulciLives" Coleman
P.S.
I never heard of ASS subtitles until now ... what does the ASS stand for? For instance I know SSA stands for Sub Station Alpha etc.
+ Reply to Thread
Results 1 to 3 of 3
-
"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
I never heard of ASS subtitles until now ... what does the ASS stand for? For instance I know SSA stands for Sub Station Alpha etc.
No, Subtitle Workshop does not like SSA very much :-(
There are two ways to control the position, the color, the font and the size of your subs:
1) direct edition of the SSA script (try TextPad or even Notepad if you don't want to use
Aegisub);
2) execute rundll32 "C:\Program Files\DirectVobSub\VSFilter.dll, DirectVobSub", which will call an applet to configure the work of VSfilter.
http://www.perlfu.co.uk/projects/asa/ass-specs.doc
===
{EDIT}
LanczosResize(704,480)
AddBorders(8,0,8,0)
that will be completely overscanned anyway
(unless you really want a small distortion of the image...)
{ANOTHER EDIT}
Assuming that your .MKV already is 4:3 Aspect Ratio,
and if you would like to not allow overscan to remove a pixel
from it, then you might want to try this:
LanczosResize(648,432)
AddBorders(36,24,36,24)
LanczosResize(576,384)
AddBorders(72,48,72,48) -
@Midzuki
Thanks for the heads up about Aegisub ... I downloaded it and was able to adjust the font size to a smaller size as well as adjust the position relative to the bottom as well as the sides.
Since I am converting this MKV to standard DVD Video format (with burned in subs) it is important that the subs not get too close to the bottom nor the sides as one must account for TV OVERSCAN and using Aegisub I was able to do all of that without too much fussing about.
So thanks again. I've used Subtitle Workshop but had never heard of Aegisub and it definitely was the program for this particular job.
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
Similar Threads
-
.ASS subtitle is in sync but showing at the wrong position
By onlinepen in forum SubtitleReplies: 2Last Post: 9th Nov 2009, 04:48 -
acer monitor will not let me adjust screen position
By vhsreject in forum Media Center PC / MediaCentersReplies: 1Last Post: 7th Feb 2009, 02:39 -
Position of subtitle & mpeg2 format
By akakiami in forum SubtitleReplies: 9Last Post: 26th Nov 2008, 01:22 -
adjust dvd subtitle position
By pcb in forum SubtitleReplies: 1Last Post: 27th Aug 2008, 18:42 -
Adjust vertical 'position' on HD capture
By Hardcore Legend in forum DVB / IPTVReplies: 4Last Post: 12th Oct 2007, 13:30