This script automates media conversion to a universal MP4 format using FFmpeg.
Fully integrates with NZBGet so that media converts automatically on post-process! SABnzbd is also supported although it does not get a WebUI config, though can still be configured using a config file!
Found a bug? Report it here!
Requires Bash, FFmpeg, and jq
docker run -it --rm \
-u <UID>:<GID> \
-v </path/to/process>:/input \
digiex/mp4 -i /input -c /input/mp4.conf
Run the following command to install the script with NZBGet in Docker!
docker create \
--name nzbget \
-p 6789:6789 \
-e PUID=<UID> \
-e PGID=<GID> \
-e TZ=<timezone> \
-v </path/to/appdata>:/config \
-v </path/to/downloads>:/downloads \
digiex/nzbget
If you prefer SABnzbd, you can get that to!
docker create \
--name sabnzbd \
-p 8080:8080 \
-p 9090:9090 \
-e PUID=<UID> \
-e PGID=<GID> \
-e TZ=<timezone> \
-v </path/to/appdata>:/config \
-v </path/to/downloads>:/downloads \
-v </path/to/incomplete-downloads>:/incomplete-downloads \
digiex/sabnzbd
Running the script once ./mp4.sh will create a mp4.conf file, You may edit
these settings to your liking. You can also specify a location to this
file (if one already exists) by using -c CONFIG or --config=CONIFG
replacing CONFIG with the path to your config file.
This project makes use of the following projects:
Useful links:
Enjoy
Content type
Image
Digest
Size
25.6 MB
Last updated
over 5 years ago
docker pull digiex/mp4