# HG changeset patch
# User gabucino
# Date 1008351465 0
# Node ID d33dac3fcfa1b5c6438b3663c766669d47de3f5d
# Parent 2605bdacc3e916f094453ed479e029996d809d11
applied Panagiotis' patch
diff -r 2605bdacc3e9 -r d33dac3fcfa1 DOCS/Hungarian/documentation.html
--- a/DOCS/Hungarian/documentation.html Fri Dec 14 17:35:20 2001 +0000
+++ b/DOCS/Hungarian/documentation.html Fri Dec 14 17:37:45 2001 +0000
@@ -549,6 +549,9 @@
jelenleg 8 fajtát ismer fel. Hogy lásd melyek ezek, nézd meg a subreader.c
file-t, a 30. sor körül.
+A DVD feliratok használatához olvasd el a DVD
+fejezetet.
+
Az MPlayer tartalmaz egy új, MPsub nevű feliratformátumot.
A tervezés az én (Gabucino) kezem munkáját dicséri. A legfőbb újítása hogy
dinamikusan idő alapú (bár van képkocka alapú módja is). Példa (a
@@ -658,6 +661,15 @@
+Tipp : ha az MPlayer ioctl: can't sync
-szerű
+ üzenetekkel dobálózik, a tunered nem tudja a kért felbontást. Próbáld a
+ width=640:height=480
opciókkal.
+
+Tipp #2 : rosszak a színek? Ezekszerint a tunered nem tudja a képet
+ YV12 colorspace-ben grabbelni. Próbáld a YUY2, UYVY vagy végső esetben az
+ RGB32 colorspace-eket (ezutóbbit -vo sdl
-el). Ezeket a
+ outfmt=YV12
opcióval lehet megadni, lásd lent.
+
Rendelkezésre álló opciók
@@ -793,6 +805,7 @@
| fel vagy le | | hátra/előre seek, 1 percnyi |
| pgup/pgdown | | hátra/előre seek, 10 percnyi |
| p vagy SPACE | | pillanatállj, bármely billentyűre tovább |
+ | < or > | | előző / következő file a lejátszási listában |
| q vagy ESC | | lejátszás leállítasa, kilépés |
| + vagy - | | audio késleltetése +/- 0.1 másodperccel |
| / vagy * | | hangerő csökkentése/növelése |
diff -r 2605bdacc3e9 -r d33dac3fcfa1 DOCS/documentation.html
--- a/DOCS/documentation.html Fri Dec 14 17:35:20 2001 +0000
+++ b/DOCS/documentation.html Fri Dec 14 17:37:45 2001 +0000
@@ -530,6 +530,8 @@
8 kinds of subtitle can be used by the subreader code. To see what are
these subtitle formats, see subreader.c, line ~30.
+About DVD subtitles, read the DVD section.
+
MPlayer introduces a new subtitle format called MPsub.
It was designed by me (Gabucino). Basically its main feature is being
dynamically time-based (although it has frame-based mode too). Example (from
@@ -637,6 +639,15 @@
+Hint: if MPlayer prints ioctl: can't sync
or something
+ like this, your tuner can't capture the requested image size. Try using
+ width=640:height=480
options.
+
+Hint #2 : are the colors fucked up? Then your tuner can't display
+ in YV12 colorspace. Try YUY2, UYVY or if none of these works: RGB32 (this one
+ with -vo sdl
).
+ You can specify these with the outfmt=YV12
option see below.
+
Available options
@@ -767,6 +778,7 @@
| <- or -> | | seek backward/forward 10 seconds |
| up or down | | seek backward/forward 1 minute |
| pgup/pgdown | | seek backward/forward 10 minutes |
+ | < or > | | seek backward/forward in playlist |
| p or SPACE | | pause movie (press any key) |
| q or ESC | | stop playing and quit program |
| + or - | | adjust audio delay by +/- 0.1 second |
diff -r 2605bdacc3e9 -r d33dac3fcfa1 help_mp-nl.h
--- a/help_mp-nl.h Fri Dec 14 17:35:20 2001 +0000
+++ b/help_mp-nl.h Fri Dec 14 17:37:45 2001 +0000
@@ -96,9 +96,18 @@
#define MSGTR_CannotInitVO "FATAL: Kan video driver niet initialiseren!\n"
#define MSGTR_CannotInitAO "Kon audio device niet open/init -> NOSOUND\n"
#define MSGTR_StartPlaying "Start afspelen...\n"
-#define MSGTR_SystemTooSlow "\n*********************************************************************************"\
- "\n** Je systeem is te TRAAG om dit af te spelen! Probeer met -framedrop of RTFM! **"\
- "\n*********************************************************************************\n"
+#define MSGTR_SystemTooSlow "\n\n"\
+" ************************************************\n"\
+" ** Je system is te TRAAG om dit af te spelen! **\n"\
+" ************************************************\n"\
+"!!! Mogelijke oorzaken, problemen, oplossingen: \n"\
+"- Meestal: kapotte/buggy _audio_ driver. Oplossing: Probeer -ao sdl of gebruik\n"\
+" ALSA 0.5 of oss emulatie of ALSA 0.9. Lees DOCS/sound.html voor more tips!\n"\
+"- Trage video output. Probeer andere -vo driver (voor lijst: -vo help) of probeer\n"\
+" net -framedrop ! Lees DOCS/video.html voor video tuning/speedup tips.\n"\
+"- Trage CPU. Probeer geen grote DVD/DivX af te spelen op een trage CPU! Probeer -hardframedrop\n"\
+"- Kapot bestand. Probeer verschillende combinaties van: -nobps -ni -mc 0 -forceidx\n"\
+"Als geen van deze oorzaken van toepassingen zijn, lees dan DOCS/bugreports.html !\n\n"
#define MSGTR_NoGui "MPlayer werd gecompileerd ZONDER GUI ondersteuning!\n"
#define MSGTR_GuiNeedsX "MPlayer GUI heeft X11 nodig!\n"
diff -r 2605bdacc3e9 -r d33dac3fcfa1 libvo/wskeys.h
--- a/libvo/wskeys.h Fri Dec 14 17:35:20 2001 +0000
+++ b/libvo/wskeys.h Fri Dec 14 17:37:45 2001 +0000
@@ -62,6 +62,8 @@
#define wsPlus '+'
#define wsMul '*'
#define wsDiv '/'
+#define wsLess '<'
+#define wsMore '>'
#define wsUp 0x52 + 256
#define wsDown 0x54 + 256
diff -r 2605bdacc3e9 -r d33dac3fcfa1 libvo/x11_common.c
--- a/libvo/x11_common.c Fri Dec 14 17:35:20 2001 +0000
+++ b/libvo/x11_common.c Fri Dec 14 17:37:45 2001 +0000
@@ -247,6 +247,8 @@
case wsMul: mplayer_put_key('*'); break;
case wsGrayDiv:
case wsDiv: mplayer_put_key('/'); break;
+ case wsLess: mplayer_put_key('<'); break;
+ case wsMore: mplayer_put_key('>'); break;
case wsm:
case wsM: mplayer_put_key('m'); break;
case wso: