page format: lowercase command names consistently (#1083)

This commit is contained in:
Waldir Pimenta
2016-09-22 08:03:38 +01:00
committed by GitHub
parent 5a54763c72
commit 1072483744
9 changed files with 18 additions and 18 deletions

View File

@@ -1,19 +1,19 @@
# HandBrakeCLI
# handbrakecli
> Video conversion tool.
> Command-line interface to the HandBrake video conversion tool.
- Convert a video file to MKV (AAC 160kbit audio and x264 CRF20 video):
`HandBrakeCLI -i {{input.avi}} -o {{output.mkv}} -e x264 -q 20 -B 160`
`handbrakecli -i {{input.avi}} -o {{output.mkv}} -e x264 -q 20 -B 160`
- Resize a video file to 320x240:
`HandBrakeCLI -i {{input.mp4}} -o {{output.mp4} -w 320 -l 240`
`handbrakecli -i {{input.mp4}} -o {{output.mp4} -w 320 -l 240`
- List available presets:
`HandBrakeCLI --preset-list`
`handbrakecli --preset-list`
- Convert an AVI video to MP4 using the Android preset:
`HandBrakeCLI --preset="Android" -i {{input.ext}} -o {{output.mp4}}`
`handbrakecli --preset="Android" -i {{input.ext}} -o {{output.mp4}}`