-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
53 lines (42 loc) · 3.39 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>WebRTC with Chromecast by youkinjoh</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
</head>
<body>
<section class="page-header">
<h1 class="project-name">WebRTC with Chromecast</h1>
<h2 class="project-tagline"></h2>
<a href="https://github.com/youkinjoh/WebRTC-with-Chromecast" class="btn">View on GitHub</a>
<a href="https://github.com/youkinjoh/WebRTC-with-Chromecast/zipball/master" class="btn">Download .zip</a>
<a href="https://github.com/youkinjoh/WebRTC-with-Chromecast/tarball/master" class="btn">Download .tar.gz</a>
</section>
<section class="main-content">
<h1>
<a id="chromecastとwebrtcで接続しようとして失敗したという話" class="anchor" href="#chromecast%E3%81%A8webrtc%E3%81%A7%E6%8E%A5%E7%B6%9A%E3%81%97%E3%82%88%E3%81%86%E3%81%A8%E3%81%97%E3%81%A6%E5%A4%B1%E6%95%97%E3%81%97%E3%81%9F%E3%81%A8%E3%81%84%E3%81%86%E8%A9%B1" aria-hidden="true"><span class="octicon octicon-link"></span></a>ChromecastとWebRTCで接続しようとして失敗したという話</h1>
<p>ChromecastにパソコンのChromeのタブをキャストする時にWebRTCを使っているというので、
Chromecastをリモート端末と見なしてWebRTCで映像を送信できないかと試したけど
上手くいかなかったという話。</p>
<p>Chromecastにはカメラ(とマイク)がないので、
MacからChromecastへ一方向のStreamを想定していた。
WebRTCのライブラリは<a href="http://nttcom.github.io/skyway/">SkyWay</a>を使った。</p>
<p><a href="https://chrome.google.com/webstore/detail/google-cast/boadgeojelhgndaghljhdicfkmllpafd">Google Cast</a>というextention(機能拡張)をインストールしたChromeで、
<a href="https://youkinjoh.github.io/WebRTC-with-Chromecast/src/sender.html">sender</a>を開き、
<code>connect cast</code>ボタンをクリックすると、
Chromecastが<a href="https://youkinjoh.github.io/WebRTC-with-Chromecast/src/receiver.html">receiver</a>を開く。
その後に<code>call</code>をクリックするとストリームが始まるはずだったんだけど、
<code>Failed to set remote offer sdp: Session error code: ERROR_CONTENT. Session error description: Failed to set data send codecs.</code>というエラーが発生。</p>
<p>codecが対応していないように見えるけど、他に何か原因があるんですかね...。</p>
<footer class="site-footer">
<span class="site-footer-owner"><a href="https://github.com/youkinjoh/WebRTC-with-Chromecast">WebRTC with Chromecast</a> is maintained by <a href="https://github.com/youkinjoh">youkinjoh</a>.</span>
<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the <a href="https://github.com/jasonlong/cayman-theme">Cayman theme</a> by <a href="https://twitter.com/jasonlong">Jason Long</a>.</span>
</footer>
</section>
</body>
</html>