Mercurial > mplayer.hg
annotate DOCS/tech/subcp.txt @ 34134:1c4302df9dcf
Remove unused code.
After the changes in r33657 there is no longer a "MPlayer Fullscreen"
window for the directx vo driver, hence this code will never be executed.
author | ib |
---|---|
date | Thu, 20 Oct 2011 12:53:27 +0000 |
parents | 0ad2da052b2e |
children |
rev | line source |
---|---|
6006 | 1 Ascii Subtitle / Font CODEPAGEs |
2 =============================== | |
3 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
6006
diff
changeset
|
4 The subtitle encoding issue seems a bit confusing, so I'll try to |
6006 | 5 summarize it here. |
6 | |
7 There are 2 approaches: | |
8 | |
9 1. (preferred) You can generate Unicode subtitles with: | |
30990 | 10 subfont --unicode <signle-byte encoding known by iconv> ... |
6006 | 11 or |
30990 | 12 subfont --unicode <path to custom encoding file> ... |
13 (this custom encoding file could list all iso-8859-* characters to create | |
6006 | 14 single font file for common encodings) |
15 | |
16 and then run mplayer this way (-subcp and -utf8 expect Unicode font!): | |
30990 | 17 mplayer -subcp <any encoding known by iconv> ... |
6006 | 18 or |
30990 | 19 mplayer -utf8 ... |
6006 | 20 |
21 2. (current) Generate subtitles for some specific encoding with: | |
30990 | 22 subfont <signle-byte encoding known by iconv> ... |
6006 | 23 or |
30990 | 24 subfont <path to custom signle-byte or EUC encoding file> ... |
6006 | 25 |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
6006
diff
changeset
|
26 and then run mplayer without any encoding options for signle-byte |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
6006
diff
changeset
|
27 encodings, or with -unicode option for EUC (and the like) encodings |
6006 | 28 (which is only partially implemented in mplayer). |
29 | |
30 AFAIK, CJK encodings: EUC-*, BIG5 and GB2312 work more or less this way: | |
31 - 0x8e (SINGLE-SHIFT TWO, SS2) begins a 2-byte character, | |
32 - 0x8f (SINGLE-SHIFT THREE, SS3) begins a 3-byte character, | |
33 - 0xa0-0xff begin 2-byte characters, | |
34 - other characters are single-byte. | |
35 | |
36 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
6006
diff
changeset
|
37 I tested charmap2enc script only with /usr/share/i18n/charmaps/EUC-KR.gz |
6006 | 38 (on RedHat). It wasn't intended to be perfect. |
39 | |
40 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
6006
diff
changeset
|
41 -- |
6006 | 42 Artur Zaprzala |