aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/audioworkletnode
diff options
context:
space:
mode:
authorCor <83723320+logic-finder@users.noreply.github.com>2021-11-18 19:16:43 +0900
committerGitHub <noreply@github.com>2021-11-18 19:16:43 +0900
commit1c9d01e87c3c6a3054ffe1ba69772c9379eb38c0 (patch)
tree732ff06ac4ded144a4a92cd41c4427bc38b0969a /files/ko/web/api/audioworkletnode
parent7c8dc0e7361c5b9b8d60ded08c35dba37951ec51 (diff)
downloadtranslated-content-1c9d01e87c3c6a3054ffe1ba69772c9379eb38c0.tar.gz
translated-content-1c9d01e87c3c6a3054ffe1ba69772c9379eb38c0.tar.bz2
translated-content-1c9d01e87c3c6a3054ffe1ba69772c9379eb38c0.zip
[ko] translation modified and additional modification (#3133)
* overall modification * little fix
Diffstat (limited to 'files/ko/web/api/audioworkletnode')
-rw-r--r--files/ko/web/api/audioworkletnode/audioworkletnode/index.md4
-rw-r--r--files/ko/web/api/audioworkletnode/parameters/index.md2
2 files changed, 3 insertions, 3 deletions
diff --git a/files/ko/web/api/audioworkletnode/audioworkletnode/index.md b/files/ko/web/api/audioworkletnode/audioworkletnode/index.md
index 4c9d794b93..6ababc6624 100644
--- a/files/ko/web/api/audioworkletnode/audioworkletnode/index.md
+++ b/files/ko/web/api/audioworkletnode/audioworkletnode/index.md
@@ -43,7 +43,7 @@ var node = new AudioWorkletNode(context, name, options);
- `outputChannelCount` {{optional_inline}}
- : 각 출력에 대한 채널의 숫자를 정의하는 **배열**. 예를 들자면, _outputChannelCount: \[n, m]_ 은 첫번째 출력의 채널 숫자를 _n_ 으로 그리고 두번째 출력을 _m_ 으로 명시합니다. 배열의 길이는 반드시 `numberOfOutputs`과 일치해야 합니다.
- `parameterData` {{optional_inline}}
- - : `key`가 사용자 정의 매개변수의 이름이고 `value`가 이것의 초기 값인 채로, (노드의 {{domxref("AudioWorkletNode.parameters", "parameters")}} 속성에 있는) 이 노드에 있는 사용자 정의 {{domxref("AudioParam")}} 객체의 초기 값을 포함하는 객체.
+ - : `key`가 사용자 정의 파라미터의 이름이고 `value`가 이것의 초기 값인 채로, (노드의 {{domxref("AudioWorkletNode.parameters", "parameters")}} 속성에 있는) 이 노드에 있는 사용자 정의 {{domxref("AudioParam")}} 객체의 초기 값을 포함하는 객체.
- `processorOptions` {{optional_inline}}
- : 근본적인 {{domxref("AudioWorkletProcessor")}}의 사용자 정의 초기화를 위해 사용될 수 있는 모든 추가적인 데이터.
@@ -60,7 +60,7 @@ var node = new AudioWorkletNode(context, name, options);
- `IndexSizeError` {{domxref("DOMException")}}
- : `options.outputChannelCount` 배열의 길이가 `options.numberOfOutputs`와 일치하지 않습니다.
-## 사용 시 참고할 점
+## 사용 일람
각기 다른 `options` 매개변수 값들은 다음의 영향을 가질 수 있습니다.
diff --git a/files/ko/web/api/audioworkletnode/parameters/index.md b/files/ko/web/api/audioworkletnode/parameters/index.md
index 11eb8f5b83..397514e10a 100644
--- a/files/ko/web/api/audioworkletnode/parameters/index.md
+++ b/files/ko/web/api/audioworkletnode/parameters/index.md
@@ -53,7 +53,7 @@ class WhiteNoiseProcessor extends AudioWorkletProcessor {
for (let i = 0; i < channel.length; i++) {
channel[i] = (Math.random() * 2 - 1) *
(parameters['customGain'].length > 1 ? parameters['customGain'][i] : parameters['customGain'][0])
- // 참고: 매개변수는 128개의 값 (각 128 샘플에 대한 하나의 값) 을 가진 배열을 포함하지만,
+ // 참고: 파라미터는 128개의 값 (각 128 샘플에 대한 하나의 값) 을 가진 배열을 포함하지만,
// 만약 그 순간에 자동화가 스케쥴되어 있지 않다면
// 모든 128개의 샘플에 대해 사용될 하나의 값을 포함할 수도 있습니다.
}