From 9b651ac42e9127737e612c762645865b5d70555a Mon Sep 17 00:00:00 2001 From: Werner Robitza Date: Sun, 15 Apr 2018 21:25:01 +0200 Subject: [PATCH] update documentation --- HISTORY.md | 5 +++++ README.md | 4 +++- ffmpeg_normalize/__main__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 7b61f9b..44eea47 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,10 @@ # History +## next + +- Progress bar for files and streams +- Minor documentation fixes + ## 1.2.3 (2018-04-11) - Fix problems with metadata disabling, also allow to disable chapters diff --git a/README.md b/README.md index e834ffc..c1249aa 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ File Input/output: This folder will be used for input files that have no explicit output name specified. -File Input/Output: +General: - `-f, --force`: Force overwrite existing files @@ -96,6 +96,8 @@ File Input/Output: - `-n, --dry-run`: Do not run normalization, only print what would be done +- `-pr`, `--progress`: Show progress bar for files and streams + - `--version`: Print version and exit Normalization: diff --git a/ffmpeg_normalize/__main__.py b/ffmpeg_normalize/__main__.py index c71b757..48b3b7a 100644 --- a/ffmpeg_normalize/__main__.py +++ b/ffmpeg_normalize/__main__.py @@ -86,7 +86,7 @@ def create_parser(): group_general.add_argument( '-pr', '--progress', action='store_true', - help="Show progress bar" + help="Show progress bar for files and streams" ) group_general.add_argument( '--version',