Bit Goblin video transcoder
Go to file
Gregory Ballantine 12f81cb014
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
Version bump to v0.3.10
2023-03-24 11:09:20 -04:00
src Changed how the input and output files get added to the command array to better handle spaces in file names 2023-02-18 22:49:18 -05:00
.gitignore Updated log4j config to output to both a log file and console; added local logs to .gitignore since we don't need to sync logs 2022-05-06 15:33:24 -04:00
.woodpecker.yml Updated woodpecker 2023-01-25 11:54:31 -05:00
LICENSE Created a Java w/ Maven project structure; added a simple directory creation and executes an FFMPEG command to transcode videos 2022-04-30 20:12:32 -04:00
pom.xml Version bump to v0.3.10 2023-03-24 11:09:20 -04:00
README.md Updated documentation to use 17 2023-01-25 00:57:06 -05:00

Dragoon

The Bit Goblin video transcoder.

Building

Currently this project is targeting Java 17 LTS and uses Maven to manage the software lifecycle. Thus, you must have a Java 17 JDK and Maven installed to build this project.

Ubuntu

sudo apt install openjdk-17-jdk maven

Red Hat/Almalinux

sudo dnf install java-17-openjdk-devel maven

Actually Building

Now that the needed tools are installed, you should be able to build this project. To build a JAR file with it's dependencies included:

mvn clean compile assembly:single

Then you can run the transcoder:

java -jar target/Dragon-VERSION-jar-with-dependencies.jar

Configuration

If you were paying attention to Dragoon's output, you would have noticed that it failed with a complaint about not finding a configuration file. The location might move in the future or even be configurable, but for now you need to have a TOML file located at ~/.config/dragoon.toml with at minimum the following contents:

# This example transcodes footage to DNxHD 1080p60 for use in video editors like DaVinci Resolve.
[transcoder]
repo_path = '~/videos' # location of the videos to transcode
video_format = 'mov' # video container format
video_codec = 'dnxhd' # video codec to use
video_parameters = 'scale=1920x1080,fps=60,format=yuv422p' # video extra format parameters flag - this will be broken later into separate attributes
video_profile = 'dnxhr_hq' # DNxHD has multiple presets for various video qualities
audio_codec = 'pcm_s16le' # audio codec to use