Matroska file format detected.
VIDEO: [avc1] 864x480 24bpp 23.976 fps 0.0 kbps ( 0.0 kbyte/s)
SUB: Could not determine file format
Cannot load subtitles: file.ass
The remedy:
- Convert the ASS file to UTF-8 (or whatever encoding you are comfortable with). I used iconv:
iconv -f utf16 -t utf8 < file.ass > result.ass
- Play it by using the "
-utf8
" switch of mplayer:mplayer -ass -utf8 file.mkv
. If the ASS contains special characters (such as CJK chars), use a good font by "-font /usr/share/font/cjk.ttf
"
2 comments:
<:3~
Thanks.
To hardcode .ass, .srt, .sub to video, you may try iDealshar VideoGo with this easy guide at http://www.idealshare.net/video-converter/add-ass-to-video-avi-mp4-mkv-vob.html
Post a Comment