123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- bin_dir = "/usr/lib/airtime/api_clients"
- rabbitmq_host = 'localhost'
- rabbitmq_user = 'guest'
- rabbitmq_password = 'guest'
- rabbitmq_vhost = '/'
- check_filesystem_events = 5 #how long to queue up events performed on the files themselves.
- check_airtime_events = 30 #how long to queue metadata input from airtime.
- touch_interval = 5
- chunking_number = 450
- request_max_wait = 3.0
- rmq_event_wait = 0.5
- logpath = '/home/rudi/throwaway/mm2.log'
- index_path = '/home/rudi/Airtime/python_apps/media-monitor2/sample_post.txt'
- api_key = '5LF5D953RNS3KJSHN6FF'
- api_base = 'api'
- version_url = 'version/api_key/%%api_key%%'
- register_component = 'register-component/format/json/api_key/%%api_key%%/component/%%component%%'
- base_url = 'localhost'
- base_port = 80
- media_setup_url = 'media-monitor-setup/format/json/api_key/%%api_key%%'
- upload_recorded = 'upload-recorded/format/json/api_key/%%api_key%%/fileid/%%fileid%%/showinstanceid/%%showinstanceid%%'
- update_media_url = 'reload-metadata/format/json/api_key/%%api_key%%/mode/%%mode%%'
- list_all_db_files = 'list-all-files/format/json/api_key/%%api_key%%/dir_id/%%dir_id%%'
- list_all_watched_dirs = 'list-all-watched-dirs/format/json/api_key/%%api_key%%'
- add_watched_dir = 'add-watched-dir/format/json/api_key/%%api_key%%/path/%%path%%'
- remove_watched_dir = 'remove-watched-dir/format/json/api_key/%%api_key%%/path/%%path%%'
- set_storage_dir = 'set-storage-dir/format/json/api_key/%%api_key%%/path/%%path%%'
- update_fs_mount = 'update-file-system-mount/format/json/api_key/%%api_key%%'
- handle_watched_dir_missing = 'handle-watched-dir-missing/format/json/api_key/%%api_key%%/dir/%%dir%%'
- show_schedule_url = 'recorded-shows/format/json/api_key/%%api_key%%'
- upload_file_url = 'upload-file/format/json/api_key/%%api_key%%'
- reload_metadata_group = 'reload-metadata-group/format/json/api_key/%%api_key%%'
- upload_retries = 3
- upload_wait = 60
- export_url = 'schedule/api_key/%%api_key%%'
- get_media_url = 'get-media/file/%%file%%/api_key/%%api_key%%'
- update_item_url = 'notify-schedule-group-play/api_key/%%api_key%%/schedule_id/%%schedule_id%%'
- update_start_playing_url = 'notify-media-item-start-play/api_key/%%api_key%%/media_id/%%media_id%%/schedule_id/%%schedule_id%%'
- get_stream_setting = 'get-stream-setting/format/json/api_key/%%api_key%%/'
- update_liquidsoap_status = 'update-liquidsoap-status/format/json/api_key/%%api_key%%/msg/%%msg%%/stream_id/%%stream_id%%/boot_time/%%boot_time%%'
- check_live_stream_auth = 'check-live-stream-auth/format/json/api_key/%%api_key%%/username/%%username%%/password/%%password%%/djtype/%%djtype%%'
- update_source_status = 'update-source-status/format/json/api_key/%%api_key%%/sourcename/%%sourcename%%/status/%%status%%'
- get_bootstrap_info = 'get-bootstrap-info/format/json/api_key/%%api_key%%'
- get_files_without_replay_gain = 'get-files-without-replay-gain/api_key/%%api_key%%/dir_id/%%dir_id%%'
- update_replay_gain_value = 'update-replay-gain-value/api_key/%%api_key%%'
|