I want to watch movies on my tv directly from my usb with subs. But I only know how to play them on my PS3 with DivX with AVIAddXSubs. But can I hardcode to MPEG-TS and MPEG-4? Thank you.
+ Reply to Thread
Results 1 to 8 of 8
-
Last edited by LoveMyslf; 1st Jul 2010 at 19:20.
-
To hard code subs you have to encode the video. You can use any video converter that can handle your formats and that lets you use or edit the AviSynth script(.avs file.) For example you can use Quick AVI Creator
After it gets done with demux and audio encode(if any) it will pop up AvsP editor so you can alter the AviSynth script. If you have idx/sub graphical subtitles you can burn them in with 2 lines:
LoadPlugin("VSFilter.dll")
VobSub("x:\folder\movie")
In the example the subs should be in x:\folder and be named "movie.idx" and "movie.sub"
Usually AviSynth can find VSFilter.dll but if you have it in some bizarre location put the entire path to the file.http://milesaheadsoftware.org/
Fully enabled freeware for Windows PCs. -
The problem is that my tv only can handle MPEG-TS and MPEG-4. Not AVI...
Last edited by LoveMyslf; 2nd Jul 2010 at 05:39.
-
You can also use HCenc to encode your video using an avs file.
Depending on your source video and subtitle file, your avs script would look something like this (this assumes that needed plugins are in your avisynth 2.5/plugins directory):
Code:mpeg2source("video.d2v") textsub("video.srt") # or use vobsub("video.idx") if hardsub'ing idx/sub files ripped from dvd
Command line:
Code:"path\to\hcenc.exe" -i video.avs -o video.m2v -1pass -profile best -b 4000 -maxbitrate 8000
Now you are left with a .m2v file that you can mux with the original audio file using something like tsmuxer.
You could also do basically the same thing using x264 rather than HCenc if you would rather have h.264 video rather than MPEG2. -
Never mind... I'm sorry. I used Media Player Classic which didn't read the subs... It works with VLC.
Similar Threads
-
A/V out of sync after conversion with hardcode subs
By kidlat020 in forum Video ConversionReplies: 3Last Post: 15th Mar 2011, 21:57 -
Hardcode subs on .m2ts???
By LoveMyslf in forum Video ConversionReplies: 6Last Post: 15th Sep 2010, 16:28 -
Hardcode Subs
By Gh0st Rav3r in forum SubtitleReplies: 1Last Post: 16th Oct 2009, 16:47 -
How to hardcode subs in .MKV
By CERO in forum Newbie / General discussionsReplies: 5Last Post: 2nd Aug 2009, 10:21 -
hardcode / burn the subs on the video
By greendesert in forum Video ConversionReplies: 1Last Post: 20th Jul 2009, 11:55