blob: 5a630320fe34342e2a39e7f3bbc0c8114d9f45e0 (
plain)
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
|
<?php
global $user, $pass, $vdrchannels, $vdrstreamdev, $quality, $httppath, $svdrpip, $svdrpport, $ffmpegpath;
// Http configuration
$user = 'istreamdev'; // Login
$pass = 'iguest'; // Password
$httppath = '/istreamdev/'; // Path to the index.php file
// VDR configuration
$vdrchannels='/etc/vdr/channels.conf'; // VDR channel list
$svdrpport=2001; // SVDRP port
$svdrpip='127.0.0.1'; // SVDRP ip
$vdrstreamdev='http://127.0.0.1:3000/TS/'; // VDR streamdev URL
$vdrrecpath='/video/';
// Media configuration
$mediapath='/mnt/Storage/';
// Encoding
// Name Video Audio Audio channels Resolution
$quality = array( 'Edge' => '128k 64k 1 240x160',
'3g' => '350k 64k 1 408x272',
'Wifi' => '512k 128k 2 480x320'
);
$ffmpegpath = '/usr/bin/ffmpeg';
// Version
$isdversion = "0.3.6-alpha";
?>
|