getUserMedia を使用すると、クライアントのウェブカメラ/カメラからビデオストリームをキャプチャできます。そして、video
タグを使用して、クライアントのブラウザで表示できます。コード:
<video autoplay></video>
<script type="text/javascript">
window.URL = window.URL || window.webkitURL;
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia;
var video = $('video')[0];
var failed = function(e) {
console.log('Denied!', e);
};
if( navigator.getUserMedia ) {
navigator.getUserMedia( {video: true, audio: true}, function( stream ) {
video.src = window.URL.createObjectURL(stream);
}, failed
)
} else {
console.log( 'Not supported!' );
}
</script>
リアルタイムフィードとして、またはユーザーが録画を完了してアップロードすることを決定した後に、このビデオストリームをサーバーに送信できますか?
私はいくつかの例を見つけました:
MediaStreamRecorderは、getUserMedia()ストリームを記録するためのWebRTC APIです。これにより、Webアプリはライブのオーディオ/ビデオセッションからファイルを作成できます。
<video autoplay></video>
<script language="javascript" type="text/javascript">
function onVideoFail(e) {
console.log('webcam fail!', e);
};
function hasGetUserMedia() {
// Note: Opera is unprefixed.
return !!(navigator.getUserMedia || navigator.webkitGetUserMedia ||
navigator.mozGetUserMedia || navigator.msGetUserMedia);
}
if (hasGetUserMedia()) {
// Good to go!
} else {
alert('getUserMedia() is not supported in your browser');
}
window.URL = window.URL || window.webkitURL;
navigator.getUserMedia = navigator.getUserMedia ||
navigator.webkitGetUserMedia ||
navigator.mozGetUserMedia ||
navigator.msGetUserMedia;
var video = document.querySelector('video');
var streamRecorder;
var webcamstream;
if (navigator.getUserMedia) {
navigator.getUserMedia({audio: true, video: true}, function(stream) {
video.src = window.URL.createObjectURL(stream);
webcamstream = stream;
// streamrecorder = webcamstream.record();
}, onVideoFail);
} else {
alert ('failed');
}
function startRecording() {
streamRecorder = webcamstream.record();
setTimeout(stopRecording, 10000);
}
function stopRecording() {
streamRecorder.getRecordedData(postVideoToServer);
}
function postVideoToServer(videoblob) {
var data = {};
data.video = videoblob;
data.metadata = 'test metadata';
data.action = "upload_video";
jQuery.post("http://www.kongraju.in/uploadvideo.php", data, onUploadSuccess);
}
function onUploadSuccess() {
alert ('video uploaded');
}
</script>
<div id="webcamcontrols">
<button class="recordbutton" onclick="startRecording();">RECORD</button>
</div>
仕様:
http://www.w3.org/TR/mediastream-recording/
記録されたファイルをサーバーに送信できます。
この記事をご覧ください: http://www.smartjava.org/content/face-detection-using-html5-javascript-webrtc-websockets-jetty-and-javacvopencv
Webrtc の使用方法を示しています。
これらのAPIにより、ブラウザー内で実行でき、追加のダウンロードやプラグインを必要とせず、介在サーバーを使用せずに、オーディオ、ビデオ、および補足的なリアルタイム通信を使用してパーティ間の通信を可能にするアプリケーションの構築が可能になります(ファイアウォールトラバーサルに必要な場合を除き、または仲介サービスを提供するため)。