WebRTCアプリケーションを作成していて、次の問題があります。webRTC-adapterのadapter.jsの使い方は?
adapter.jsライブラリを使用します。
私は次のindex.htmlを持っている:
<html>
<header>
<script src='../out/adapter.js'></script>
<script src='../out/main.js'></script>
</header>
<body>
<video id="localVideo" width='500' autoplay></video>
</body>
</html>
と私のmain.jsは、次のようになります。
var adapter=require('webrtc-adapter');
var localVideo=document.querySelector('video#localVideo');
navigator.getUserMedia(media_constraints, handleUserMedia, handleUserMediaError);
function handleUserMedia(stream) {
localStream = stream;
adapter.attachMediaStream(localVideo, stream);
console.log('Adding local stream.');
}
が、私のブラウザがエラーをログに記録します。Uncaught ReferenceError: require is not defined
にそれをインストールするには、そのようなノードの[クライアントのBrowserify – sidonaldson
可能な重複としてモジュールローダを使用する必要があります。キャッチされないにReferenceError:必要定義されていない](https://stackoverflow.com/questions/19059580/client-on-node-uncaught-referenceerror-require-is-not-defined) – silencedmessage