An automatic video converter using HandBrake CLI to batch convert all files found in recursive mode. In other words, all videos found on a given folder, and subsequent folders, will be converted on original location while original file will be transferred to another folder for easy removal.
This is a video converter and the HandBrake GUI can be found here, which also has a HandBrake CLI.
For more information, follow this link.
Given a specific folder, all video files found with user-given extensions will be converted to a target extension also provided by the user.
The converted video file will stay in the original folder while the original file will be transferred to another folder. This has the benefit of easy removal of the original files, as well as if a file does not encode successfully the original file still exists and can be converted again.
The program also accepts a user custom command which must have placeholders to be replaced by the original file path and converted file path.
In a first use of the program, all given arguments will be saved in a external file so the user does not have to always write the same repeated command.
In the end, an output file will be created containing:
Initially, this project has the aim of reducing files size to ocupy the least amount of space in the disk and comparing between original size and converted size, but since a user can input a custom command, this can also be used just to convert a lot of files in a folder for other purposes.
Status | Feature |
---|---|
✅ | convert a lot of files in their corresponding folders |
✅ | convert files with multiple different extensions at the same time |
✅ | transfer of original files in an external folder for easy removal |
✅ | configurations will be saved in an external file |
✅ | use of an automatic basic command aimed to reduce file size |
✅ | a custom HandBrake command with placeholders can also be inserted |
✅ | output file containing converted files information and their success |
✅ | option to shutdown computer when program is done |
✅ | when duplicate files exists these are skipped. |
Any new features are very welcome! Please open an issue to make a request.
Python 3 must also be installed.
To use this project, the HandBrake command line version must be installed. This installation can be found in this link under 'Downloads->Other->Command Line Version'
You will also need the ffmpeg CLI. You can find the link here.
The HandBrake CLI can be installed by following the next commands:
sudo apt update
sudo apt install handbrake-cli
which HandBrakeCLI
pip --no-cache-dir install havc
or,
pip3 --no-cache-dir install havc
Command | Required | Description |
---|---|---|
-r | ✅ | absolute path folder to the HandBrake.exe (command line version) |
-c | ✅ | absolute path folder containing the files to convert |
-e | ✅ | multiple file extensions to find and convert |
-t | ✅ | file extension the converted file will have |
-d | ❌ | folder's name or an absolute path to the folder which will contain original files |
-cc | ❌ | custom handbrake command with placeholders (now reusable) |
--safety-question / --no-safety-question |
❌ | enable or disable the safety question |
--shutdown / --no-shutdown |
❌ | enable or disable shutting down computer when program is done |
--enable-delete / --no-enable-delete |
❌ | if disabled, original files will not be moved to an external folder. they will stay in the same folder as the converted files |
Any additional help can be provided if the following command is run:
havc --help
or,
havc -h
Example of the initial command:
havc -r "C:\path\to\Desktop" -c "C:\path\to\Desktop\folder to convert" -e mp4 mkv -t m4v
After this, the external file will be configured and then the following command becomes valid (always using the previous configurations):
havc
If any argument has to be modified just run the command with the necessary argument, for instance, if the extensions have to be modified, we simply run:
havc -e mov .avi mp4
The following links contain documentation about how to make a HandBrake command:
This project started as a simple one file script, but then I saw the opportunity to make a program more complex that could also not only help the community, but also help my development. With that said, this project was also developed for educational purposes, so any bugs, suggestions, new features, improvements, etc, don't hesitate to ask, open an issue or a pull request.