J'ai merdé sur l'upload du fichier au moment de tester. En tout cas je te remercie bien.
Si ça peut aider qqn, voila le code :
<?php
$nomchaine = "razor_stream";
$url = "https://api.twitch.tv/kraken/channels/razor_strea
m/videos?limit=4";
$result = file_get_contents($url);
$elements = json_decode($result, true);
foreach ($elements['videos'] as $element){?>
<div class="contvideo">
<div class="previewcont">
<img class="preview" src="<?php echo $element['preview'];?>" >
</div>
<div class="infovideo">
<div class="titre"><a href="<?php echo $element['url'];?>"><?php echo $element['title'];?></a></div>
<div><?php echo $element['description'];?></div>
<div>
<?php $date1 = $element['recorded_at'] ?>
Enregistré a <?php echo substr($date1, 11, -1);?>
<img class="viewsimg" src="http://www-cdn.jtvnw.net/stylesheets/../image
s/xarth/g/g18_eye-00000080.png"
><?php echo $element['views'];?>
</div>
</div>
</div>
<?php } ?>