Не каждой. Сервер же всё равно отдаёт на отсутствие 404, почему бы вместо этого ему не отдавать картинку-заглушку?
С помощью js как-то так, но это не гуд
<img class="img_reload" id="image" src="www.site.ru/stream.png">
<script>
(function(image, interval){
var test = new Image();
test.onload = function(){
image.src = this.src;
image.style.display = '';
}
test.onerror = function(){
image.style.display = 'none';
}
setInterval(function(){
test.src = 'http://www.site.ru/stream.png?' + Math.random()
}, interval)
}(document.getElementById('image'), 30 * 1000))
</script>