Moved build files from src/build to ./build; cleaned up pom.xml a little
This commit is contained in:
9
build/deb/etc/dragoon/config.example.toml
Normal file
9
build/deb/etc/dragoon/config.example.toml
Normal file
@@ -0,0 +1,9 @@
|
||||
# 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
|
||||
interval = 30
|
||||
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
|
||||
11
build/deb/etc/systemd/system/dragoon.service
Normal file
11
build/deb/etc/systemd/system/dragoon.service
Normal file
@@ -0,0 +1,11 @@
|
||||
[Unit]
|
||||
Description=Dragoon video transcoder service
|
||||
|
||||
[Service]
|
||||
User=dragoon
|
||||
Group=dragoon
|
||||
ExecStart=/usr/bin/java -Dlog4j.configurationFile=/opt/dragoon/log4j2.xml -jar '/opt/dragoon/dragoon.jar' -c '/etc/dragoon/config.toml'
|
||||
SuccessExitStatus=143
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
Reference in New Issue
Block a user