From 7fe2856fd99fb9211634a3fbf611fb8c04232396 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Tue, 12 Apr 2011 18:11:12 +0300 Subject: OSD: support displaying fractional part of current position Add option -osd-fractions which enables display of fractional seconds when showing the current playback time on OSD. Based on a patch from Christian but with several modifications. --- DOCS/man/en/mplayer.1 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'DOCS/man/en/mplayer.1') diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1 index 91ae431846..75671c69ec 100644 --- a/DOCS/man/en/mplayer.1 +++ b/DOCS/man/en/mplayer.1 @@ -2298,6 +2298,23 @@ Turns off automatic subtitle file loading. Set the duration of the OSD messages in ms (default: 1000). . .TP +.B \-osd\-fractions <0\-2> +Set how fractions of seconds of the current timestamp are printed on the OSD: +.PD 0 +.RSs +.IPs 0 +Do not display fractions (default). +.IPs 1 +Show the first two decimals. +.IPs 2 +Show approximate frame count within current second. +This frame count is not accurate but only an approximation. +For variable fps, the approximation is known to be far off the correct frame +count. +.RE +.PD 1 +. +.TP .B \-osdlevel <0\-3> Specifies which mode the OSD should start in. .PD 0 -- cgit v1.2.3 From cb61c0f2d4c7a7deb84ed4db6a41c2c6bdd1a055 Mon Sep 17 00:00:00 2001 From: cehoyos Date: Wed, 9 Mar 2011 23:03:54 +0000 Subject: options: add -gamma (was only accessible from slave mode before) Patch by Kevin DeKorte, kdekorte at gmail git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33064 b3059339-0415-0410-9bf9-f77b7e298cf2 --- DOCS/man/en/mplayer.1 | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'DOCS/man/en/mplayer.1') diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1 index 75671c69ec..206a46b4fa 100644 --- a/DOCS/man/en/mplayer.1 +++ b/DOCS/man/en/mplayer.1 @@ -3078,6 +3078,11 @@ Fixes fullscreen switching on OpenBox 1.x. .PD 1 . .TP +.B \-gamma <\-100\-100> +Adjust the gamma of the video signal (default: 0). +Not supported by all video output drivers. +. +.TP .B \-geometry x[%][:y[%]] or [WxH][+-x+-y] Adjust where the output is on the screen initially. The x and y specifications are in pixels measured from the top-left of the -- cgit v1.2.3 From c99d8fc8981d13203c2bbf9c12b7720cd8632ae1 Mon Sep 17 00:00:00 2001 From: cehoyos Date: Thu, 17 Mar 2011 08:58:49 +0000 Subject: stream: http: Allow setting custom http header Patch by Nikolay Nikolaev, nicknickolaev yahoo com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33082 b3059339-0415-0410-9bf9-f77b7e298cf2 --- DOCS/man/en/mplayer.1 | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'DOCS/man/en/mplayer.1') diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1 index 206a46b4fa..53a27b51e4 100644 --- a/DOCS/man/en/mplayer.1 +++ b/DOCS/man/en/mplayer.1 @@ -1485,6 +1485,35 @@ Can be slow especially when seeking backwards since it has to rewind to the beginning to find an exact frame position. . .TP +.B \-http-header-fields +Set custom HTTP fields when accessing HTTP stream. +.sp 1 +.I EXAMPLE: +.PD 0 +.RSs +.IPs +mplayer \-http\-header\-fields 'Field1: value1','Field2: value2' http://localhost:1234 +.br +Will generate HTTP request: +.RSss +.br +GET / HTTP/1.0 +.br +Host: localhost:1234 +.br +User-Agent: MPlayer +.br +Icy-MetaData: 1 +.br +Field1: value1 +.br +Field2: value2 +.br +Connection: close +.REss +.RE +. +.TP .B \-idx (also see \-forceidx) Rebuilds index of files if no index was found, allowing seeking. Useful with broken/\:incomplete downloads, or badly created files. -- cgit v1.2.3