1
|
1 static char* banner_text=
|
340
|
2 "\n\n"
|
1
|
3 "MPlayer " VERSION " (C) 2000-2001 Arpad Gereoffy <arpi@esp-team.scene.hu>\n"
|
|
4 "\n";
|
|
5
|
|
6 static char* help_text=
|
|
7 "Usage: mplayer [options] [path/]name\n"
|
|
8 "\n"
|
|
9 " Options:\n"
|
|
10 " -vo <driver> select output driver (see '-vo help' for driver list)\n"
|
|
11 " -vcd <track> play video cd track from device instead of plain file\n"
|
|
12 //" -bg play in background (X11 only!)\n"
|
|
13 " -sb <bytepos> seek to byte position\n"
|
|
14 //" -ss <timepos> seek to second position (with timestamp)\n"
|
|
15 " -nosound don't play sound\n"
|
|
16 " -abs <bytes> audio buffer size (in bytes, default: measuring)\n"
|
|
17 " -delay <secs> audio delay in seconds (may be +/- float value)\n"
|
|
18 #ifdef AVI_SYNC_BPS
|
|
19 " -nobps do not use avg. byte/sec value for A-V sync (AVI)\n"
|
|
20 #else
|
|
21 " -bps use avg. byte/sec value for A-V sync (AVI)\n"
|
|
22 #endif
|
|
23 #ifdef ALSA_TIMER
|
|
24 " -noalsa disable timing code\n"
|
|
25 #else
|
|
26 " -alsa enable timing code (works better with ALSA)\n"
|
|
27 #endif
|
|
28 " -aid <id> select audio channel [MPG: 0-31 AVI: 1-99]\n"
|
|
29 " -vid <id> select video channel [MPG: 0-15 AVI: -- ]\n"
|
|
30 " -fps <value> force frame rate (if value is wrong in the header)\n"
|
|
31 " -mc <s/5f> maximum sync correction per 5 frames (in seconds)\n"
|
373
|
32 //" -afm <1-5> force audio format 1:MPEG 2:PCM 3:AC3 4:Win32 5:aLaw\n"
|
|
33 " -fs -vm -zoom fullscreen playing options (fullsc,vidmode chg,softscale)\n"
|
1
|
34 " -x <x> -y <y> scale image to <x> * <y> resolution [if scalable!]\n"
|
|
35 "\n"
|
|
36 " Keys:\n"
|
|
37 " <- or -> seek backward/forward 10 seconds\n"
|
|
38 " up or down seek backward/forward 1 minute\n"
|
|
39 " p or SPACE pause movie (press any key to continue)\n"
|
|
40 " q or ESC stop playing and quit program\n"
|
|
41 " + or - adjust audio delay by +/- 0.1 second\n"
|
373
|
42 " o toggle OSD: none / seek / seek+timer\n"
|
1
|
43 "\n";
|