comparison help_mp-en.h @ 1972:78924572fddf

help updated
author arpi
date Wed, 26 Sep 2001 18:51:55 +0000
parents b55335dc4df8
children 5216f108cb4f
comparison
equal deleted inserted replaced
1971:7d6116e415a3 1972:78924572fddf
1 #ifdef HELP_MP_DEFINE_STATIC 1 #ifdef HELP_MP_DEFINE_STATIC
2 static char* banner_text= 2 static char* banner_text=
3 "\n\n" 3 "\n\n"
4 "MPlayer " VERSION "(C) 2000-2001 Arpad Gereoffy (see DOCS/AUTHORS)\n" 4 "MPlayer " VERSION "(C) 2000-2001 Arpad Gereoffy (see DOCS!)\n"
5 "\n"; 5 "\n";
6 6
7 static char help_text[]= 7 static char help_text[]=
8 "Usage: mplayer [options] [path/]name\n" 8 #ifdef HAVE_NEW_GUI
9 "Usage: mplayer [-gui] [options] [path/]filename\n"
10 #else
11 "Usage: mplayer [options] [path/]filename\n"
12 #endif
9 "\n" 13 "\n"
10 "Options:\n" 14 "Options:\n"
11 " -vo <drv[:dev]> select video output driver & device (see '-vo help' for list)\n" 15 " -vo <drv[:dev]> select video output driver & device (see '-vo help' for list)\n"
12 " -ao <drv[:dev]> select audio output driver & device (see '-ao help' for list)\n" 16 " -ao <drv[:dev]> select audio output driver & device (see '-ao help' for list)\n"
13 " -vcd <trackno> play VCD (video cd) track from device instead of plain file\n" 17 " -vcd <trackno> play VCD (video cd) track from device instead of plain file\n"
14 #ifdef HAVE_LIBCSS 18 #ifdef HAVE_LIBCSS
15 " -dvdauth <dev> specify DVD device for authentication (for encrypted discs)\n" 19 " -dvdauth <dev> specify DVD device for authentication (for encrypted discs)\n"
16 #endif 20 #endif
21 #ifdef USE_DVDREAD
22 " -dvd <titleno> play DVD title/track from device instead of plain file\n"
23 #endif
17 " -ss <timepos> seek to given (seconds or hh:mm:ss) position\n" 24 " -ss <timepos> seek to given (seconds or hh:mm:ss) position\n"
18 " -nosound don't play sound\n" 25 " -nosound don't play sound\n"
19 #ifdef USE_FAKE_MONO 26 #ifdef USE_FAKE_MONO
20 " -stereo select MPEG1 stereo output (0:stereo 1:left 2:right)\n" 27 " -stereo <mode> select MPEG1 stereo output (0:stereo 1:left 2:right)\n"
21 #endif 28 #endif
22 " -fs -vm -zoom fullscreen playing options (fullscr,vidmode chg,softw.scale)\n" 29 " -fs -vm -zoom fullscreen playing options (fullscr,vidmode chg,softw.scale)\n"
23 " -x <x> -y <y> scale image to <x> * <y> resolution [if -vo driver supports!]\n" 30 " -x <x> -y <y> scale image to <x> * <y> resolution [if -vo driver supports!]\n"
24 " -sub <file> specify subtitle file to use (see also -subfps, -subdelay)\n" 31 " -sub <file> specify subtitle file to use (see also -subfps, -subdelay)\n"
25 " -vid x -aid y options to select video (x) and audio (y) stream to play\n" 32 " -vid x -aid y options to select video (x) and audio (y) stream to play\n"
26 " -fps x -srate y options to change video (x fps) and audio (y Hz) rate\n" 33 " -fps x -srate y options to change video (x fps) and audio (y Hz) rate\n"
27 " -pp <quality> enable postprocessing filter (0-4 for DivX, 0-63 for mpegs)\n" 34 " -pp <quality> enable postprocessing filter (0-4 for DivX, 0-63 for mpegs)\n"
28 " -bps use alternative A-V sync method for AVI files (may help!)\n" 35 " -nobps use alternative A-V sync method for AVI files (may help!)\n"
29 " -framedrop enable frame-dropping (for slow machines)\n" 36 " -framedrop enable frame-dropping (for slow machines)\n"
30 "\n" 37 "\n"
31 "Keys:\n" 38 "Keys:\n"
32 " <- or -> seek backward/forward 10 seconds\n" 39 " <- or -> seek backward/forward 10 seconds\n"
33 " up or down seek backward/forward 1 minute\n" 40 " up or down seek backward/forward 1 minute\n"
36 " + or - adjust audio delay by +/- 0.1 second\n" 43 " + or - adjust audio delay by +/- 0.1 second\n"
37 " o cycle OSD mode: none / seekbar / seekbar+timer\n" 44 " o cycle OSD mode: none / seekbar / seekbar+timer\n"
38 " * or / increase or decrease volume (press 'm' to select master/pcm)\n" 45 " * or / increase or decrease volume (press 'm' to select master/pcm)\n"
39 " z or x adjust subtitle delay by +/- 0.1 second\n" 46 " z or x adjust subtitle delay by +/- 0.1 second\n"
40 "\n" 47 "\n"
41 " * * * SEE MANPAGE FOR DETAILS, FURTHER OPTIONS AND KEYS ! * * *\n" 48 " * * * SEE MANPAGE FOR DETAILS, FURTHER (ADVANCED) OPTIONS AND KEYS ! * * *\n"
42 "\n"; 49 "\n";
43 #endif 50 #endif
44 51
45 // mplayer.c: 52 // mplayer.c:
46 53