Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shannah/handbrake-watcher
CLI tool to watch folders and convert media files using Handbrake
https://github.com/shannah/handbrake-watcher
Last synced: about 1 month ago
JSON representation
CLI tool to watch folders and convert media files using Handbrake
- Host: GitHub
- URL: https://github.com/shannah/handbrake-watcher
- Owner: shannah
- Created: 2017-03-23T01:09:38.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-08-08T16:47:54.000Z (over 1 year ago)
- Last Synced: 2024-09-16T23:34:55.177Z (3 months ago)
- Language: Java
- Homepage:
- Size: 43 KB
- Stars: 24
- Watchers: 6
- Forks: 9
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Handbrake Watcher
Created by [Steve Hannah](http://www.sjhannah.com)## Synopsis
Handbrake Watcher is a command line tool that monitors a
folder and all of its subfolders for media files with a
designated extension (default .mkv) and transcodes them using
the HandbrakeCLI command-line tool into a different codec
(default mp4 with the 'High Profile').## Installation
**Windows**
You will first need to install a package manager called npm if you do not have it already. [Download](https://www.npmjs.com/get-npm)
Once npm is installed on your computer, open a command prompt and run the following command:
~~~~
> npm install -g handbrake-watcher
~~~~Once npm has installed Handbrake Watcher, you need to download the command line interface for Handbrake. [Download](https://handbrake.fr/downloads2.php)
Save the executable file in the directory where you will be running the Handbrake Watcher.**Mac/Linux**
You will first need to install a package manager called npm if you do not have it already. [Download](https://www.npmjs.com/get-npm)
~~~~
$ sudo npm install -g handbrake-watcher
~~~~
Once npm has installed Handbrake Watcher, you need to download the command line interface for Handbrake. [Download](https://handbrake.fr/downloads2.php)
On Mac, run the .dmg file and move the executable file, named HandbrakeCLI, to where you will be running the Handbrake Watcher.## Usage:
Open a terminal window and navigate to the directory you wish
to watch. First create a 'handbrake.properties' file.
Paste the contents as shown below.~~~~
source.extension=mp4 mkv
destination.extension=avi
handbrake.options.preset=Fast 1080p30
~~~~This will look for any .mp4 or .mkv file in the directory you are in and Handbrake the files into AVI format.
Save and quit the file, then run:~~~~
$ handbrake-watcher
~~~~This will start the daemon, which will scan the entire directory
and subdirectories every 5 minutes. When it is finished
converting a file, it will delete the original. If it sees that a file was recently
modified, it will not start executing Handbrake on the file until the file has not
been modified in a long time.### Custom Configuration Options:
You can customize the operation of the watcher by placing a
config file named 'handbrake.properties' in the directory that
is being watched. Properties may also be overridden on the command line using `-Dpropname=propvalue`If you are passing in properties through the command line and they are giving error messages or not applying, then put them into the 'handbrake.properties' file as shown in the Usage section.
The following configuration options are supported:
* `source.extension` - The 'source' extension of files to look for. Default is mkv. Multiple extensions can be separated by spaces.
* `destination.extension` - The extension used for converted files. Default is mp4. E.g. This would convert a file named *myvideo.mkv* into a file named *myvideo.mp4* in the same directory.
* `destination.dir` - Optional destination directory for converted files. Default is the same directory as the source file. Use the `${src.dir}` placeholder to specify the path to the source file's directory. E.g. To output to a subdirectory named "handbrake-converted", use `destination.dir=${src.dir}/handbrake-converted`.
* `handbrakecli` - The path to the HandbrakeCLI binary. If you have this binary in your path already, then the handbrake-watcher will use that one by default.
* `handbrake.flags` - The flags to use for the handbrake conversion. Only provide flags that don't require a value. E.g. --all-audio. Separate flags by spaces. For a full list of HandbrakeCLI flags, see the [HandBrakeCLI documentation](https://handbrake.fr/docs/en/latest/cli/cli-guide.html)
* `handbrake.options.` - Specify a particular handbrake command line option with value. E.g. handbrake.options.preset=High Profile is akin to providing the command-line flag --preset='High Profile' to HandbrakeCLI.
* `delete_original` - Whether to delete the original file upon successful conversion. Values: `true`|`false` . Default: `true`An example of a 'handbrake.properties' file is:
~~~~
source.extension=mp4 mkv
destination.extension=avi
handbrake.options.preset=Fast 1080p30
~~~~### Ignoring Directories
You can tell handbrake-watcher to ignore directories by adding an empty file named ".handbrake-ignore" inside the directory you wish to ignore.