@jjlmoya/utils-hardware 1.23.0 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/src/category/index.ts +4 -1
- package/src/entries.ts +10 -1
- package/src/index.ts +3 -0
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/keyboardChatterTest/bibliography.astro +15 -0
- package/src/tool/keyboardChatterTest/bibliography.ts +20 -0
- package/src/tool/keyboardChatterTest/component.astro +353 -0
- package/src/tool/keyboardChatterTest/entry.ts +30 -0
- package/src/tool/keyboardChatterTest/i18n/de.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/en.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/es.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/fr.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/id.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/it.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/ja.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/ko.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/nl.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/pl.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/pt.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/ru.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/sv.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/tr.ts +232 -0
- package/src/tool/keyboardChatterTest/i18n/zh.ts +232 -0
- package/src/tool/keyboardChatterTest/index.ts +12 -0
- package/src/tool/keyboardChatterTest/keyboard-chatter-test.css +512 -0
- package/src/tool/keyboardChatterTest/logic.ts +23 -0
- package/src/tool/keyboardChatterTest/seo.astro +16 -0
- package/src/tool/keyboardChatterTest/ui.ts +34 -0
- package/src/tool/stereoAudioTest/bibliography.astro +14 -0
- package/src/tool/stereoAudioTest/bibliography.ts +16 -0
- package/src/tool/stereoAudioTest/component.astro +251 -0
- package/src/tool/stereoAudioTest/entry.ts +29 -0
- package/src/tool/stereoAudioTest/i18n/de.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/en.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/es.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/fr.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/id.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/it.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/ja.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/ko.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/nl.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/pl.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/pt.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/ru.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/sv.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/tr.ts +229 -0
- package/src/tool/stereoAudioTest/i18n/zh.ts +229 -0
- package/src/tool/stereoAudioTest/index.ts +11 -0
- package/src/tool/stereoAudioTest/logic.ts +22 -0
- package/src/tool/stereoAudioTest/seo.astro +15 -0
- package/src/tool/stereoAudioTest/stereo-audio-test.css +411 -0
- package/src/tool/stereoAudioTest/ui.ts +24 -0
- package/src/tool/webBluetoothBleScanner/bibliography.astro +14 -0
- package/src/tool/webBluetoothBleScanner/bibliography.ts +16 -0
- package/src/tool/webBluetoothBleScanner/component.astro +339 -0
- package/src/tool/webBluetoothBleScanner/entry.ts +29 -0
- package/src/tool/webBluetoothBleScanner/i18n/de.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/en.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/es.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/fr.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/id.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/it.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/ja.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/ko.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/nl.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/pl.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/pt.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/ru.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/sv.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/tr.ts +233 -0
- package/src/tool/webBluetoothBleScanner/i18n/zh.ts +233 -0
- package/src/tool/webBluetoothBleScanner/index.ts +11 -0
- package/src/tool/webBluetoothBleScanner/logic.ts +79 -0
- package/src/tool/webBluetoothBleScanner/seo.astro +15 -0
- package/src/tool/webBluetoothBleScanner/ui.ts +41 -0
- package/src/tool/webBluetoothBleScanner/web-bluetooth-ble-scanner.css +406 -0
- package/src/tools.ts +4 -1
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { StereoAudioTestUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'test-audio-stereo';
|
|
7
|
+
const title = 'Test audio stéréo';
|
|
8
|
+
const description = 'Vérifiez les canaux gauche et droit des enceintes, la balance stéréo, le sens du câblage et l\'image des écouteurs avec des tonalités de test générées par le navigateur.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Comment tester les enceintes gauche et droite en ligne ?',
|
|
13
|
+
answer: 'Commencez avec un volume bas, appuyez sur Gauche puis Droite. Le son gauche doit provenir uniquement de l\'enceinte ou de l\'écouteur gauche, et le son droit uniquement du côté droit. Utilisez Centre pour confirmer que les deux côtés jouent de manière équilibrée.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Pourquoi les deux enceintes jouent-elles pendant le test gauche ou droite ?',
|
|
17
|
+
answer: 'Certains appareils, systèmes d\'exploitation, enceintes Bluetooth, modes mono, paramètres d\'accessibilité ou améliorations audio convertissent le stéréo en mono. Vérifiez la balance système, les paramètres audio mono, le câblage et les effets audio spécifiques aux applications.',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
question: 'Cela peut-il diagnostiquer des câbles d\'enceinte inversés ?',
|
|
21
|
+
answer: 'Oui. Si le bouton Gauche joue sur l\'enceinte droite et le bouton Droite joue sur l\'enceinte gauche, le chemin de sortie est inversé quelque part entre l\'ordinateur, le câble, l\'amplificateur, les enceintes ou les écouteurs.',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
question: 'Une tonalité sinusoïdale est-elle sans danger pour les enceintes et les écouteurs ?',
|
|
25
|
+
answer: 'Une courte tonalité sinusoïdale à volume modéré est normalement sans danger. Évitez le volume élevé, les longues sessions ou les très hautes fréquences, surtout avec des écouteurs, de petites enceintes d\'ordinateur portable ou des amplificateurs inconnus.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: 'Le navigateur affecte-t-il le test stéréo ?',
|
|
29
|
+
answer: 'L\'outil utilise le StereoPannerNode de l\'API Web Audio. Il est fiable dans les navigateurs modernes, mais la sortie finale dépend toujours du routage du système d\'exploitation, des pilotes, des codecs Bluetooth, des DAC externes et du câblage des enceintes.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Réglez un volume de départ bas',
|
|
36
|
+
text: 'Baissez le volume système et utilisez le curseur de volume de l\'outil avant de jouer une tonalité de test.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Testez chaque côté',
|
|
40
|
+
text: 'Appuyez sur Gauche et Droite. Chaque tonalité doit être clairement isolée sur l\'enceinte ou l\'écouteur correspondant.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Vérifiez la balance centrale',
|
|
44
|
+
text: 'Appuyez sur Centre. La tonalité doit apparaître centrée entre les deux enceintes, sans être fortement tirée d\'un côté.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Utilisez le balayage',
|
|
48
|
+
text: 'Lancez Balayage pour entendre le mouvement à travers le champ stéréo et repérer les coupures, le câblage inversé ou l\'image inégale.',
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqData.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const howToSchema: WithContext<HowTo> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'HowTo',
|
|
65
|
+
name: title,
|
|
66
|
+
description,
|
|
67
|
+
step: howToData.map((step, i) => ({
|
|
68
|
+
'@type': 'HowToStep',
|
|
69
|
+
position: i + 1,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'UtilityApplication',
|
|
81
|
+
operatingSystem: 'All',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'USD' },
|
|
83
|
+
inLanguage: 'fr',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const content: ToolLocaleContent<StereoAudioTestUI> = {
|
|
87
|
+
slug,
|
|
88
|
+
title,
|
|
89
|
+
description,
|
|
90
|
+
faq: faqData,
|
|
91
|
+
bibliography,
|
|
92
|
+
howTo: howToData,
|
|
93
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
94
|
+
seo: [
|
|
95
|
+
{
|
|
96
|
+
type: 'title',
|
|
97
|
+
text: 'Test d\'enceinte gauche et droite en ligne',
|
|
98
|
+
level: 2,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
type: 'paragraph',
|
|
102
|
+
html: 'Utilisez ce test audio stéréo en ligne pour vérifier si vos enceintes gauche et droite, écouteurs, oreillettes, barre de son, DAC, amplificateur ou enceintes de monitoring sont correctement routés. L\'outil joue des tonalités générées par le navigateur via le canal gauche, le canal droit, les deux canaux ou un balayage stéréo mobile afin que vous puissiez détecter rapidement les canaux inversés, la sortie mono, les enceintes faibles, les problèmes de balance et les erreurs de câblage sans installer de logiciel audio.',
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
type: 'paragraph',
|
|
106
|
+
html: 'Une configuration stéréo correcte préserve la direction: la tonalité de test gauche doit provenir uniquement de l\'enceinte ou de l\'écouteur gauche, la tonalité droite uniquement du côté droit, et la tonalité centrale doit sembler également équilibrée entre les deux côtés. Si le son apparaît du mauvais côté, des deux côtés à la fois, ou beaucoup plus fort d\'un côté, le problème vient généralement des paramètres de sortie, du mode d\'accessibilité mono, du câblage, du routage Bluetooth, de l\'emplacement des enceintes ou du logiciel d\'amélioration audio.',
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'table',
|
|
110
|
+
headers: ['Bouton', 'Ce que vous devriez entendre', 'Utilisez-le pour diagnostiquer'],
|
|
111
|
+
rows: [
|
|
112
|
+
['Gauche', 'Tonalité uniquement de l\'enceinte gauche, du haut-parleur gauche du casque ou de l\'oreillette gauche.', 'Câbles inversés, mauvais emplacement des enceintes, sortie mono ou remappage des canaux.'],
|
|
113
|
+
['Droite', 'Tonalité uniquement de l\'enceinte droite, du haut-parleur droit du casque ou de l\'oreillette droite.', 'Sorties inversées, câblage d\'adaptateur incorrect ou effets de pilote modifiant l\'ordre des canaux.'],
|
|
114
|
+
['Centre', 'La tonalité apparaît au centre car les deux canaux jouent de manière équilibrée.', 'Décalage de la balance système, une enceinte faible, grille d\'oreillette obstruée ou gain d\'ampli inégal.'],
|
|
115
|
+
['Balayage', 'La tonalité se déplace doucement à travers l\'image stéréo d\'un côté à l\'autre.', 'Coupures, liaisons Bluetooth instables, problèmes de phase, artefacts de son surround virtuel ou image inégale.'],
|
|
116
|
+
],
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'title',
|
|
120
|
+
text: 'Problèmes stéréo les plus courants détectés par ce test',
|
|
121
|
+
level: 3,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type: 'list',
|
|
125
|
+
items: [
|
|
126
|
+
'Les canaux gauche et droit sont inversés: le bouton gauche joue du côté droit, ou le bouton droit joue du côté gauche.',
|
|
127
|
+
'Le stéréo est devenu mono: gauche, droite et centre sonnent presque identiques depuis les deux enceintes.',
|
|
128
|
+
'Un côté est plus faible: l\'audio central tire vers une enceinte même lorsque le curseur de balance système semble centré.',
|
|
129
|
+
'Les écouteurs sont mal câblés ou portés: les pas de jeu, le panoramique musical et les appels vidéo semblent spatialement confus.',
|
|
130
|
+
'L\'audio Bluetooth ou USB est traité: les barres de son, docks, casques et modes TV peuvent convertir ou virtualiser le signal.',
|
|
131
|
+
'L\'emplacement des enceintes est trompeur: une enceinte trop proche d\'un mur, bloquée par des meubles ou plus éloignée peut faire dériver l\'image centrale.',
|
|
132
|
+
],
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
type: 'title',
|
|
136
|
+
text: 'Comment réparer l\'audio gauche et droite inversé',
|
|
137
|
+
level: 3,
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
type: 'list',
|
|
141
|
+
items: [
|
|
142
|
+
'Pour les enceintes filaires, échangez les fiches gauche et droite au niveau de l\'amplificateur, de l\'interface audio, du DAC ou de la sortie de l\'ordinateur.',
|
|
143
|
+
'Pour les enceintes passives, confirmez que l\'enceinte gauche est connectée aux bornes gauches de l\'amplificateur et l\'enceinte droite aux bornes droites.',
|
|
144
|
+
'Pour les écouteurs, vérifiez qu\'ils sont portés dans la bonne orientation et testez sans adaptateurs, câbles de rallonge ou répartiteurs.',
|
|
145
|
+
'Sous Windows ou macOS, vérifiez la balance de sortie et désactivez l\'audio mono dans les paramètres d\'accessibilité ou de son.',
|
|
146
|
+
'Pour les enceintes Bluetooth et les barres de son, désactivez le son surround virtuel, le mode fête, l\'audio double, la correction de pièce ou les modes son TV pendant le test.',
|
|
147
|
+
'Pour les interfaces audio, DAW et mixeurs, vérifiez le routage des canaux, les contrôles de panoramique, les réglages de mixage de retour et tout mixeur logiciel fourni par le fabricant.',
|
|
148
|
+
],
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
type: 'title',
|
|
152
|
+
text: 'Comment interpréter le test d\'enceinte centrale',
|
|
153
|
+
level: 3,
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'paragraph',
|
|
157
|
+
html: 'La tonalité centrale n\'est pas une enceinte centrale physique séparée dans une configuration normale à deux canaux. C\'est le même signal envoyé uniformément à gauche et à droite. Au casque, elle doit sembler centrée dans la tête ; sur des enceintes, elle doit former un centre fantôme entre elles. Si elle penche à gauche ou à droite, vérifiez la balance système, la distance des enceintes, l\'angle des enceintes, les boutons de volume, le réglage de l\'amplificateur, l\'ajustement des oreillettes, la poussière dans la grille du haut-parleur et si une enceinte est partiellement bloquée ou défaillante.',
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type: 'table',
|
|
161
|
+
headers: ['Ce qui se passe', 'Cause probable', 'Étape suivante'],
|
|
162
|
+
rows: [
|
|
163
|
+
['Gauche joue des deux côtés', 'Audio mono, mixage descendant ou traitement audio spatial.', 'Désactivez la sortie mono et le son surround virtuel, puis testez à nouveau.'],
|
|
164
|
+
['Gauche joue du côté droit', 'Les canaux sont inversés quelque part dans la chaîne de lecture.', 'Échangez les câbles ou modifiez le routage des canaux dans le pilote, le mixeur ou l\'amplificateur.'],
|
|
165
|
+
['Le centre est plus fort d\'un côté', 'Balance, emplacement, dommage du haut-parleur, ajustement de l\'oreille ou grille d\'enceinte bloquée.', 'Comparez avec un autre casque ou paire d\'enceintes et inspectez l\'emplacement physique.'],
|
|
166
|
+
['Le balayage saute ou disparaît', 'Instabilité Bluetooth, artefacts d\'amélioration audio ou un câble/connecteur défaillant.', 'Testez avec une sortie filaire ou un autre câble pour isoler le maillon faible.'],
|
|
167
|
+
],
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
type: 'title',
|
|
171
|
+
text: 'Test gauche droite pour casques et oreillettes',
|
|
172
|
+
level: 3,
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
type: 'paragraph',
|
|
176
|
+
html: 'Pour les casques et les oreillettes, le test gauche/droite est particulièrement utile avant de jouer, d\'éditer de l\'audio, de regarder des films ou de rejoindre des appels. Mettez le casque normalement, commencez à faible volume, appuyez sur Gauche et Droite, et confirmez que chaque tonalité arrive sur la bonne oreille. Si les deux côtés sonnent pareil, votre appareil utilise peut-être l\'audio mono. Si un côté est étouffé ou plus faible, nettoyez la grille de l\'oreillette, repositionnez l\'embout, vérifiez le câble et comparez avec un autre appareil de sortie.',
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
type: 'title',
|
|
180
|
+
text: 'Conseils pour des tests audio en toute sécurité',
|
|
181
|
+
level: 3,
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
type: 'list',
|
|
185
|
+
items: [
|
|
186
|
+
'Commencez avec un volume système bas, surtout avec des écouteurs.',
|
|
187
|
+
'Utilisez Boucle jusqu\'à l\'arrêt uniquement lorsque vous avez activement besoin de son continu pour le traçage de câbles, l\'emplacement ou l\'ajustement de la balance.',
|
|
188
|
+
'Gardez les tonalités de test courtes avec de petites enceintes ; les ondes sinusoïdales continues peuvent devenir inconfortables rapidement.',
|
|
189
|
+
'Évitez le gain maximum sur les petites enceintes d\'ordinateur portable et les amplificateurs inconnus.',
|
|
190
|
+
'Ne placez pas les écouteurs sur vos oreilles avant d\'avoir confirmé que le volume est sûr.',
|
|
191
|
+
'Après avoir changé les câbles ou les paramètres, répétez les tests gauche, droite, centre et balayage dans cet ordre.',
|
|
192
|
+
'Pour l\'étalonnage en studio ou home cinéma, combinez ce test rapide avec un sonomètre ou la routine d\'étalonnage du récepteur.',
|
|
193
|
+
],
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
type: 'title',
|
|
197
|
+
text: 'Diagnostic rapide',
|
|
198
|
+
level: 3,
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
type: 'paragraph',
|
|
202
|
+
html: 'Si gauche et droite sont inversés, inspectez d\'abord le câblage physique car c\'est la solution la plus rapide pour les enceintes de bureau, les amplificateurs et les interfaces audio. Si les deux boutons jouent des deux côtés, recherchez une sortie mono, l\'audio spatial, le son surround virtuel ou un appareil qui convertit intentionnellement le stéréo en mono. Si le centre est décentré mais que gauche et droite sont correctement routés, le problème vient généralement de la balance, de l\'emplacement, de l\'ajustement des écouteurs, des grilles obstruées ou d\'une sortie inégale des enceintes.',
|
|
203
|
+
},
|
|
204
|
+
],
|
|
205
|
+
ui: {
|
|
206
|
+
left: 'Gauche',
|
|
207
|
+
center: 'Centre',
|
|
208
|
+
right: 'Droite',
|
|
209
|
+
sweep: 'Balayage',
|
|
210
|
+
stop: 'Arrêter',
|
|
211
|
+
volume: 'Volume',
|
|
212
|
+
duration: 'Durée',
|
|
213
|
+
infiniteMode: 'Boucle jusqu\'à l\'arrêt',
|
|
214
|
+
infiniteModeHint: 'Garde un canal en lecture pour des tests continus.',
|
|
215
|
+
secondsUnit: 's',
|
|
216
|
+
hertzUnit: 'Hz',
|
|
217
|
+
tone: 'Tonalité',
|
|
218
|
+
balance: 'Balance',
|
|
219
|
+
activeIdle: 'Prêt',
|
|
220
|
+
activeLeft: 'Lecture canal gauche',
|
|
221
|
+
activeCenter: 'Lecture tonalité centrée',
|
|
222
|
+
activeRight: 'Lecture canal droit',
|
|
223
|
+
activeSweep: 'Balayage du champ stéréo',
|
|
224
|
+
safety: 'Commencez bas. Les tonalités de test peuvent être fortes via les écouteurs, amplificateurs et petites enceintes d\'ordinateur portable.',
|
|
225
|
+
leftSpeaker: 'Enceinte gauche',
|
|
226
|
+
rightSpeaker: 'Enceinte droite',
|
|
227
|
+
centerLine: 'Champ stéréo',
|
|
228
|
+
},
|
|
229
|
+
};
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { StereoAudioTestUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'tes-audio-stereo';
|
|
7
|
+
const title = 'Tes Audio Stereo';
|
|
8
|
+
const description = 'Periksa saluran speaker kiri dan kanan, keseimbangan stereo, arah kabel, dan pencitraan headphone dengan nada uji yang dihasilkan browser.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Bagaimana cara menguji speaker kiri dan kanan secara online?',
|
|
13
|
+
answer: 'Mulai dengan volume rendah, tekan Kiri lalu Kanan. Nada kiri seharusnya hanya terdengar dari speaker kiri atau earcup kiri, dan nada kanan hanya dari sisi kanan. Gunakan Tengah untuk mengkonfirmasi kedua sisi bermain seimbang.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Mengapa kedua speaker berbunyi saat tes kiri atau kanan?',
|
|
17
|
+
answer: 'Beberapa perangkat, sistem operasi, speaker Bluetooth, mode mono, pengaturan aksesibilitas, atau peningkatan audio men-downmix stereo ke mono. Periksa keseimbangan sistem, pengaturan audio mono, kabel, dan efek audio spesifik aplikasi.',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
question: 'Bisakah ini mendiagnosis kabel speaker yang tertukar?',
|
|
21
|
+
answer: 'Ya. Jika tombol Kiri berbunyi dari speaker kanan dan tombol Kanan berbunyi dari speaker kiri, jalur output terbalik di suatu tempat antara komputer, kabel, amplifier, speaker, atau headphone.',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
question: 'Apakah nada sinus aman untuk speaker dan headphone?',
|
|
25
|
+
answer: 'Nada sinus pendek pada volume sedang biasanya aman. Hindari volume tinggi, sesi panjang, atau frekuensi sangat tinggi, terutama dengan headphone, speaker laptop kecil, atau amplifier yang tidak dikenal.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: 'Apakah browser mempengaruhi pengujian stereo?',
|
|
29
|
+
answer: 'Alat ini menggunakan Web Audio API StereoPannerNode. Ini dapat diandalkan di browser modern, tetapi output akhir tetap bergantung pada routing sistem operasi, driver, codec Bluetooth, DAC eksternal, dan kabel speaker.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Atur volume awal yang rendah',
|
|
36
|
+
text: 'Kurangi volume sistem dan gunakan penggeser volume alat sebelum memutar nada uji apa pun.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Uji setiap sisi',
|
|
40
|
+
text: 'Tekan Kiri dan Kanan. Setiap nada harus jelas terisolasi ke speaker atau sisi headphone yang cocok.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Periksa keseimbangan tengah',
|
|
44
|
+
text: 'Tekan Tengah. Nada harus muncul di tengah antara kedua speaker, tidak tertarik kuat ke satu sisi.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Gunakan sapuan',
|
|
48
|
+
text: 'Jalankan Sapuan untuk mendengar gerakan di seluruh bidang stereo dan menemukan putus-putus, kabel terbalik, atau pencitraan tidak merata.',
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqData.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const howToSchema: WithContext<HowTo> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'HowTo',
|
|
65
|
+
name: title,
|
|
66
|
+
description,
|
|
67
|
+
step: howToData.map((step, i) => ({
|
|
68
|
+
'@type': 'HowToStep',
|
|
69
|
+
position: i + 1,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'UtilityApplication',
|
|
81
|
+
operatingSystem: 'All',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'USD' },
|
|
83
|
+
inLanguage: 'id',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const content: ToolLocaleContent<StereoAudioTestUI> = {
|
|
87
|
+
slug,
|
|
88
|
+
title,
|
|
89
|
+
description,
|
|
90
|
+
faq: faqData,
|
|
91
|
+
bibliography,
|
|
92
|
+
howTo: howToData,
|
|
93
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
94
|
+
seo: [
|
|
95
|
+
{
|
|
96
|
+
type: 'title',
|
|
97
|
+
text: 'Tes Speaker Kiri dan Kanan Online',
|
|
98
|
+
level: 2,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
type: 'paragraph',
|
|
102
|
+
html: 'Gunakan tes audio stereo online ini untuk memeriksa apakah speaker kiri dan kanan, headphone, earbud, soundbar, DAC, amplifier, atau speaker monitor Anda dirutekan dengan benar. Alat ini memainkan nada yang dihasilkan browser melalui saluran kiri, saluran kanan, kedua saluran, atau sapuan stereo bergerak sehingga Anda dapat dengan cepat mendeteksi saluran terbalik, output mono, speaker lemah, masalah keseimbangan, dan kesalahan kabel tanpa menginstal perangkat lunak audio.',
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
type: 'paragraph',
|
|
106
|
+
html: 'Pengaturan stereo yang benar mempertahankan arah: nada uji kiri harus berasal hanya dari speaker kiri atau earcup kiri, nada uji kanan hanya dari sisi kanan, dan nada tengah harus terdengar seimbang antara kedua sisi. Jika suara muncul di sisi yang salah, kedua sisi sekaligus, atau jauh lebih keras di satu sisi, masalahnya biasanya ada pada pengaturan output, mode aksesibilitas mono, kabel, routing Bluetooth, penempatan speaker, atau perangkat lunak peningkatan audio.',
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'table',
|
|
110
|
+
headers: ['Tombol', 'Apa yang seharusnya Anda dengar', 'Gunakan untuk mendiagnosis'],
|
|
111
|
+
rows: [
|
|
112
|
+
['Kiri', 'Nada hanya dari speaker kiri, driver headphone kiri, atau earbud kiri.', 'Kabel terbalik, penempatan speaker salah, output mono, atau pemetaan ulang saluran.'],
|
|
113
|
+
['Kanan', 'Nada hanya dari speaker kanan, driver headphone kanan, atau earbud kanan.', 'Output tertukar, kabel adaptor salah, atau efek driver yang mengubah urutan saluran.'],
|
|
114
|
+
['Tengah', 'Nada muncul di tengah karena kedua saluran bermain seimbang.', 'Offset keseimbangan sistem, satu speaker lemah, mesh earbud tersumbat, atau gain amplifier tidak sama.'],
|
|
115
|
+
['Sapuan', 'Nada bergerak mulus melintasi gambar stereo dari sisi ke sisi.', 'Putus-putus, link Bluetooth tidak stabil, masalah fase, artefak surround virtual, atau pencitraan tidak merata.'],
|
|
116
|
+
],
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'title',
|
|
120
|
+
text: 'Masalah Stereo Paling Umum yang Ditemukan Tes Ini',
|
|
121
|
+
level: 3,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type: 'list',
|
|
125
|
+
items: [
|
|
126
|
+
'Saluran kiri dan kanan terbalik: tombol kiri berbunyi di sisi kanan, atau tombol kanan berbunyi di sisi kiri.',
|
|
127
|
+
'Stereo runtuh menjadi mono: kiri, kanan, dan tengah semuanya terdengar hampir identik dari kedua speaker.',
|
|
128
|
+
'Satu sisi lebih pelan: audio tengah tertarik ke satu speaker meskipun penggeser keseimbangan sistem terlihat di tengah.',
|
|
129
|
+
'Headphone dipasang atau dikenakan dengan salah: langkah kaki game, panning musik, dan panggilan video terasa membingungkan secara spasial.',
|
|
130
|
+
'Audio Bluetooth atau USB sedang diproses: soundbar, dock, headset, dan mode TV dapat men-downmix atau memvirtualisasikan sinyal.',
|
|
131
|
+
'Penempatan speaker menyesatkan: speaker terlalu dekat dengan dinding, terhalang furnitur, atau lebih jauh dapat membuat gambar tengah bergeser.',
|
|
132
|
+
],
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
type: 'title',
|
|
136
|
+
text: 'Cara Memperbaiki Audio Kiri dan Kanan yang Terbalik',
|
|
137
|
+
level: 3,
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
type: 'list',
|
|
141
|
+
items: [
|
|
142
|
+
'Untuk speaker kabel, tukar colokan kiri dan kanan di amplifier, antarmuka audio, DAC, atau output komputer.',
|
|
143
|
+
'Untuk speaker pasif, konfirmasi speaker kiri terhubung ke terminal kiri amplifier dan speaker kanan ke terminal kanan.',
|
|
144
|
+
'Untuk headphone, periksa apakah dikenakan dalam orientasi yang benar dan uji tanpa adaptor, kabel ekstensi, atau kabel splitter.',
|
|
145
|
+
'Untuk Windows atau macOS, periksa keseimbangan output dan nonaktifkan audio mono di pengaturan aksesibilitas atau suara.',
|
|
146
|
+
'Untuk speaker Bluetooth dan soundbar, nonaktifkan surround virtual, mode pesta, audio ganda, koreksi ruangan, atau mode suara TV saat pengujian.',
|
|
147
|
+
'Untuk antarmuka audio, DAW, dan mixer, periksa routing saluran, kontrol pan, pengaturan monitor mix, dan mixer perangkat lunak apa pun yang disediakan oleh pabrikan.',
|
|
148
|
+
],
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
type: 'title',
|
|
152
|
+
text: 'Cara Menginterpretasikan Tes Speaker Tengah',
|
|
153
|
+
level: 3,
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'paragraph',
|
|
157
|
+
html: 'Nada tengah bukanlah speaker tengah fisik terpisah dalam pengaturan dua saluran normal. Ini adalah sinyal yang sama yang dikirim secara merata ke kiri dan kanan. Pada headphone seharusnya terasa di tengah di dalam kepala; pada speaker seharusnya membentuk pusat phantom di antaranya. Jika condong ke kiri atau kanan, periksa keseimbangan sistem, jarak speaker, sudut speaker, kenop volume, trim amplifier, kecocokan earbud, debu di grille driver, dan apakah satu speaker terhalang sebagian atau rusak.',
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type: 'table',
|
|
161
|
+
headers: ['Apa yang terjadi', 'Kemungkinan penyebab', 'Langkah selanjutnya'],
|
|
162
|
+
rows: [
|
|
163
|
+
['Kiri berbunyi dari kedua sisi', 'Audio mono, downmixing, atau pemrosesan audio spasial.', 'Nonaktifkan output mono dan surround virtual, lalu uji lagi.'],
|
|
164
|
+
['Kiri berbunyi dari sisi kanan', 'Saluran tertukar di suatu tempat dalam rantai pemutaran.', 'Tukar kabel atau ubah routing saluran di driver, mixer, atau amplifier.'],
|
|
165
|
+
['Tengah lebih keras di satu sisi', 'Keseimbangan, penempatan, kerusakan driver, kecocokan telinga, atau grille speaker tersumbat.', 'Bandingkan dengan headset atau pasangan speaker lain dan periksa penempatan fisik.'],
|
|
166
|
+
['Sapuan melompat atau menghilang', 'Ketidakstabilan Bluetooth, artefak peningkatan audio, atau kabel/konektor yang rusak.', 'Uji dengan output kabel atau kabel lain untuk mengisolasi titik lemah.'],
|
|
167
|
+
],
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
type: 'title',
|
|
171
|
+
text: 'Tes Kiri Kanan Headphone dan Earbud',
|
|
172
|
+
level: 3,
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
type: 'paragraph',
|
|
176
|
+
html: 'Untuk headphone dan earbud, tes kiri/kanan sangat berguna sebelum bermain game, mengedit audio, menonton film, atau bergabung dengan panggilan. Pasang headset seperti biasa, mulai dengan volume rendah, tekan Kiri dan Kanan, dan konfirmasi setiap nada sampai di telinga yang benar. Jika kedua sisi terdengar sama, perangkat Anda mungkin menggunakan audio mono. Jika satu sisi tumpul atau lebih pelan, bersihkan mesh earbud, pasang kembali ujung telinga, periksa kabel, dan bandingkan dengan perangkat output lain.',
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
type: 'title',
|
|
180
|
+
text: 'Tips Pengujian Audio yang Aman',
|
|
181
|
+
level: 3,
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
type: 'list',
|
|
185
|
+
items: [
|
|
186
|
+
'Mulai dengan volume sistem rendah, terutama pada headphone.',
|
|
187
|
+
'Gunakan Loop sampai Berhenti hanya ketika Anda secara aktif membutuhkan suara terus menerus untuk penelusuran kabel, penempatan, atau penyesuaian keseimbangan.',
|
|
188
|
+
'Jaga nada uji tetap pendek saat menggunakan speaker kecil; gelombang sinus terus menerus dapat menjadi tidak nyaman dengan cepat.',
|
|
189
|
+
'Hindari gain maksimum pada speaker laptop kecil dan amplifier yang tidak dikenal.',
|
|
190
|
+
'Jangan letakkan headphone di telinga Anda sampai Anda mengkonfirmasi volume aman.',
|
|
191
|
+
'Setelah mengganti kabel atau pengaturan, ulangi tes kiri, kanan, tengah, dan sapuan dalam urutan itu.',
|
|
192
|
+
'Untuk kalibrasi studio atau home theater, gabungkan tes cepat ini dengan meteran SPL atau rutinitas kalibrasi receiver.',
|
|
193
|
+
],
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
type: 'title',
|
|
197
|
+
text: 'Diagnosis Cepat',
|
|
198
|
+
level: 3,
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
type: 'paragraph',
|
|
202
|
+
html: 'Jika kiri dan kanan tertukar, periksa kabel fisik terlebih dahulu karena itu adalah perbaikan tercepat untuk speaker desktop, amplifier, dan antarmuka audio. Jika kedua tombol berbunyi dari kedua sisi, cari output mono, audio spasial, surround virtual, atau perangkat yang sengaja men-downmix stereo. Jika tengah tidak di tengah tetapi kiri dan kanan dirutekan dengan benar, masalahnya biasanya keseimbangan, penempatan, kecocokan telinga, grille tersumbat, atau output speaker tidak merata.',
|
|
203
|
+
},
|
|
204
|
+
],
|
|
205
|
+
ui: {
|
|
206
|
+
left: 'Kiri',
|
|
207
|
+
center: 'Tengah',
|
|
208
|
+
right: 'Kanan',
|
|
209
|
+
sweep: 'Sapuan',
|
|
210
|
+
stop: 'Berhenti',
|
|
211
|
+
volume: 'Volume',
|
|
212
|
+
duration: 'Durasi',
|
|
213
|
+
infiniteMode: 'Loop sampai Berhenti',
|
|
214
|
+
infiniteModeHint: 'Jaga saluran tetap bermain untuk pengujian berkelanjutan.',
|
|
215
|
+
secondsUnit: 'd',
|
|
216
|
+
hertzUnit: 'Hz',
|
|
217
|
+
tone: 'Nada',
|
|
218
|
+
balance: 'Keseimbangan',
|
|
219
|
+
activeIdle: 'Siap',
|
|
220
|
+
activeLeft: 'Memutar saluran kiri',
|
|
221
|
+
activeCenter: 'Memutar nada tengah',
|
|
222
|
+
activeRight: 'Memutar saluran kanan',
|
|
223
|
+
activeSweep: 'Menyapu bidang stereo',
|
|
224
|
+
safety: 'Mulai rendah. Nada uji bisa keras melalui headphone, amplifier, dan speaker laptop kecil.',
|
|
225
|
+
leftSpeaker: 'Speaker kiri',
|
|
226
|
+
rightSpeaker: 'Speaker kanan',
|
|
227
|
+
centerLine: 'Bidang stereo',
|
|
228
|
+
},
|
|
229
|
+
};
|