Skip to content

Commit 5943e4a

Browse files
committed
Updated README.md with corrected usage examples.
1 parent 0996359 commit 5943e4a

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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+
1621
Windows 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+
1926
Full help available on `--help` switch.
2027

2128

0 commit comments

Comments
 (0)