summaryrefslogtreecommitdiff
path: root/settings.js
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2013-01-15 09:07:28 +0100
committerM. Voerman <rekordc@gmail.com>2013-01-15 09:07:28 +0100
commitcbf6fc2f8772f97bf03c4b408b9fe229f7c5b6ed (patch)
tree7ee6d549d871221a01a2c9b7b8e1c4d46d9196ac /settings.js
parent25d21a2d2a086cbd34bf02b47337aa5761fe3740 (diff)
downloadvdr-vipclient-cbf6fc2f8772f97bf03c4b408b9fe229f7c5b6ed.tar.gz
vdr-vipclient-cbf6fc2f8772f97bf03c4b408b9fe229f7c5b6ed.tar.bz2
Revert "removed MPD connection because it didn't work or with lott of glitches in the playback"
This reverts commit 25d21a2d2a086cbd34bf02b47337aa5761fe3740.
Diffstat (limited to 'settings.js')
-rw-r--r--settings.js15
1 files changed, 8 insertions, 7 deletions
diff --git a/settings.js b/settings.js
index 05376a0..2c69afc 100644
--- a/settings.js
+++ b/settings.js
@@ -6,8 +6,8 @@
// 1280x720
// 1920x1080
-var Xfactor = 1280 / 720;
-var Yfactor = 720 / 576;
+var Xfactor = 1920 / 720;
+var Yfactor = 1080 / 576;
var showClock = 0; // 0 = no, 1 = yes
@@ -34,7 +34,8 @@ var ChanGroup = 0; // default TV group
var minChan = new Array(); var maxChan = new Array(); var defChan = new Array(); var baseChn = new Array(); var protChn = new Array(); var ServerAdres = new Array(); // Define settings for Channels.
// Server for Recordings
-var recServ = "http://192.168.3.15:8000";
+var recServ = "http://192.168.1.15:8000";
+var MPDAddress = "http://192.168.1.15:8888/mpd.mp3";
// Radio channels.js Settings
minChan[9] = 9001;
@@ -42,7 +43,7 @@ maxChan[9] = 9099; // set not too far from max rd channel to speed up zapping
defChan[9] = 9051;
baseChn[9] = 9000;
protChn[9] = 0;
-ServerAdres[9] = "http://192.168.3.15:3000/";
+ServerAdres[9] = "http://192.168.1.15:3000/";
// Protected channels.js Settings
minChan[6] = 6001;
@@ -50,7 +51,7 @@ maxChan[6] = 6040; // set not too far from max prt channel to speed up zapping
defChan[6] = 6001;
baseChn[6] = 6000;
protChn[6] = 1;
-ServerAdres[6] = "http://192.168.3.15:3000/";
+ServerAdres[6] = "http://192.168.1.15:3000/";
// TV channels.js Settings
minChan[0] = 1;
@@ -58,7 +59,7 @@ maxChan[0] = 999; // set not too far from max TV channel to speed up zapping
defChan[0] = currChan;
baseChn[0] = 0;
protChn[0] = 0;
-ServerAdres[0] = "http://192.168.3.15:3000/";
+ServerAdres[0] = "http://192.168.1.15:3000/";
//HD list
minChan[1] = 1001;
@@ -66,7 +67,7 @@ maxChan[1] = 1999; // set not too far from max HD channel to speed up zapping
defChan[1] = 1001;
baseChn[1] = 1000;
protChn[1] = 0;
-ServerAdres[1] = "http://192.168.3.15:3000/";
+ServerAdres[1] = "http://192.168.1.15:3000/";
// MultiCast
minChan[5] = 5001;