How to present the images streaming?

Hi all,

The following website is the CCTV images streaming which is provided with the government:

http://210.242.179.114:8080/stream/GetStreamVideo?pm=164,A44,24

The update rate is 5 images per second. When I attempt to present it in Cesium, it present only 1 image and doesn’t update. Could I display the streaming website in Cesium dynamically? Thanks a lot~

Here is the example code:

var czml = [
{
“id” : “document”,
“name” : “CZML Colors”,
“version” : “1.0”
}, {
“id” : “rgba”,
“name” : “Rectangle using RGBA Colors”,
“rectangle” : {
“coordinates” : { “wsenDegrees” : [-120, 40, -110, 50] },
“fill” : true,
“material”:{
“image”:{
“image”:“http://localhost:8081/proxy/cctvn01.freeway.gov.tw/vStream.php?pm=164,A44,24
}
}
}
}
];

var viewer = new Cesium.Viewer(‘cesiumContainer’);
var dataSource = Cesium.CzmlDataSource.load(czml);
viewer.dataSources.add(dataSource);
viewer.zoomTo(dataSource);