diff --git a/index.html b/index.html index f8d4f8f..0b0bf40 100644 --- a/index.html +++ b/index.html @@ -74,7 +74,7 @@
@@ -704,13 +705,13 @@ e.g.:ffmpeg -f concat -safe 0 -i mylist.txt -c copy output_file-i input_fileTakes in a normal file.
-c copy Use stream copy mode to re-mux instead of re-encode.
-map 0 tells FFmpeg to map all streams of the input to the output.
- -f segment Use segment muxer for generating the output.
+ -f segment Use segment muxer for generating the output.
-segment_time 60 Set duration of each segment (in seconds). This example creates segments with max. duration of 60s each.
-reset_timestamps 1 Reset timestamps of each segment to 0. Meant to ease the playback of the generated segments.
output_file-%03d.mkv
Path, name and extension of the output file.
- In order to have an incrementing number in each segment filename, FFmpeg supports printf-style syntax for a counter.
+ In order to have an incrementing number in each segment filename, FFmpeg supports printf-style syntax for a counter.
In this example, '%03d' means: 3-digits, zero-padded
Examples:
@@ -1163,7 +1164,7 @@ e.g.: ffmpeg -f concat -safe 0 -i mylist.txt -c copy output_file-show_data- adds a short “hexdump” to show_streams command output
- -print_format
- Set the output printing format (in this example “xml”; other formats include “json” and “flat”)
- See also the FFmpeg documentation on ffprobe for a full list of flags, commands, and options.
+ See also the FFmpeg documentation on ffprobe for a full list of flags, commands, and options.
@@ -1493,7 +1494,7 @@ e.g.: ffmpeg -f concat -safe 0 -i mylist.txt -c copy output_fileCalculate Loudness Levels
ffmpeg -i input_file -af loudnorm=print_format=json -f null -
This filter calculates and outputs loudness information in json about an input file (labeled input) as well as what the levels would be if loudnorm were applied in its one pass mode (labeled output). The values generated can be used as inputs for a 'second pass' of the loudnorm filter allowing more accurate loudness normalization than if it is used in a single pass.
- These instructions use the loudnorm defaults, which align well with PBS recommendations for target loudness. More information can be found at the loudnorm documentation.
+ These instructions use the loudnorm defaults, which align well with PBS recommendations for target loudness. More information can be found at the loudnorm documentation.
Information about PBS loudness standards can be found in the PBS Technical Operating Specifications document. Information about EBU loudness standards can be found in the EBU R 128 recommendation document.
- ffmpeg
- starts the command
@@ -2432,10 +2433,10 @@ foreach ($file in $inputfiles) {