From 9aa206a90efcb6c2f21e460a6c5fcfdcc3b9f841 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 15 Sep 2013 19:07:35 +0200 Subject: screenshot: change %w format to be more like %t Instead of containing a format string within %w{...}, simply allow %w to specify one item of a time format string. This is simpler, more like other format specifiers (%t), and probably easier to use too. --- DOCS/man/en/options.rst | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) (limited to 'DOCS') diff --git a/DOCS/man/en/options.rst b/DOCS/man/en/options.rst index 8ed9ba8066..1c07403ea7 100644 --- a/DOCS/man/en/options.rst +++ b/DOCS/man/en/options.rst @@ -1880,27 +1880,26 @@ numbers would be more intuitive, but are not easily implementable because container formats usually use time stamps for identifying frames.) - ``%w{X}`` - Specify the current playback time using the format string ``X``. The - nested time format string is contained within ``{`` and ``}``. - ``%p`` is like ``%w{%H:%M:%S}``, and ``%P`` is like ``%w{%H:%M:%S.%T}``. + ``%wX`` + Specify the current playback time using the format string ``X``. + ``%p`` is like ``%wH:%wM:%wS``, and ``%P`` is like ``%wH:%wM:%wS.%wT``. Valid format specifiers: - ``%H`` + ``%wH`` hour (padded with 0 to two digits) - ``%h`` + ``%wh`` hour (not padded) - ``%M`` + ``%wM`` minutes (00-59) - ``%m`` - total minutes (includes hours, unlike ``%M``) - ``%S`` + ``%wm`` + total minutes (includes hours, unlike ``%wM``) + ``%wS`` seconds (00-59) - ``%s`` + ``%ws`` total seconds (includes hours and minutes) - ``%f`` - like ``%s``, but as float - ``%T`` + ``%wf`` + like ``%ws``, but as float + ``%wT`` milliseconds (000-999) ``%tX`` -- cgit v1.2.3