[FFmpeg-cvslog] doc/muxers: fix hlsenc options examples error

Steven Liu git at videolan.org
Thu Sep 29 02:06:29 EEST 2016


ffmpeg | branch: master | Steven Liu <lingjiujianke at gmail.com> | Wed Sep 28 18:12:38 2016 +0800| [95f2dcafe1895f67803afcb8cce33425e818639f] | committer: Lou Logan

doc/muxers: fix hlsenc options examples error

Reviewed-by: Michael Niedermayer <michael at niedermayer.cc>
Reviewed-by: Moritz Barsnick <barsnick at gmx.net>
Signed-off-by: Steven Liu <lingjiujianke at gmail.com>
Signed-off-by: Lou Logan <lou at lrcd.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=95f2dcafe1895f67803afcb8cce33425e818639f
---

 doc/muxers.texi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/muxers.texi b/doc/muxers.texi
index c8a056f..2c937c7 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -426,7 +426,7 @@ specified.
 Set the segment filename. Unless @code{hls_flags single_file} is set,
 @var{filename} is used as a string format with the segment number:
 @example
-ffmpeg in.nut -hls_segment_filename 'file%03d.ts' out.m3u8
+ffmpeg -i in.nut -hls_segment_filename 'file%03d.ts' out.m3u8
 @end example
 This example will produce the playlist, @file{out.m3u8}, and segment files:
 @file{file000.ts}, @file{file001.ts}, @file{file002.ts}, etc.
@@ -435,7 +435,7 @@ This example will produce the playlist, @file{out.m3u8}, and segment files:
 Use strftime on @var{filename} to expand the segment filename with localtime.
 The segment number (%d) is not available in this mode.
 @example
-ffmpeg in.nut -use_localtime 1 -hls_segment_filename 'file-%Y%m%d-%s.ts' out.m3u8
+ffmpeg -i in.nut -use_localtime 1 -hls_segment_filename 'file-%Y%m%d-%s.ts' out.m3u8
 @end example
 This example will produce the playlist, @file{out.m3u8}, and segment files:
 @file{file-20160215-1455569023.ts}, @file{file-20160215-1455569024.ts}, etc.
@@ -444,7 +444,7 @@ This example will produce the playlist, @file{out.m3u8}, and segment files:
 Used together with -use_localtime, it will create up to one subdirectory which
 is expanded in @var{filename}.
 @example
-ffmpeg in.nut -use_localtime 1 -use_localtime_mkdir 1 -hls_segment_filename '%Y%m%d/file-%Y%m%d-%s.ts' out.m3u8
+ffmpeg -i in.nut -use_localtime 1 -use_localtime_mkdir 1 -hls_segment_filename '%Y%m%d/file-%Y%m%d-%s.ts' out.m3u8
 @end example
 This example will create a directory 201560215 (if it does not exist), and then
 produce the playlist, @file{out.m3u8}, and segment files:



More information about the ffmpeg-cvslog mailing list