diff options
Diffstat (limited to 'files/fr/web/api/audiobuffer/getchanneldata/index.html')
-rw-r--r-- | files/fr/web/api/audiobuffer/getchanneldata/index.html | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/files/fr/web/api/audiobuffer/getchanneldata/index.html b/files/fr/web/api/audiobuffer/getchanneldata/index.html index bab087dc68..7f64f907a0 100644 --- a/files/fr/web/api/audiobuffer/getchanneldata/index.html +++ b/files/fr/web/api/audiobuffer/getchanneldata/index.html @@ -5,15 +5,11 @@ translation_of: Web/API/AudioBuffer/getChannelData --- <p>{{ APIRef("Web Audio API") }}</p> -<div> -<div> -<p><span class="seoSummary">La méthode </span><code>getChannelData</code><span class="seoSummary"><code>() </code>de l'interface {{ domxref("AudioBuffer") }} renvoie un </span>{{domxref("Float32Array")}} contenant les données PCM associées au canal spécifié (0 correspondant au premier canal)<span class="seoSummary">.</span></p> -</div> -</div> +<p>La méthode <code>getChannelData() </code>de l'interface {{ domxref("AudioBuffer") }} renvoie un {{domxref("Float32Array")}} contenant les données PCM associées au canal spécifié (0 correspondant au premier canal).</p> <h2 id="Syntaxe">Syntaxe</h2> -<pre class="brush: js;highlight[22]">var tableauDonnees = contexteAudio.createBuffer(nombreCanaux, nombreFrames, contexteAudio.sampleRate); +<pre class="brush: js">var tableauDonnees = contexteAudio.createBuffer(nombreCanaux, nombreFrames, contexteAudio.sampleRate); var tampon = tableauDonnees.getChannelData(canal);</pre> <h3 id="Valeur">Valeur</h3> @@ -24,7 +20,7 @@ var tampon = tableauDonnees.getChannelData(canal);</pre> <p>Dans l'exemple suivant crée un buffer de 2 secondes, le remplit avec du bruit blanc puis le lit via un {{ domxref("AudioBufferSourceNode") }}. Vous pouvez aussi <a href="http://mdn.github.io/audio-buffer/">exécuter le code</a>, or <a href="https://github.com/mdn/audio-buffer">voir le code source</a>.</p> -<pre class="brush: js;highlight[21]">var contexteAudio = new (window.AudioContext || window.webkitAudioContext)(); +<pre class="brush: js">var contexteAudio = new (window.AudioContext || window.webkitAudioContext)(); var bouton = document.querySelector('button'); var preformate = document.querySelector('pre'); var monScript = document.querySelector('script'); |