From 886431d34c7bb30fa1856a38d238bb4cebb73dce Mon Sep 17 00:00:00 2001 From: David Trattnig <david.trattnig@o94.at> Date: Fri, 15 Nov 2019 20:45:39 +0100 Subject: [PATCH] Updated current and sample config. --- configuration/engine.ini | 18 ++++++++++-------- configuration/sample.engine.ini | 6 +++--- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/configuration/engine.ini b/configuration/engine.ini index 8755a718..84d4b931 100644 --- a/configuration/engine.ini +++ b/configuration/engine.ini @@ -31,17 +31,19 @@ mail_server_port="" mail_user="" mail_pass="" # if you want to send multiple adminmails, make them space separated -admin_mail="gogo@servus.at gottfried@servus.at" +admin_mail="david@subsquare.at gogo@servus.at" # with from mailadress should be used from_mail="monitor@aura.py" # The beginning of the subject. With that you can easily apply filter rules with any mail client -mailsubject_prefix="[AURA]" +mailsubject_prefix="[AURA Engine]" [dataurls] -# the url of pv/steering -calendarurl="http://localhost:8001/api/v1/playout" -# the url of tank -importerurl="http://localhost:8040/api/v1/shows/" +# The URL to get the Calendar via PV/Steering +calendarurl="http://localhost:8000/api/v1/playout" +# The URL to get show details via PV/Steering +api_show_url="http://localhost:8000/api/v1/shows/${ID}/" +# The URL to get playlist details via Tank +importerurl="http://localhost:8040/api/v1/shows/${SLUG}/playlists" # how often should the calendar be fetched in seconds (This determines the time of the last change before a specific show) fetching_frequency=3600 @@ -88,7 +90,7 @@ fallback_threshold="-50." # if you are starving for pain in the ass choose alsa # if you don't care about latency choose pulseaudio # if you want low latency and a bit of experimenting, choose jack -soundsystem="pulseaudio" +soundsystem="alsa" # you can define up to 5 inputs and outputs # it is tested with @@ -108,7 +110,7 @@ input_device_2="" input_device_3="" input_device_4="" # same same, but different -output_device_0="y" +output_device_0="default" output_device_1="" output_device_2="" output_device_3="" diff --git a/configuration/sample.engine.ini b/configuration/sample.engine.ini index 9b468eeb..30ad72b4 100644 --- a/configuration/sample.engine.ini +++ b/configuration/sample.engine.ini @@ -5,7 +5,7 @@ [database] db_user="aura_engine" db_name="aura_engine" -db_pass="%CHANGE-ME%" +db_pass="***change-me***" db_host="localhost" [monitoring] @@ -26,7 +26,7 @@ admin_mail="david@subsquare.at gogo@servus.at" # with from mailadress should be used from_mail="monitor@aura.py" # The beginning of the subject. With that you can easily apply filter rules with any mail client -mailsubject_prefix="[AURA]" +mailsubject_prefix="[AURA Engine]" [dataurls] # The URL to get the Calendar via PV/Steering @@ -98,7 +98,7 @@ input_device_2="" input_device_3="" input_device_4="" # same same, but different -output_device_0="hw:0" +output_device_0="default" output_device_1="" output_device_2="" output_device_3="" -- GitLab