aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmlaudioelement/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/htmlaudioelement/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/htmlaudioelement/index.html')
-rw-r--r--files/ja/web/api/htmlaudioelement/index.html126
1 files changed, 126 insertions, 0 deletions
diff --git a/files/ja/web/api/htmlaudioelement/index.html b/files/ja/web/api/htmlaudioelement/index.html
new file mode 100644
index 0000000000..73f11f648b
--- /dev/null
+++ b/files/ja/web/api/htmlaudioelement/index.html
@@ -0,0 +1,126 @@
+---
+title: HTMLAudioElement
+slug: Web/API/HTMLAudioElement
+tags:
+ - API
+ - HTML DOM
+ - HTMLAudioElement
+ - Interface
+ - Reference
+translation_of: Web/API/HTMLAudioElement
+---
+<p><strong><code>HTMLAudioElement</code></strong> インターフェイスは {{HTMLElement("audio")}} 要素のプロパティと、操作するメソッドを提供します。 {{domxref("HTMLMediaElement")}} インターフェイスから派生しています。</p>
+
+<p>{{InheritanceDiagram(600, 120)}}</p>
+
+<h2 id="Properties" name="Properties">プロパティ</h2>
+
+<p><em>固有のプロパティはありません。親である {{domxref("HTMLMediaElement")}} および {{domxref("HTMLElement")}} からプロパティを継承しています。</em></p>
+
+<h2 id="Methods" name="Methods">メソッド</h2>
+
+<p><em>{{domxref("HTMLMediaElement")}} および {{domxref("HTMLElement")}} からメソッドを継承しています。</em></p>
+
+<h3 id="Constructor" name="Constructor">コンストラクター</h3>
+
+<h4 id="Syntax" name="Syntax">構文</h4>
+
+<pre class="syntaxbox">mySound = new Audio([<em>URLString</em>]);
+</pre>
+
+<h4 id="Description" name="Description">説明</h4>
+
+<p>audio 要素のコンストラクターです。返されるオブジェクトの <code>preload</code> プロパティは <code>auto</code> に設定され、 <code>src</code> プロパティは引数の値が設定されます。ブラウザーはオブジェクトを返す前、<em>非同期的に</em>リソースの選択を始めます。</p>
+
+<p><em>メモ: <code>new Audio()</code> で作成された audio 要素は、音声を再生中にガベージコレクションされることはありません。 <code>pause()</code> メソッドが呼ばれるか、再生が終了するまで、再生を続けます。</em></p>
+
+<h4 id="Parameters" name="Parameters"><em>引数</em></h4>
+
+<dl>
+ <dt><em><code>URLString</code> (期待される型: {{domxref("DOMString")}}; 任意)</em></dt>
+ <dd><em>構築される <code>HTMLAudioElement</code> の <code>src </code> プロパティ</em></dd>
+</dl>
+
+<h3 id="Regular_methods" name="Regular_methods"><em>通常メソッド</em></h3>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col"><em>名前と引数</em></th>
+ <th scope="col"><em>返値</em></th>
+ <th scope="col"><em>説明</em></th>
+ </tr>
+ <tr>
+ <td><em><code>mozCurrentSampleOffset()</code> {{non-standard_inline}}</em></td>
+ <td><em><code>unsigned long long</code></em></td>
+ <td><em><code>mozWriteAudio()</code> によって作成された音声ストリームの、現在のオフセットを示します。このオフセットは、ストリームの先頭からのサンプル番号で指定されます。</em></td>
+ </tr>
+ <tr>
+ <td>
+ <p><em><code>mozSetup(in PRUint32 channels, in PRUint32 rate)</code> {{non-standard_inline}}</em></p>
+ </td>
+ <td><em><code>void</code></em></td>
+ <td><em>書き込み用の音声ストリームを初期化します。引数でチャンネル数 (<code>1</code> でモノラル、 <code>2</code> でステレオ) とサンプリング周波数 (例えば 44.1kHz の場合は <code>44100</code>) を指定できます。</em></td>
+ </tr>
+ <tr>
+ <td><em><code>mozWriteAudio(in jsval data) </code>{{non-standard_inline}}</em></td>
+ <td><em><code>unsigned long</code></em></td>
+ <td><em>ストリームの現在のオフセットに音声を書き込みます。実際にストリームに書き込まれたバイト数を返します。</em></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Examples" name="Examples"><em>例</em></h2>
+
+<h3 id="Basic_usage" name="Basic_usage"><em>基本的な使用</em></h3>
+
+<p><em><code>HTMLAudioElement</code> を完全に JavaScript で生成します。</em></p>
+
+<pre><em>var flush = new Audio('toilet_flush.wav');
+flush.play();
+</em></pre>
+
+<p><em>audio 要素でもっと一般的に使用されるプロパティとしては、 <code>src</code>, <code>currentTime</code>, <code>duration</code>, <code>paused</code>, <code>muted</code>, <code>volume</code> などがあります。</em></p>
+
+<pre><em>var flush = new Audio('toilet_flush.wav');
+flush.addEventListener('loadeddata',() =&gt; {
+ var duration = flush.duration; // the duration variable now holds the duration (in seconds) of the audio clip
+})</em></pre>
+
+<h2 id="Specifications" name="Specifications"><em>仕様書</em></h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col"><em>仕様書</em></th>
+ <th scope="col"><em>状態</em></th>
+ <th scope="col"><em>備考</em></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><em>{{SpecName('HTML WHATWG', "#htmlaudioelement", "HTMLAudioElement")}}</em></td>
+ <td><em>{{Spec2('HTML WHATWG')}}</em></td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td><em>{{SpecName('HTML5 W3C', "embedded-content-0.html#the-audio-element", "HTMLAudioElement")}}</em></td>
+ <td><em>{{Spec2('HTML5 W3C')}}</em></td>
+ <td><em> </em></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility"><em>ブラウザーの対応</em></h2>
+
+<p class="hidden"><em>このページの互換性一覧表は構造化データから生成されています。データに協力したいのであれば、 <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</em></p>
+
+<p><em>{{Compat("api.HTMLAudioElement")}}</em></p>
+
+<h2 id="See_also" name="See_also"><em>関連情報</em></h2>
+
+<ul>
+ <li><em>このインタフェースを実装した HTML 要素: {{HTMLElement("audio")}}</em></li>
+</ul>
+
+<div><em>{{APIRef("HTML DOM")}}</em></div>