aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/mediarecordererrorevent
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/mediarecordererrorevent
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/mediarecordererrorevent')
-rw-r--r--files/ja/web/api/mediarecordererrorevent/error/index.html97
-rw-r--r--files/ja/web/api/mediarecordererrorevent/index.html71
-rw-r--r--files/ja/web/api/mediarecordererrorevent/mediarecordererrorevent/index.html71
3 files changed, 239 insertions, 0 deletions
diff --git a/files/ja/web/api/mediarecordererrorevent/error/index.html b/files/ja/web/api/mediarecordererrorevent/error/index.html
new file mode 100644
index 0000000000..b4f0c262e6
--- /dev/null
+++ b/files/ja/web/api/mediarecordererrorevent/error/index.html
@@ -0,0 +1,97 @@
+---
+title: MediaRecorderErrorEvent.error
+slug: Web/API/MediaRecorderErrorEvent/error
+tags:
+ - API
+ - Error
+ - Error Handling
+ - MediaRecordingErrorEvent
+ - MediaStream Recording
+ - MediaStream Recording API
+ - Property
+ - Reference
+translation_of: Web/API/MediaRecorderErrorEvent/error
+---
+<div>{{APIRef("MediaStream Recording")}}</div>
+
+<p><strong>{{domxref("MediaRecorderErrorEvent")}}</strong> インタフェースの読み取り専用の <code>error</code> プロパティは、{{domxref("MediaRecorder")}} インスタンスによってスローされた例外に関する詳細を提供する {{domxref("DOMException")}} オブジェクトです。</p>
+
+<p><code>Media​Recorder​Error​Event​</code> が発生した場合、<code>MediaRecorder</code> の {{event("error")}} イベントハンドラである {{domxref("MediaRecorder.onerror", "onerror")}} によって受けた <code>MediaRecorderErrorEvent</code> 内の <code>error</code> プロパティを調べることによって、何が問題であるかをある程度判断できます。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate"><em>error</em> = <em>MediaRecorderErrorEvent</em>.error;
+</pre>
+
+<h3 id="Value" name="Value">値</h3>
+
+<p>イベントによって表されるエラーを記述する {{domxref("DOMException")}}。 エラーの {{domxref("DOMException.name", "name")}} プロパティの値は、仕様で明確に識別されているものも含め、メディア記録の処理中に意味をなすものであればどんな例外でもかまいません。 ここでの説明は一般的なものです。 あなたはそれらが対応するメソッドのリファレンスで起こるかもしれない様々なシナリオにもっと具体的なものを見つけるでしょう。</p>
+
+<dl>
+ <dt><code>InvalidStateError</code></dt>
+ <dd>操作が許可されていないコンテキストで操作が試行されたか、削除されたか取り除かれたオブジェクトに対して要求が行われました。</dd>
+ <dt><code>NotSupportedError</code></dt>
+ <dd>指定されたオプションが無効なため、<code>MediaRecorder</code> を作成できませんでした。 <code>message</code> 属性は、もしあれば追加情報を提供するべきです。</dd>
+ <dt><code>SecurityError</code></dt>
+ <dd>{{domxref("MediaStream")}} は記録を禁止するように設定されています。 これは、例えば、ユーザーが入力デバイスを使用するパーミッションを拒否したときに {{domxref("MediaDevices.getUserMedia", "getUserMedia()")}} を使用して取得されたソースの場合などです。 これは、ソースストリームの {{domxref("MediaStreamConstraints.peerIdentity", "peerIdentity")}} 制約により、ストリーム内の {{domxref("MediaStreamTrack")}} が {{domxref("MediaStreamTrack.isolated", "isolated")}}  としてマークされている場合にも発生します。</dd>
+</dl>
+
+<h2 id="Example" name="Example">例</h2>
+
+<p>この関数は、与えられた {{domxref("MediaStream")}} の <code>MediaRecorder</code> を作成して、データを配列にバッファし、エラーを監視するように構成して、返します。</p>
+
+<pre class="brush: js notranslate">function recordStream(stream) {
+ let recorder = null;
+ let bufferList = [];
+
+ try {
+ recorder = new MediaRecorder(stream);
+ } catch(err) {
+ /* レコーダーを作成しようとしたときの例外。 それを扱う */
+ }
+
+ recorder.ondataavailable = function(event) {
+ bufferList.push(event.data);
+ };
+
+ recorder.onerror = function(event) {
+ let error = event.error;
+ };
+
+ recorder.start(100); /* バッファあたり 100ms のタイムスライス */
+ return recorder;
+}</pre>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{ SpecName('MediaStream Recording', '#errorevent-section', 'MediaRecorderErrorEvent.error') }}</td>
+ <td>{{ Spec2('MediaStream Recording') }}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div class="hidden">
+<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
+</div>
+
+<p>{{Compat("api.MediaRecorderErrorEvent.error")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/API/MediaStream_Recording_API">MediaStream Recording API</a></li>
+ <li><a href="/ja/docs/Web/API/MediaStream_Recording_API/Using_the_MediaStream_Recording_API">Media​Stream Recording API の使用</a></li>
+</ul>
diff --git a/files/ja/web/api/mediarecordererrorevent/index.html b/files/ja/web/api/mediarecordererrorevent/index.html
new file mode 100644
index 0000000000..0a070b6859
--- /dev/null
+++ b/files/ja/web/api/mediarecordererrorevent/index.html
@@ -0,0 +1,71 @@
+---
+title: MediaRecorderErrorEvent
+slug: Web/API/MediaRecorderErrorEvent
+tags:
+ - AV
+ - Audio
+ - Error
+ - Event
+ - Interface
+ - Media
+ - MediaRecorderErrorEvent
+ - MediaStream
+ - MediaStream Recording
+ - MediaStream Recording API
+ - Recording Audio
+ - Recording Media
+ - Recording Video
+ - Video
+ - WebRTC
+translation_of: Web/API/MediaRecorderErrorEvent
+---
+<div>{{APIRef("MediaStream Recording")}}</div>
+
+<p><span class="seoSummary"><code>MediaRecorderErrorEvent</code> インターフェイスは、<a href="/ja/docs/Web/API/MediaStream_Recording_API">MediaStream Recording API</a> によって返されるエラーを表します。 発生したエラーを記述する {{domxref("DOMException")}} への参照をカプセル化した {{domxref("Event")}} オブジェクトです。</span></p>
+
+<h2 id="Properties" name="Properties">プロパティ</h2>
+
+<p><em>親インタフェースである {{domxref("Event")}} からプロパティを継承します。</em></p>
+
+<dl>
+ <dt>{{domxref("MediaRecorderErrorEvent.error", "error")}} {{ReadOnlyInline}}</dt>
+ <dd>発生したエラーに関する情報を含む {{domxref("DOMException")}}。 読み取り専用</dd>
+</dl>
+
+<h2 id="Constructor" name="Constructor">コンストラクタ</h2>
+
+<dl>
+ <dt>{{domxref("MediaRecorderErrorEvent.MediaRecorderErrorEvent", "MediaStreamRecorderEvent()")}}</dt>
+ <dd>指定されたパラメータを使用して新しい <code>MediaRecorderErrorEvent</code> イベントオブジェクトを作成して返します。</dd>
+</dl>
+
+<h2 id="Methods" name="Methods">メソッド</h2>
+
+<p><em>親インタフェースである {{domxref("Event")}} からメソッドを継承します。</em></p>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{ SpecName('MediaStream Recording', 'MediaRecorder.html#errorevent-section', 'MediaRecorderErrorEvent') }}</td>
+ <td>{{ Spec2('MediaStream Recording') }}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div class="hidden">
+<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
+</div>
+
+<p>{{Compat("api.MediaRecorderErrorEvent")}}</p>
diff --git a/files/ja/web/api/mediarecordererrorevent/mediarecordererrorevent/index.html b/files/ja/web/api/mediarecordererrorevent/mediarecordererrorevent/index.html
new file mode 100644
index 0000000000..c65d88eaa5
--- /dev/null
+++ b/files/ja/web/api/mediarecordererrorevent/mediarecordererrorevent/index.html
@@ -0,0 +1,71 @@
+---
+title: MediaRecorderErrorEvent()
+slug: Web/API/MediaRecorderErrorEvent/MediaRecorderErrorEvent
+tags:
+ - API
+ - Audio
+ - Constructor
+ - Media
+ - Media Capture
+ - Media Capture and Streams
+ - MediaRecordingErrorEvent
+ - MediaStream Recording
+ - MediaStream Recording API
+ - Recording
+ - Video
+translation_of: Web/API/MediaRecorderErrorEvent/MediaRecorderErrorEvent
+---
+<p>{{APIRef("MediaStream Recording")}}</p>
+
+<p><span class="seoSummary"><strong><code>MediaRecorderErrorEvent()</code></strong> コンストラクタは、<a href="/ja/docs/Web/API/MediaStream_Recording_API">MediaStream Recording API</a> によるメディアの記録中に発生したエラーを表す新しい {{domxref("MediaRecorderErrorEvent")}} オブジェクトを作成します。</span></p>
+
+<div class="note">
+<p>一般に、あなたはこれらを自分で作成することはありません。 メディアの記録中にエラーが発生すると、それらは {{domxref("MediaRecorder.onerror")}} の実装に配信されます。</p>
+</div>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox">var <em>errorEvent</em> = new MediaRecorderErrorEvent(<em>errorInfo</em>)</pre>
+
+<h3 id="Parameters" name="Parameters">パラメーター</h3>
+
+<dl>
+ <dt><code>errorInfo</code></dt>
+ <dd>作成する error オブジェクトを記述するオブジェクト。 最低でも <code>error</code> プロパティを含める<em>必要</em>があります。
+ <dl>
+ <dt><code>error</code></dt>
+ <dd>発生したエラーを説明する {{domxref("DOMException")}}。 このオブジェクトの {{domxref("DOMException.name", "name")}} プロパティは、発生したエラーの名前を示すべきです。 他のフィールドは存在する場合と存在しない場合があります。</dd>
+ </dl>
+ </dd>
+</dl>
+
+<div class="note">
+<p>一部の{{Glossary("user agent", "ユーザーエージェント")}}は、スタックダンプ、JavaScript ファイルの名前、エラーが発生した行番号、その他のデバッグツールなどの情報を提供するその他のプロパティを <code>error</code> オブジェクトに追加しますが、本番環境ではこの情報に頼るべきではありません。</p>
+</div>
+
+<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','#dom-mediarecordererrorevent-mediarecordererrorevent','MediaRecorderErrorEvent()')}}</td>
+ <td>{{Spec2('MediaStream Recording')}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div class="hidden">
+<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
+</div>
+
+<p>{{Compat("api.MediaRecorderErrorEvent.MediaRecorderErrorEvent")}}</p>
+
+<p> </p>