forked from keedician/InstagramLive-PHP-master
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
31 lines (23 loc) · 1.3 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
//Instagram Credentials
define('IG_USERNAME', 'USERNAME');
define('IG_PASS', 'PASSWORD');
/*
* Settings below this line are optional!
*/
//General Settings
define('UPDATE_AUTO', true); //Change to true if you want the script to automatically update itself without having to run the update.php script
define('STREAM_RECOVERY', true); //Change to false if you want to disable automatic stream recovery (May improve performance when disabled)
//OBS Settings
define('OBS_MODIFY_SETTINGS', true); //Change this to false if you want the script to only modify the stream url and key and not resolution
define('OBS_BITRATE', '4000');
define('OBS_CUSTOM_PATH', 'INSERT_PATH'); //**OPTIONAL** Specify a custom path for the script to search for an obs executable
define('OBS_EXEC_NAME', 'obs64.exe'); //Recommend you don't touch this unless you modify the custom path & know what you're doing
define('OBS_X', '1080'); //You shouldn't touch this
define('OBS_Y', '1794'); //You shouldn't touch this
//Web console settings
define('WEB_HOST', '127.0.0.1'); //The IP to bind the web console to
define('WEB_PORT', '80'); //The port to bind the web console to
define('ANALYTICS_OPT_OUT', false); //Change to true if you want to opt of of anonymous analytics.
//Config Metadata
define('configVersionCode', '9'); //You shouldn't touch this