synclounge/config/defaults.js

58 lines
1.4 KiB
JavaScript
Raw Normal View History

const defaults = {
port: 8088,
base_url: '/',
servers: [
{
name: 'SyncLounge AU1',
location: 'Sydney, Australia',
url: 'https://v3au1.synclounge.tv/slserver',
image: 'flags/au.png',
},
{
name: 'SyncLounge EU1',
location: 'Amsterdam, Netherlands',
url: 'https://v2eu1.synclounge.tv/server',
image: 'flags/eu.png',
},
{
name: 'SyncLounge US1',
location: 'Miami, United States',
url: 'https://v2us1.synclounge.tv/server',
image: 'flags/us.png',
},
{
name: 'SyncLounge US2',
location: 'Miami, United States',
url: 'https://v3us1.synclounge.tv/slserver',
image: 'flags/us.png',
},
{
name: 'SyncLounge US3',
location: 'Miami, United States',
url: 'https://v3us2.synclounge.tv/slserver',
image: 'flags/us.png',
},
],
authentication: {
mechanism: 'none',
},
default_slplayer_autoplay: true,
default_slplayer_force_transcode: false,
default_slplayer_volume: 1,
default_client_poll_interval: 1000,
default_sync_flexability: 3000,
default_sync_mode: 'cleanseek',
2020-06-30 21:47:12 +00:00
slplayer_plex_timeline_update_interval: 10000,
slplayer_controls_visible_checker_interval: 500,
sidebar_time_update_interval: 500,
// If the plex client's time changes by this much from the expected time, trigger a state change
plex_client_time_delta_state_change_threshold: 500,
};
module.exports = defaults;