hi everyone,
i have a movie that is split into 2 xvid files with ac3 audio. each segent has its own subtitle file so there are 2 sets of subs, 1 for disc 1, and 1 for disc 2. now i was just wondering if there was any way that i could hardcode the subs into the video in order to convert to dvdor do i have to reencode the avi again and add the subs that way? i usually convert avi to dvd using the avisynth/cinemacraft method. so if anyone can help me out with doing this, it would be greatly appreciated. thanks very much in advance for any help.
+ Reply to Thread
Results 1 to 7 of 7
-
-
-
Originally Posted by mats.hogberg
-
I use The FilmMachine v1.5.0.18beta to automatically convert the txt subs to .ssa, convert/extract Audio to AC3 and make the AVS script with framerate convert to PAL, resize/borders and converted .ssa subs included.
eg. script it puts out below:
# 4:3 encoding
LoadPlugin("C:\Program Files\The FilmMachine\VSFilter.dll")
AviSource("D:\Temp\Download\Vids\Akira Kurosawa\Ran\Ran CD 1\Ran CD1.avi", false)++AviSource("D:\Temp\Download\Vids\Akira Kurosawa\Ran\Ran CD 2\Ran CD2.avi", false)
ConvertToYUY2()
FadeIn(50)
Lanczos4Resize(720,428,0.0,0.6)
AddBorders(0,74,0,74)
TextSub("C:\Program Files\The FilmMachine\Output\TFM_Subtitle_File.ssa")
AssumeFPS(25,1,False)
TFM lets you edit the scripts before audio encoding begins so I just remove FadeIn(50) and ,0.0,0.6 from the resize line.
After audio encoding you can stop the video encoding and load the script into CCE manually if you like, or just let TFM 1 click it to a burnt DVD with great results.
But I prefer to output the Elementary streams and mux/author with TMPGEnc Plus/Tsunami DVD Author checking sync along the way.
I suggest using TFM v1.5.0.18beta because the later versions use multiple AVS scripts instead of joining the avi's together in the one script like above. -
Originally Posted by videotape74
It supports almost every format, though not complex formatting.
Tools/Join Subtitles.
You list the corresponding sub and movie files and it recalculates the times to create a continuous subtitle file.
Then you can load this in Avisynth:
clip 1 ++ clip 2
TextSub("subs.srt")
(Or whatever format you use for subs).
Or if your authoring app supports it, make selectable subs separately from the new subtitle file.
Similar Threads
-
extracting timecodes from hardcoded subs
By quzma in forum SubtitleReplies: 0Last Post: 2nd Jan 2010, 15:26 -
Directly ripping hardcoded subs on DivX/AVI from DVD
By drstupid in forum SubtitleReplies: 2Last Post: 4th Jan 2008, 15:51 -
DVD to x264/MP4 with hardcoded subs?
By FallenAngelII in forum SubtitleReplies: 2Last Post: 9th Aug 2007, 15:03 -
What Tool: Type in subs while viewing subs from hardcoded video
By kpic in forum SubtitleReplies: 3Last Post: 6th Jun 2007, 19:29 -
DVD to iPOD-compatible MP4 with hardcoded subs...
By FallenAngelII in forum SubtitleReplies: 6Last Post: 21st May 2007, 15:00