Navigation Menu

Skip to content

Commit

Permalink
update README, fixes #79 and addresses #80
Browse files Browse the repository at this point in the history
  • Loading branch information
slhck committed Jul 9, 2018
1 parent 69ee1e3 commit 2f6fe23
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.md
Expand Up @@ -52,6 +52,10 @@ Normalize a number of videos in the current folder and write them to a folder ca

ffmpeg-normalize *.mkv -c:a aac -b:a 192k

For Windows, the above would be written as a loop:

for %%f in ("*.mkv") do ffmpeg-normalize "%%f" -c:a aac -b:a 192k

Normalize an MP3 file and write an MP3 file (you have to explicitly specify the encoder):

ffmpeg-normalize input.mp3 -c:a libmp3lame -b:a 320k -o output.mp3
Expand Down Expand Up @@ -82,7 +86,7 @@ File Input/output:
Will be applied per input file.

If no output file name is specified for an input file, the output files
will be written to the default output folder with the name `<input>.wav`.
will be written to the default output folder with the name `<input>.<ext>`, where `<ext>` is the output extension (see `-ext` option).

- `-of OUTPUT_FOLDER, --output-folder OUTPUT_FOLDER`: Output folder (default: `normalized`)

Expand Down
3 changes: 2 additions & 1 deletion ffmpeg_normalize/__main__.py
Expand Up @@ -47,7 +47,8 @@ def create_parser():
Output file names. Will be applied per input file.
If no output file name is specified for an input file, the output files
will be written to the default output folder with the name `<input>.wav`.
will be written to the default output folder with the name `<input>.<ext>`,
where `<ext>` is the output extension (see `-ext` option).
""")
)
group_io.add_argument(
Expand Down

0 comments on commit 2f6fe23

Please sign in to comment.