3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

agora.io Chromeで画面(アプリケーション)共有

Last updated at Posted at 2019-03-20

agora.ioのWebRTC SDKで画面(アプリケーション)共有を実装

Githubに公開しています

開発環境

Chrome 85.0.4183.83
AgoraVideoSDK for Web 3.1.2

使用するAPI

createStream(spec: StreamSpec): Stream

公式ドキュメント

実装内容

CreateStreamのscreenをtrueするだけです。

rtc.localStream = AgoraRTC.createStream({
 streamID: rtc.params.uid,
 audio: true,
 video: true,
 screen: true, ←ここ
 screenAudio: true
})

画面

(APPID、Channelを入力してJoinをクリック)
・画面共有のダイアログ表示時
image.png

・画面共有時
image.png

補足

・Web SDK v3.0以降、Windows Chrome74以降より音声共有もできます。詳細はこちら
・Web SDK v2.6またはChrome 72以下の場合はプラグインが必要です。

関連リンク

画面共有のドキュメントはありますか?
画面共有のサンプルはありますか?
画面共有で、ブラウザ(Chrome)標準の中止ボタンを押した場合、そのイベントをリッスンする方法はありますか?

最後に

agora.ioに関するお問い合わせはこちらから
スクリーンショット 0001-08-15 13.41.56.png

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?