diff options
Diffstat (limited to 'bin/jsonapi.php')
-rwxr-xr-x | bin/jsonapi.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/bin/jsonapi.php b/bin/jsonapi.php index eba9725..372c063 100755 --- a/bin/jsonapi.php +++ b/bin/jsonapi.php @@ -58,12 +58,23 @@ function getChanInfo($channum) { $ret = array(); - $info = array(); $ret['program'] = vdrgetchaninfo($channum); return json_encode($ret); } +function getRecInfo($rec) +{ + $ret = array(); + + $info = array(); + list($info['channel'], $info['name'], $info['desc']) = vdrgetrecinfo($rec); + + $ret['program'] = $info; + + return json_encode($ret); +} + function startBroadcast($type, $url, $mode) { $ret = array(); |