Mercurial > mplayer.hg
annotate DOCS/German/CODECS @ 1418:94a564660308
removed email
author | arpi |
---|---|
date | Sun, 29 Jul 2001 16:50:07 +0000 |
parents | 09d7ca3f4dc9 |
children | 8409ad08ae31 |
rev | line source |
---|---|
1292
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
1 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
2 Status der Codecs-Unterstützung: |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
3 ================================ |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
4 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
5 Siehe http://mplayer.sourceforge.net/DOCS/codecs.html |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
6 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
7 Wenn dein Codec nicht aufgelistet ist, hilf uns ihn zu unterstützen: |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
8 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
9 Exportieren des Codecs von Win32 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
10 ================================ |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
11 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
12 1. VfW |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
13 ~~~~~~ |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
14 VfW (Video für Windows) ist die alte Video-Schnittstelle von Windows. |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
15 Die Codecs haben die .DLL oder (selten) die .DRV Erweiterung. |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
16 Wenn MPlayer mit deinem AVI fehlschlägt: |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
17 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
18 UNKNOWN video codec: HFYU (0x55594648) |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
19 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
20 Bedeutet dies, dass dein AVI mit dem Codec kodiert wurde, der den fourcc |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
21 HFYU hat (HFYU = HuffYUV Codec, DIV3 = DivX Low Motion, usw...). Jetzt, wo wir |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
22 das wissen, müssen wir herausfinden, welche DLL Windows läd, um diese Datei |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
23 abzuspielen. In unserem Fall enthält die System.ini (unter anderem): |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
24 VIDC.HFYU=huffyuv.dll |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
25 Also brauchen wir die Datei huffyuv.dll. Bemerke, dass Audio-Codecs mit dem |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
26 MSACM-Prefix angegeben werden: |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
27 msacm.l3acm=L3codeca.acm |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
28 Dies ist ein MP3 Codec. |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
29 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
30 So, nun haben wir alles, was wir benötigen (fourcc, Codec Datei, Beispiel AVI). |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
31 Sende deine Anfrage für Unterstützung als Mail und lade die Dateien auf diesen |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
32 FTP herauf: |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
33 ftp://thot.banki.hu/MPlayer/incoming/<Codecname>/ |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
34 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
35 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
36 2. DirectShow |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
37 ~~~~~~~~~~~~~ |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
38 DirectShow ist die neuere Video-Programmierschnittstelle, welche noch |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
39 schlimmer als ihr Vorgänger ist. |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
40 Es ist schwieriger mit DirectShow, denn |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
41 - die system.ini enthält nicht die Informationen die man braucht, stattdessen |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
42 sind diese in der Registrierungsdatenbank gespeichert :( |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
43 - man braucht die GUID des Codecs. |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
44 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
45 Also durchsuchen wir die gottverdammte Registrierung... |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
46 - Starte 'regedit' |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
47 - Drücke STRG-F, deaktiviere die ersten beiden Anhackfelder und aktiviere das |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
48 dritte. Nun gib den fourcc des Codecs ein (z.B.: TM20). |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
49 - Du solltest ein Feld sehen, welches den Pfad und Dateinamen enthält |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
50 (z.B.: C:\WINDOWS\SYSTEM\TM20DEC.AX) |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
51 - Jetzt da wir die Datei haben, brauchen wir die GUID. Versuche erneut zu |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
52 suchen, aber nun nach dem Codec-Namen, nicht nach dem fourcc. Der Codec-Name |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
53 kann bei der Wiedergabe mit dem Windows Media Player herausgefunden werden, |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
54 indem man unter Datei/Eigenschaften/Erweitert nachschaut. |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
55 Falls nicht, kein Glück ;) Versuche zu raten. |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
56 (suche zum Beispiel nach: TrueMotion) |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
57 - wenn du es (in der Registrierung) gefunden hast, sollte ein FriendlyName |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
58 Feld und ein CLSID Feld auftauchen. Schreibe 16 Byte der CLSID auf, dies ist |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
59 die von uns benötigte GUID. |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
60 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
61 HINWEIS : Wenn die Suche fehlschlägt, versuche alle Anhackboxen zu aktivieren... |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
62 du hast möglicherweise falsche Ergebnisse, aber vielleicht auch die |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
63 richtigen... |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
64 HINWEIS : Vergiss diesen M$ Scheiß. |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
65 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
66 So, nun haben wir alle Informationen, die wir benötigen (fourcc, GUID, Codec |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
67 Datei, Beispiel AVI). Sende deine Anfrage um Unterstützung als Mail und lade |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
68 die Dateien auf den FTP: |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
69 ftp://thot.banki.hu/MPlayer/incoming/<Codecname>/ |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
70 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
71 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
72 Gabucino & A'rpi |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
73 |
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
74 -- |
1303 | 75 Übersetzung: Johannes Feigl <johannes.feigl at mcse.at> und |
1292
f20f1851f193
First few german docs by JAF <jaf.corporation at gmx.at> and me.
atmos4
parents:
diff
changeset
|
76 Felix Bünemann <atmosfear at users.sourceforge.net> |