Php web player code used to play online videos (automatically determines and selects the video file type ). Some simple video playing functions are often encountered in web development, but the video formats are different and can be dynamically increased. Therefore, we must save the video to data, well, some simple video playing functions are often used in web development. However, the video formats are different and can be dynamically increased. Therefore, we must save the video to data, now let's take a look at the simple section I wrote.
Php video web playerCode.
The code is as follows:
Include './admin/connect. php ';
@ Extract ($ db-> get_one ("select * from movieinfo where id = '". $ _ GET ['id']. "'");
$ Db-> query ("update movieinfo set playnum = playnum + 1 where id = '". $ _ GET ['id']. "'");
// Control Download
$ Url2 = "admin/"; // path for storing software
If ($ localaddress)
{
$ Newname = $ localaddress;
$ Movieurl = $ url2. $ newname;
}
?>
<? = $ Title?> -Play jb51.net online
// MediaPlayer playback
If (eregi (". mid $ ", $ movieurl) | eregi (". avi $ ", $ movieurl) | eregi (". asf $ ", $ movieurl) | eregi (". asx $ ", $ movieurl) | eregi (". wmv $ ", $ movieurl) | eregi (". wma $ ", $ movieurl ))
{
?>
} Elseif (eregi (". ra $ ", $ movieurl) | eregi (". mp3 $ ", $ movieurl) | eregi (". rm $ ", $ movieurl) | eregi (". ram $ ", $ movieurl )){
// Played by RealPlayer
?>
} Elseif (eregi (". swf $", $ movieurl )){
// Played by Flash Player
?>
}
?>
...