Browse code

doc/muxers: move hls_flags temp_file to after SECOND LEVEL hls example

the temp_file hls_flags describe text offset is wrong, now move it after example

Signed-off-by: Steven Liu <lq@chinaffmpeg.org>

Steven Liu authored on 2017/03/11 22:11:38
Showing 1 changed files
... ...
@@ -656,11 +656,6 @@ Makes it possible to use segment duration (calculated  in microseconds) as %%t i
656 656
 expression besides date/time values when use_localtime is on.
657 657
 To get fixed width numbers with trailing zeroes, %%0xt format is available where x is the required width.
658 658
 
659
-@item temp_file
660
-Write segment data to filename.tmp and rename to filename only once the segment is complete. A webserver
661
-serving up segments can be configured to reject requests to *.tmp to prevent access to in-progress segments
662
-before they have been added to the m3u8 playlist.
663
-
664 659
 @example
665 660
 ffmpeg -i sample.mpeg \
666 661
    -f hls -hls_time 3 -hls_list_size 5 \
... ...
@@ -670,6 +665,10 @@ ffmpeg -i sample.mpeg \
670 670
 This will produce segments like this:
671 671
 @file{segment_20170102194334_0003_00122200_0000003000000.ts}, @file{segment_20170102194334_0004_00120072_0000003000000.ts} etc.
672 672
 
673
+@item temp_file
674
+Write segment data to filename.tmp and rename to filename only once the segment is complete. A webserver
675
+serving up segments can be configured to reject requests to *.tmp to prevent access to in-progress segments
676
+before they have been added to the m3u8 playlist.
673 677
 
674 678
 @end table
675 679