aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/mediarecorder/onstop/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/mediarecorder/onstop/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/mediarecorder/onstop/index.html')
-rw-r--r--files/ja/web/api/mediarecorder/onstop/index.html78
1 files changed, 78 insertions, 0 deletions
diff --git a/files/ja/web/api/mediarecorder/onstop/index.html b/files/ja/web/api/mediarecorder/onstop/index.html
new file mode 100644
index 0000000000..d639d9441b
--- /dev/null
+++ b/files/ja/web/api/mediarecorder/onstop/index.html
@@ -0,0 +1,78 @@
+---
+title: MediaRecorder.onstop
+slug: Web/API/MediaRecorder/onstop
+tags:
+ - API
+ - Audio
+ - Media Capture
+ - Media Recorder API
+ - MediaRecorder
+ - Property
+ - Reference
+ - Video
+ - onstop
+translation_of: Web/API/MediaRecorder/onstop
+---
+<div>{{APIRef("Media Recorder API")}}</div>
+
+<p><span class="seoSummary"><strong><code>MediaRecorder.onstop</code></strong> イベントハンドラ(<a href="/ja/docs/Web/API/MediaStream_Recording_API">MediaStream Recording API</a> の一部)は、<code>stop</code> イベントを処理します。 これにより、<code>MediaRecorder</code> を介してメディアの記録が停止されたことに応答してコードを実行できます。</span></p>
+
+<p><code>stop</code> イベントは、{{domxref("MediaRecorder.stop()")}} メソッドを呼び出した結果として、またはキャプチャしているメディアストリームが終了したときにスローされます。 いずれの場合も、<code>stop</code> イベントの前に <code>dataavailable</code> イベントがあり、それまでにキャプチャされた {{domxref("Blob")}} をアプリで使用できるようにします。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox">MediaRecorder.onstop = function(event) { ... }
+MediaRecorder.addEventListener('stop', function(event) { ... })</pre>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: js"><span>...
+
+ mediaRecorder.onstop = function(e) {
+ console.log("</span>MediaRecorder.stop() 呼び出し後に利用可能なデータ。<span>");
+
+ var audio = document.createElement('audio');
+ audio.controls = true;
+ var blob = new Blob(chunks, { 'type' : 'audio/ogg; codecs=opus' });
+ var audioURL = window.URL.createObjectURL(blob);
+ audio.src = audioURL;
+ console.log("</span>レコーダー停止<span>");
+ }
+
+ mediaRecorder.ondataavailable = function(e) {
+ chunks.push(e.data);
+ }</span>
+
+...</pre>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ <tr>
+ <td>{{SpecName("MediaStream Recording", "#widl-MediaRecorder-onstop", "MediaRecorder.onstop")}}</td>
+ <td>{{Spec2("MediaStream Recording")}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+
+
+<p>{{Compat("api.MediaRecorder.onstop")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/API/MediaStream_Recording_API/Using_the_MediaStream_Recording_API">Media​Stream Recording API の使用</a></li>
+ <li><a href="http://mdn.github.io/web-dictaphone/">ウェブディクタフォン</a>: MediaRecorder + getUserMedia + Web Audio API 可視化デモ、<a href="https://twitter.com/chrisdavidmills">Chris Mills</a> 著(<a href="https://github.com/mdn/web-dictaphone/">Github のソース</a>)。(英語)</li>
+ <li><a href="http://simpl.info/mediarecorder/">simpl.info の MediaStream Recording のデモ</a>、<a href="https://twitter.com/sw12">Sam Dutton</a> 著。(英語)</li>
+ <li>{{domxref("MediaDevices.getUserMedia")}}</li>
+</ul>