2011-03-25 04:07:13 +01:00
|
|
|
api_client = "airtime"
|
|
|
|
|
2011-03-05 17:53:29 +01:00
|
|
|
# Hostname
|
2011-03-21 20:48:44 +01:00
|
|
|
base_url = 'http://localhost/'
|
2011-03-05 17:53:29 +01:00
|
|
|
|
|
|
|
# base path to store recordered shows at
|
2011-03-22 23:20:22 +01:00
|
|
|
base_recorded_files = '/home/pypo/Music/'
|
2011-03-24 22:43:37 +01:00
|
|
|
|
|
|
|
# Value needed to access the API
|
|
|
|
api_key = 'AAA'
|
|
|
|
|
|
|
|
# Path to the base of the API
|
|
|
|
api_base = 'api/'
|
|
|
|
|
|
|
|
# URL to get the version number of the server API
|
|
|
|
version_url = 'version/api_key/%%api_key%%'
|
2011-03-25 04:07:13 +01:00
|
|
|
|
|
|
|
# URL to get the schedule of shows set to record
|
|
|
|
show_schedule_url = 'recorded-shows/format/json/api_key/%%api_key%%'
|
|
|
|
|
|
|
|
# URL to upload the recorded show's file to Airtime
|
|
|
|
upload_file_url = 'upload-recorded/format/json/api_key/%%api_key%%'
|
2011-03-29 22:32:31 +02:00
|
|
|
|
|
|
|
#number of retries to upload file if connection problem
|
|
|
|
upload_retries = 3
|
|
|
|
|
|
|
|
#time to wait between attempts to upload file if connection problem (in seconds)
|
|
|
|
upload_wait = 60
|