越玩越起勁了,網路串流整合成功。SRS+FFmpeg+PHP+Video.js+Html5
FFmpeg – the swiss army knife of Internet Streaming
FFmpeg – the swiss army knife of Internet Streaming
This will execute $cmd in the background (no cmd window) without PHP waiting for it to finish, on both Windows and Unix.
<?php
function execInBackground($cmd) {
if (substr(php_uname(), 0, 7) == "Windows"){
pclose(popen("start /B ". $cmd, "r"));
}
else {
exec($cmd . " > /dev/null &");
}
}
?>
沒有留言:
張貼留言