Hab es jetzt so weit geschafft das ein Text angezeigt wird wennd er Stream on geht
<?php
$json_file = file_get_contents("http://api.justin.tv/api/stream/list.json?channel=lukerl12", 0, null, null);
$json_array = json_decode($json_file, true);
if ($json_array[0]['name'] == 'live_user_lukerl12') {
echo 'LukasG is online!';
}
else {
echo 'LukasG is offline!_______________________';
}
?>
so aber ich will ja das wenn der stream on ist dass dann ein Stream Fesnter angezeigt wird.
Dafür gibt es diesen Code
<object type="application/x-shockwave-flash" height="300" width="400" id="live_embed_player_flash" data="http://www.twitch.tv/widgets/live_embed_player.swf?channel=lukerl12" bgcolor="#000000"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="allowNetworking" value="all" /><param name="movie" value="http://www.twitch.tv/widgets/live_embed_player.swf" /><param name="flashvars" value="hostname=www.twitch.tv&channel=lukerl12&auto_play=false&start_volume=25" /></object><a href="http://www.twitch.tv/lukerl12#r=-rid-&s=em" class="trk" style="padding:2px 0px 4px; display:block; width:345px; font-weight:normal; font-size:10px; text-decoration:underline; text-align:center;">Watch live video from Ladder to Master on www.twitch.tv</a>
Aber wie füge ich denn unteren Code in den oberen ein sodass dass der Stream geöffnet wird?
Danke im Vorraus
mfG
LukasG