Turn Livestream Channel Status On or Off
Create a snippet: [[livestream]] and modify page to nocache
<?php
// Check if your New Livestream Channel [new.livestream.com] is Live
//Verificar se o seu canal no New Livestream[new.livestream.com] está Ao Vivo
$account = "youraccount";
$channel = "yourchannel";
$json = file_get_contents("http://new.livestream.com/api/accounts/".$account."/events/".$channel."/viewing_info", true);
$decode = json_decode($json, true);
$live = $decode[streamInfo][is_live];
if($live == 1){
echo 'On';
}
else
{
echo 'Off';
}
?>
GIT:
https://gist.github.com/8601994.git
Enjoy!