There is a simple program by which you can download the ckplayer video.
After create the list of download URL, copy it to download tools.
After download aff of the files. Use the command to compare into a big file in windows:
copy/b E:\temps\*.ts E:\temps\new.ts
There is the web program with which you would create the list.
<textarea></textarea>
<script type="text/javascript" src="jquery-3.3.1.slim.min.js"></script>
<script>
function addZero(i){
if(i<10){
return "00"+i;
}else if(i<100){
return "0"+i;
}else if(i<1000){
return i;
}
}
var tt = "";
for(i=0;i<153;i++){
var item = "http://xxxx.com/"+addZero(i)+".ts\n";
tt += item;
}
$("textarea").text(tt);
</script>