blob: c9416724f0c28a52fa774f34aa23aef11f78a1ba (
plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
---
title: MediaRecorder.stream
slug: Web/API/MediaRecorder/stream
tags:
- API
- Media Recorder API
- MediaRecorder
- Property
- Reference
- stream
translation_of: Web/API/MediaRecorder/stream
---
<div>{{APIRef("MediaStream Recording")}}</div>
<p><strong><code>MediaRecorder.stream</code></strong> 読み取り専用プロパティは、<code>MediaRecorder</code> を作成したときに <code>MediaRecorder()</code> コンストラクタに渡したストリームを返します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">var <em>stream</em> = MediaRecorder.stream</pre>
<h3 id="Values" name="Values">値</h3>
<p>最初に <code>MediaRecorder</code> を作成したとき <code>MediaRecorde()</code> コンストラクタに渡した {{domxref("MediaStream")}}。</p>
<h2 id="Example" name="Example">例</h2>
<pre class="brush: js;highlight:[13,14]">if (navigator.getUserMedia) {
console.log('getUserMediaがサポートされています。');
navigator.getUserMedia (
// 制約 - このアプリに必要なのは音声のみ
{
audio: true
},
// 成功コールバック
function(stream) {
var mediaRecorder = new MediaRecorder(stream);
var myStream = mediaRecorder.stream;
console.log(myStream);
...</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-stream", "MediaRecorder.stream")}}</td>
<td>{{Spec2("MediaStream Recording")}}</td>
<td>初期定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.MediaRecorder.stream")}}</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">MediaStream 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>
|