File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed
Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change 1- # ffmpeg-loudnorm-helper
1+ # ffmpeg-loudnorm-helper
22
33[ ![ License] ( https://img.shields.io/badge/license-GPLv3-blue.svg )] ( https://github.com/Indiscipline/ffmpeg-loudnorm-helper/blob/master/LICENSE.md )
44
@@ -11,11 +11,18 @@ Developed using the wonderful [Clap](https://github.com/kbknapp/clap-rs) crate.
1111
1212
1313## Usage
14- ffmpeg-loudnorm-helper is designed to work using your shell's command substitution capability. Bash example:
15- ``` ffmpeg -i input.mov -c:v copy -c:a libopus $(ffmpeg-lh input.mov) normalized.mkv ```
14+ ffmpeg-loudnorm-helper is designed to work using your shell's command substitution capability.
15+
16+ Bash example:
17+ ```
18+ ffmpeg -i input.mov -c:v copy -c:a libopus $(ffmpeg-lh input.mov) normalized.mkv
19+ ```
20+
1621Windows CMD:
17- ``` for /f \"tokens=*\" %i in ('ffmpeg-lh input.mov') do ffmpeg -i input.mov -c:v copy -c:a libopus %i normalized.mkv ```
18-
22+ ```
23+ for /f "tokens=*" %i in ('ffmpeg-lh input.mov') do ffmpeg -i input.mov -c:v copy -c:a libopus %i normalized.mkv
24+ ```
25+
1926Full help available on ` --help ` switch.
2027
2128
You can’t perform that action at this time.
0 commit comments