1. 程式人生 > >人工智慧、大資料與複雜系統一月特訓班

人工智慧、大資料與複雜系統一月特訓班

在嘗試使用webRTC實現webapp直播失敗後,轉移思路開始另外尋找可行的解決方案。在網頁上嘗試使用webRTC實現視訊的直播與看直播,在谷歌瀏覽器以及safari瀏覽器上測試是可行的。但是基於基座打包為webapp後不行,所以直播的話建議還是原生的好。HBuilder自帶的H5+有提供了原生的視訊播放和推流錄製上傳,但是需要有一個rtmp直播流伺服器,用於測試和開發,這時就需要自建rtmp服務推流了。

極速搭建簡單RTMP直播流伺服器

開發環境:macOS

複製程式碼

$ docker --version
Docker version 18.06.1-ce, build e68fc7a

$ docker-compose --version
docker-compose version 1.22.0, build f46880f

$ docker-machine --version
docker-machine version 0.15.0, build b48dc28d

複製程式碼

  如果是自己使用nginx搭建rtmp直播伺服器,畢竟是接觸這個不到半天,還是有點複雜,編譯設定有點繁瑣。好在docker上有大把別人編譯設定好的rtmp環境,所以先拿來玩著先,有空還是自己要來搞搞的。這裡用到的是alfg/nginx-rtmp庫。

  • Pull docker image and run:
docker pull alfg/nginx-rtmp
docker run -it -p 1935:1935 -p 8080:80 --rm alfg/nginx-rtmp
  • Build and run container from source:
docker build -t nginx-rtmp .
docker run -it -p 1935:1935 -p 8080:80 --rm nginx-rtmp

直播推流地址 

rtmp://<server ip>:1935/stream/$STREAM_NAME

播流地址

http://<server ip>:8080/live/$STREAM_NAME.m3u8

使用OBS測試rtmp直播流伺服器

下載安裝 OBS,在隨便網上找一條視訊在obs無限迴圈播放。obs=>設定=>流

開始推流

safari瀏覽器測試效果

 

RTMP直播流伺服器簡單搭建成功,這個只是簡單的實現了 推流播流而已,測試發現直播有延遲大概10s左右。還需要調配畫素以及貞。或者說使用成熟的第三方的推流地址與播流地址。

webapp(vue)移動端直播

新建一個vue 專案

livepusher.vue

複製程式碼

<template>
  <div>
    <br />
    <div id="pusher"
         style="width:300px;height:400px;background-color:#000000;margin:auto"></div>
    <br />
    <div style="text-align:center; margin:auto;">
      <input id="path"
             type="text"
             value=""
             placeholder="請輸入直播伺服器地址(rtmp)" />
      <button id="pp"
              v-on:click="ppPusher()">開始</button>
    </div>
    <div class="button"
         v-on:click="switchCamera()">切換攝像頭</div>
  </div>
</template>

<script>

export default {
  data () {
    return {
      bstart: false,
      pusher: null
    }
  },
  created () {
    document.addEventListener("plusready", this.plusReady, false);
  },
  methods: {
    switchCamera () {
      this.pusher.switchCamera();
    },
    plusReady () {
      // 建立直播推流控制元件
      this.pusher = new plus.video.LivePusher("pusher", {
        url: "rtmp://testlivesdk.v0.upaiyun.com/live/upyunb"
      });
      // 監聽狀態變化事件
      this.pusher.addEventListener(
        "statechange",
        function (e) {
          console.log("statechange: " + JSON.stringify(e));
        },
        false
      );
    },
    ppPusher () {
      if (this.bstart) {
        this.pusher.stop();
        this.bstart = false;
      } else {
        var path = document.getElementById("path").value;
        if (path && path.length > 0) {
          this.pusher.setOptions({ url: path });
          this.pusher.start();
          this.bstart = true;
        } else {
          plus.nativeUI.toast("請輸入直播伺服器地址");
        }
      }
      var pp = document.getElementById("pp");
      pp.innerText = this.bstart ? "停止" : "開始";
    }
  }
}
</script>
<style scoped>
input {
  width: 70%;
  font-size: 16px;
  padding: 0.2em 0.2em;
  border: 1px solid #00b100;
  -webkit-user-select: text;
}
.button,
button {
  width: 20%;
  margin: 6px 0 6px 6px;
  font-size: 16px;
  color: #fff;
  background-color: #00cc00;
  border: 1px solid #00b100;
  padding: 0.2em 0em;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
</style>

複製程式碼