Log in

View Full Version : 2 SRT subs into 1 AVS file...


DaXearo
29th December 2002, 12:26
I have 2 seperate AVI files with corresponding SRT (TextSub) files..
I want to use both AVI & SRT files in 1 AVS file...
for AVI it's:

AviSource("file1.avi","file2.avi")

I tried the same method for the SRT files:

TextSub("file1.srt","file2.srt")

But it doesn't seem to work..
Is there any particular syntax for this?


Thanks in advance :)

DaXearo
29th December 2002, 12:43
textsub("file1.srt")
textsub("file2.srt")

DOESN'T work neither...
Help... :P

sh0dan
29th December 2002, 12:47
video1 = avisource("file1.avi")
video2 = avisource("file2.avi")
video1 = textsub(video1,"file1.srt")
video2 = textsub(video2,"file2.srt")
return video1+video2


Better read up on the syntax guide again!

DaXearo
29th December 2002, 12:59
LoadPlugin("textsub.vdf")
Video1 = AviSource("file1.avi",false)
Video2 = AviSource("file2.avi",false)
Video1 = TextSub(Video1,"file1.srt")
Video2 = TextSub(Video2,"file2.srt")
Return Video1+Video2
ConvertToYUY2()
ConvertToRGB24


When I do this like you said, it seems when the file2 starts, the subs are wrong... looks like they're out of sync and at the wrong place.. The first part looks fine.

Any ideas?

Greets