BGS局域网视频源码,源码是PHP的,TP5.1,
数据库和伪静态设置在压缩包,记得设置运行目录为public
数据库配置请到 configdatabase.php中修改
只支持MP4,上传后观看时候会自动进行转换为m3u8,调用的是FFmpeg,主要就是为了研究php使用FFmpeg,BGS局域网视频源码。

伪静态

  1. location / {
  2. index index.php index.html index.htm;
  3. if (!-e $request_filename)
  4. {
  5. rewrite ^/(.*)$ /index.php?s=$1;
  6. #rewrite ^/subdir/(.*)$ /subdir/index.php?s=$1;
  7. }
  8. }