blob: 4e101962b8806ad594a77f20379e20f314356681 (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
---
title: MediaRecorder.state
slug: Web/API/MediaRecorder/state
tags:
- API
- Media Recorder API
- MediaRecording
- Property
- Reference
- state
translation_of: Web/API/MediaRecorder/state
---
<div>{{APIRef("MediaStream Recording")}}</div>
<p><strong><code>MediaRecorder.state</code></strong> 読み取り専用プロパティは、現在の <code>MediaRecorder</code> オブジェクトの現在の状態を返します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">var <em>state</em> = MediaRecorder.state</pre>
<h3 id="Values" name="Values">値</h3>
<p>以下のいずれかの値を含む <a href="https://w3c.github.io/mediacapture-record/#recordingstate">RecordingState</a> オブジェクト。</p>
<table class="simple">
<thead>
<tr>
<th scope="row">列挙型</th>
<th scope="col">説明</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"><code id="idl-def-RecordingStateEnum.inactive">inactive</code></th>
<td>記録は行われていません — まだ開始されていないか、開始されてから停止されました。</td>
</tr>
<tr>
<th scope="row"><code id="idl-def-RecordingStateEnum.recording">recording</code></th>
<td>記録が開始され、UA がデータをキャプチャしています。</td>
</tr>
<tr>
<th scope="row"><code id="idl-def-RecordingStateEnum.paused">paused</code></th>
<td>記録は開始され、その後一時停止されましたが、まだ停止または再開されていません。</td>
</tr>
</tbody>
</table>
<h2 id="Example" name="Example">例</h2>
<pre class="brush: js">...
record.onclick = function() {
mediaRecorder.start();
console.log(mediaRecorder.state);
// "recording" を返します
console.log("レコーダー起動");
}
...</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-state", "MediaRecorder.state")}}</td>
<td>{{Spec2("MediaStream Recording")}}</td>
<td>初期定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.MediaRecorder.state")}}</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>
|