tldr/pages/common/handbrakecli.md

29 lines
1.0 KiB
Markdown
Raw Normal View History

# handbrakecli
2014-05-30 20:09:29 +01:00
> Command-line interface to the HandBrake video conversion and DVD ripping tool.
> More information: <https://handbrake.fr/>.
2014-05-30 20:09:29 +01:00
- Convert a video file to MKV (AAC 160kbit audio and x264 CRF20 video):
2014-05-30 20:09:29 +01:00
`handbrakecli --input {{input.avi}} --output {{output.mkv}} --encoder x264 --quality 20 --ab 160`
2014-05-30 20:09:29 +01:00
- Resize a video file to 320x240:
2014-05-30 20:09:29 +01:00
`handbrakecli --input {{input.mp4}} --output {{output.mp4}} --width 320 --height 240`
2014-05-30 20:09:29 +01:00
- List available presets:
2014-05-30 20:09:29 +01:00
`handbrakecli --preset-list`
2014-05-30 20:09:29 +01:00
- Convert an AVI video to MP4 using the Android preset:
2014-05-30 20:09:29 +01:00
`handbrakecli --preset="Android" --input {{input.ext}} --output {{output.mp4}}`
- Print the content of a DVD, getting the CSS keys in the process:
`handbrakecli --input {{/dev/sr0}} --title 0`
- Rip the first track of a DVD in the specified device. Audiotracks and subtitle languages are specified as lists:
`handbrakecli --input {{/dev/sr0}} --title 1 --output {{out.mkv}} --format av_mkv --encoder x264 --subtitle {{1,4,5}} --audio {{1,2}} --aencoder copy --quality {{23}}`