@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.
Files changed (79) hide show
  1. package/package.json +2 -1
  2. package/src/category/index.ts +4 -1
  3. package/src/entries.ts +10 -1
  4. package/src/index.ts +3 -0
  5. package/src/tests/locale_completeness.test.ts +2 -2
  6. package/src/tests/tool_validation.test.ts +2 -2
  7. package/src/tool/keyboardChatterTest/bibliography.astro +15 -0
  8. package/src/tool/keyboardChatterTest/bibliography.ts +20 -0
  9. package/src/tool/keyboardChatterTest/component.astro +353 -0
  10. package/src/tool/keyboardChatterTest/entry.ts +30 -0
  11. package/src/tool/keyboardChatterTest/i18n/de.ts +232 -0
  12. package/src/tool/keyboardChatterTest/i18n/en.ts +232 -0
  13. package/src/tool/keyboardChatterTest/i18n/es.ts +232 -0
  14. package/src/tool/keyboardChatterTest/i18n/fr.ts +232 -0
  15. package/src/tool/keyboardChatterTest/i18n/id.ts +232 -0
  16. package/src/tool/keyboardChatterTest/i18n/it.ts +232 -0
  17. package/src/tool/keyboardChatterTest/i18n/ja.ts +232 -0
  18. package/src/tool/keyboardChatterTest/i18n/ko.ts +232 -0
  19. package/src/tool/keyboardChatterTest/i18n/nl.ts +232 -0
  20. package/src/tool/keyboardChatterTest/i18n/pl.ts +232 -0
  21. package/src/tool/keyboardChatterTest/i18n/pt.ts +232 -0
  22. package/src/tool/keyboardChatterTest/i18n/ru.ts +232 -0
  23. package/src/tool/keyboardChatterTest/i18n/sv.ts +232 -0
  24. package/src/tool/keyboardChatterTest/i18n/tr.ts +232 -0
  25. package/src/tool/keyboardChatterTest/i18n/zh.ts +232 -0
  26. package/src/tool/keyboardChatterTest/index.ts +12 -0
  27. package/src/tool/keyboardChatterTest/keyboard-chatter-test.css +512 -0
  28. package/src/tool/keyboardChatterTest/logic.ts +23 -0
  29. package/src/tool/keyboardChatterTest/seo.astro +16 -0
  30. package/src/tool/keyboardChatterTest/ui.ts +34 -0
  31. package/src/tool/stereoAudioTest/bibliography.astro +14 -0
  32. package/src/tool/stereoAudioTest/bibliography.ts +16 -0
  33. package/src/tool/stereoAudioTest/component.astro +251 -0
  34. package/src/tool/stereoAudioTest/entry.ts +29 -0
  35. package/src/tool/stereoAudioTest/i18n/de.ts +229 -0
  36. package/src/tool/stereoAudioTest/i18n/en.ts +229 -0
  37. package/src/tool/stereoAudioTest/i18n/es.ts +229 -0
  38. package/src/tool/stereoAudioTest/i18n/fr.ts +229 -0
  39. package/src/tool/stereoAudioTest/i18n/id.ts +229 -0
  40. package/src/tool/stereoAudioTest/i18n/it.ts +229 -0
  41. package/src/tool/stereoAudioTest/i18n/ja.ts +229 -0
  42. package/src/tool/stereoAudioTest/i18n/ko.ts +229 -0
  43. package/src/tool/stereoAudioTest/i18n/nl.ts +229 -0
  44. package/src/tool/stereoAudioTest/i18n/pl.ts +229 -0
  45. package/src/tool/stereoAudioTest/i18n/pt.ts +229 -0
  46. package/src/tool/stereoAudioTest/i18n/ru.ts +229 -0
  47. package/src/tool/stereoAudioTest/i18n/sv.ts +229 -0
  48. package/src/tool/stereoAudioTest/i18n/tr.ts +229 -0
  49. package/src/tool/stereoAudioTest/i18n/zh.ts +229 -0
  50. package/src/tool/stereoAudioTest/index.ts +11 -0
  51. package/src/tool/stereoAudioTest/logic.ts +22 -0
  52. package/src/tool/stereoAudioTest/seo.astro +15 -0
  53. package/src/tool/stereoAudioTest/stereo-audio-test.css +411 -0
  54. package/src/tool/stereoAudioTest/ui.ts +24 -0
  55. package/src/tool/webBluetoothBleScanner/bibliography.astro +14 -0
  56. package/src/tool/webBluetoothBleScanner/bibliography.ts +16 -0
  57. package/src/tool/webBluetoothBleScanner/component.astro +339 -0
  58. package/src/tool/webBluetoothBleScanner/entry.ts +29 -0
  59. package/src/tool/webBluetoothBleScanner/i18n/de.ts +233 -0
  60. package/src/tool/webBluetoothBleScanner/i18n/en.ts +233 -0
  61. package/src/tool/webBluetoothBleScanner/i18n/es.ts +233 -0
  62. package/src/tool/webBluetoothBleScanner/i18n/fr.ts +233 -0
  63. package/src/tool/webBluetoothBleScanner/i18n/id.ts +233 -0
  64. package/src/tool/webBluetoothBleScanner/i18n/it.ts +233 -0
  65. package/src/tool/webBluetoothBleScanner/i18n/ja.ts +233 -0
  66. package/src/tool/webBluetoothBleScanner/i18n/ko.ts +233 -0
  67. package/src/tool/webBluetoothBleScanner/i18n/nl.ts +233 -0
  68. package/src/tool/webBluetoothBleScanner/i18n/pl.ts +233 -0
  69. package/src/tool/webBluetoothBleScanner/i18n/pt.ts +233 -0
  70. package/src/tool/webBluetoothBleScanner/i18n/ru.ts +233 -0
  71. package/src/tool/webBluetoothBleScanner/i18n/sv.ts +233 -0
  72. package/src/tool/webBluetoothBleScanner/i18n/tr.ts +233 -0
  73. package/src/tool/webBluetoothBleScanner/i18n/zh.ts +233 -0
  74. package/src/tool/webBluetoothBleScanner/index.ts +11 -0
  75. package/src/tool/webBluetoothBleScanner/logic.ts +79 -0
  76. package/src/tool/webBluetoothBleScanner/seo.astro +15 -0
  77. package/src/tool/webBluetoothBleScanner/ui.ts +41 -0
  78. package/src/tool/webBluetoothBleScanner/web-bluetooth-ble-scanner.css +406 -0
  79. 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 = 'stereo-audio-test';
7
+ const title = 'Stereo Audio Test';
8
+ const description = 'Check left and right speaker channels, stereo balance, wiring direction, and headphone imaging with browser-generated test tones.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: 'How do I test left and right speakers online?',
13
+ answer: 'Start with low volume, press Left, then Right. The left tone should come only from the left speaker or earcup, and the right tone should come only from the right side. Use Center to confirm both sides play evenly.',
14
+ },
15
+ {
16
+ question: 'Why do both speakers play during the left or right test?',
17
+ answer: 'Some devices, operating systems, Bluetooth speakers, mono modes, accessibility settings, or audio enhancements downmix stereo to mono. Check system balance, mono audio settings, cable wiring, and app-specific audio effects.',
18
+ },
19
+ {
20
+ question: 'Can this diagnose swapped speaker cables?',
21
+ answer: 'Yes. If the Left button plays from the right speaker and the Right button plays from the left speaker, the output path is reversed somewhere between the computer, cable, amplifier, speakers, or headphones.',
22
+ },
23
+ {
24
+ question: 'Is a sine tone safe for speakers and headphones?',
25
+ answer: 'A short sine tone at moderate volume is normally safe. Avoid high volume, long sessions, or very high frequencies, especially with headphones, small laptop speakers, or unknown amplifiers.',
26
+ },
27
+ {
28
+ question: 'Does the browser affect stereo testing?',
29
+ answer: 'The tool uses the Web Audio API StereoPannerNode. It is reliable in modern browsers, but final output still depends on operating system routing, drivers, Bluetooth codecs, external DACs, and speaker wiring.',
30
+ },
31
+ ];
32
+
33
+ const howToData = [
34
+ {
35
+ name: 'Set a quiet starting volume',
36
+ text: 'Lower your system volume and use the tool volume slider before playing any test tone.',
37
+ },
38
+ {
39
+ name: 'Test each side',
40
+ text: 'Press Left and Right. Each tone should be clearly isolated to the matching speaker or headphone side.',
41
+ },
42
+ {
43
+ name: 'Check center balance',
44
+ text: 'Press Center. The tone should appear centered between both speakers, not pulled strongly to one side.',
45
+ },
46
+ {
47
+ name: 'Use the sweep',
48
+ text: 'Run Sweep to hear movement across the stereo field and spot dropouts, reversed wiring, or uneven imaging.',
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: 'en',
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: 'Left and Right Speaker Test Online',
98
+ level: 2,
99
+ },
100
+ {
101
+ type: 'paragraph',
102
+ html: 'Use this online stereo audio test to check whether your left and right speakers, headphones, earbuds, soundbar, DAC, amplifier, or monitor speakers are routed correctly. The tool plays browser-generated tones through the left channel, right channel, both channels, or a moving stereo sweep so you can quickly detect reversed channels, mono output, weak speakers, balance problems, and wiring mistakes without installing audio software.',
103
+ },
104
+ {
105
+ type: 'paragraph',
106
+ html: 'A correct stereo setup preserves direction: the left test tone should come from the left speaker or left earcup only, the right test tone should come from the right side only, and the center tone should sound equally balanced between both sides. If the sound appears on the wrong side, both sides at once, or much louder on one side, the issue is usually in output settings, mono accessibility mode, cable wiring, Bluetooth routing, speaker placement, or audio enhancement software.',
107
+ },
108
+ {
109
+ type: 'table',
110
+ headers: ['Button', 'What you should hear', 'Use it to diagnose'],
111
+ rows: [
112
+ ['Left', 'Tone only from the left speaker, left headphone driver, or left earbud.', 'Reversed cables, wrong speaker placement, mono output, or channel remapping.'],
113
+ ['Right', 'Tone only from the right speaker, right headphone driver, or right earbud.', 'Swapped outputs, incorrect adapter wiring, or driver effects changing channel order.'],
114
+ ['Center', 'Tone appears in the middle because both channels play evenly.', 'System balance offset, one weak speaker, blocked earbud mesh, or unequal amplifier gain.'],
115
+ ['Sweep', 'Tone moves smoothly across the stereo image from side to side.', 'Dropouts, unstable Bluetooth links, phase issues, virtual surround artifacts, or uneven imaging.'],
116
+ ],
117
+ },
118
+ {
119
+ type: 'title',
120
+ text: 'Most Common Stereo Problems This Test Finds',
121
+ level: 3,
122
+ },
123
+ {
124
+ type: 'list',
125
+ items: [
126
+ 'Left and right channels are reversed: the left button plays on the right side, or the right button plays on the left side.',
127
+ 'Stereo has collapsed to mono: left, right, and center all sound almost identical from both speakers.',
128
+ 'One side is quieter: center audio pulls toward one speaker even when the system balance slider looks centered.',
129
+ 'Headphones are wired or worn incorrectly: game footsteps, music panning, and video calls feel spatially confusing.',
130
+ 'Bluetooth or USB audio is being processed: soundbars, docks, headsets, and TV modes may downmix or virtualize the signal.',
131
+ 'Speaker placement is misleading: a speaker too close to a wall, blocked by furniture, or farther away can make the center image drift.',
132
+ ],
133
+ },
134
+ {
135
+ type: 'title',
136
+ text: 'How to Fix Reversed Left and Right Audio',
137
+ level: 3,
138
+ },
139
+ {
140
+ type: 'list',
141
+ items: [
142
+ 'For wired speakers, swap the left and right plugs at the amplifier, audio interface, DAC, or computer output.',
143
+ 'For passive speakers, confirm the left speaker is connected to the left amplifier terminals and the right speaker to the right terminals.',
144
+ 'For headphones, check that they are worn in the correct orientation and test without adapters, extension cables, or splitter cables.',
145
+ 'For Windows or macOS, check output balance and disable mono audio in accessibility or sound settings.',
146
+ 'For Bluetooth speakers and soundbars, disable virtual surround, party mode, dual audio, room correction, or TV sound modes while testing.',
147
+ 'For audio interfaces, DAWs, and mixers, check channel routing, pan controls, monitor mix settings, and any software mixer supplied by the manufacturer.',
148
+ ],
149
+ },
150
+ {
151
+ type: 'title',
152
+ text: 'How to Interpret the Center Speaker Test',
153
+ level: 3,
154
+ },
155
+ {
156
+ type: 'paragraph',
157
+ html: 'The center tone is not a separate physical center speaker in a normal two-channel setup. It is the same signal sent evenly to left and right. On headphones it should feel centered inside your head; on speakers it should form a phantom center between them. If it leans left or right, check system balance, speaker distance, speaker angle, volume knobs, amplifier trim, earbud fit, dust in the driver grille, and whether one speaker is partially blocked or failing.',
158
+ },
159
+ {
160
+ type: 'table',
161
+ headers: ['What happens', 'Likely cause', 'Next step'],
162
+ rows: [
163
+ ['Left plays from both sides', 'Mono audio, downmixing, or spatial audio processing.', 'Disable mono output and virtual surround, then test again.'],
164
+ ['Left plays from the right side', 'Channels are swapped somewhere in the playback chain.', 'Swap cables or change channel routing in the driver, mixer, or amplifier.'],
165
+ ['Center is louder on one side', 'Balance, placement, driver damage, ear fit, or blocked speaker grille.', 'Compare with another headset or speaker pair and inspect physical placement.'],
166
+ ['Sweep jumps or disappears', 'Bluetooth instability, audio enhancement artifacts, or a failing cable/connector.', 'Test with wired output or another cable to isolate the weak link.'],
167
+ ],
168
+ },
169
+ {
170
+ type: 'title',
171
+ text: 'Headphone and Earbud Left Right Test',
172
+ level: 3,
173
+ },
174
+ {
175
+ type: 'paragraph',
176
+ html: 'For headphones and earbuds, the left/right test is especially useful before gaming, editing audio, watching films, or joining calls. Put the headset on normally, start at low volume, press Left and Right, and confirm each tone lands on the correct ear. If both sides sound the same, your device may be using mono audio. If one side is dull or quieter, clean the earbud mesh, reseat the ear tip, check the cable, and compare against another output device.',
177
+ },
178
+ {
179
+ type: 'title',
180
+ text: 'Safe Audio Testing Tips',
181
+ level: 3,
182
+ },
183
+ {
184
+ type: 'list',
185
+ items: [
186
+ 'Start with low system volume, especially on headphones.',
187
+ 'Use Loop until Stop only when you actively need continuous sound for cable tracing, placement, or balance adjustment.',
188
+ 'Keep test tones short when using small speakers; continuous sine waves can become uncomfortable quickly.',
189
+ 'Avoid maximum gain on small laptop speakers and unknown amplifiers.',
190
+ 'Do not place headphones on your ears until you have confirmed the volume is safe.',
191
+ 'After changing cables or settings, repeat left, right, center, and sweep tests in that order.',
192
+ 'For studio or home theater calibration, combine this quick test with an SPL meter or the receiver calibration routine.',
193
+ ],
194
+ },
195
+ {
196
+ type: 'title',
197
+ text: 'Fast Diagnosis',
198
+ level: 3,
199
+ },
200
+ {
201
+ type: 'paragraph',
202
+ html: 'If left and right are swapped, inspect physical wiring first because that is the fastest fix for desktop speakers, amplifiers, and audio interfaces. If both buttons play from both sides, look for mono output, spatial audio, virtual surround, or a device that intentionally downmixes stereo. If center is off-center but left and right are correctly routed, the problem is usually balance, placement, ear fit, blocked grilles, or unequal speaker output.',
203
+ },
204
+ ],
205
+ ui: {
206
+ left: 'Left',
207
+ center: 'Center',
208
+ right: 'Right',
209
+ sweep: 'Sweep',
210
+ stop: 'Stop',
211
+ volume: 'Volume',
212
+ duration: 'Duration',
213
+ infiniteMode: 'Loop until Stop',
214
+ infiniteModeHint: 'Keep any channel playing for continuous testing.',
215
+ secondsUnit: 's',
216
+ hertzUnit: 'Hz',
217
+ tone: 'Tone',
218
+ balance: 'Balance',
219
+ activeIdle: 'Ready',
220
+ activeLeft: 'Playing left channel',
221
+ activeCenter: 'Playing centered tone',
222
+ activeRight: 'Playing right channel',
223
+ activeSweep: 'Sweeping across stereo field',
224
+ safety: 'Start low. Test tones can be loud through headphones, amplifiers, and small laptop speakers.',
225
+ leftSpeaker: 'Left speaker',
226
+ rightSpeaker: 'Right speaker',
227
+ centerLine: 'Stereo field',
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 = 'prueba-de-audio-estereo';
7
+ const title = 'Prueba de audio estéreo';
8
+ const description = 'Comprueba los canales izquierdo y derecho de los altavoces, el balance estéreo, la dirección del cableado y la imagen de los auriculares con tonos de prueba generados por el navegador.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: '¿Cómo pruebo los altavoces izquierdo y derecho en línea?',
13
+ answer: 'Comienza con volumen bajo, pulsa Izquierda y luego Derecha. El tono izquierdo debe sonar solo por el altavoz o auricular izquierdo, y el tono derecho solo por el lado derecho. Usa Centro para confirmar que ambos lados suenan equilibrados.',
14
+ },
15
+ {
16
+ question: '¿Por qué suenan ambos altavoces durante la prueba izquierda o derecha?',
17
+ answer: 'Algunos dispositivos, sistemas operativos, altavoces Bluetooth, modos mono, ajustes de accesibilidad o mejoras de audio convierten el estéreo a mono. Revisa el balance del sistema, los ajustes de audio mono, el cableado y los efectos de audio de las aplicaciones.',
18
+ },
19
+ {
20
+ question: '¿Puede esto diagnosticar cables de altavoz intercambiados?',
21
+ answer: 'Sí. Si el botón Izquierda suena por el altavoz derecho y el botón Derecha suena por el izquierdo, la ruta de salida está invertida en algún punto entre el ordenador, cable, amplificador, altavoces o auriculares.',
22
+ },
23
+ {
24
+ question: '¿Es seguro un tono sinusoidal para altavoces y auriculares?',
25
+ answer: 'Un tono sinusoidal corto a volumen moderado normalmente es seguro. Evita el volumen alto, sesiones largas o frecuencias muy altas, especialmente con auriculares, altavoces pequeños de portátil o amplificadores desconocidos.',
26
+ },
27
+ {
28
+ question: '¿Afecta el navegador a la prueba estéreo?',
29
+ answer: 'La herramienta usa el StereoPannerNode de la Web Audio API. Es fiable en navegadores modernos, pero la salida final sigue dependiendo del enrutamiento del sistema operativo, controladores, códecs Bluetooth, DACs externos y el cableado de los altavoces.',
30
+ },
31
+ ];
32
+
33
+ const howToData = [
34
+ {
35
+ name: 'Establece un volumen inicial bajo',
36
+ text: 'Baja el volumen del sistema y usa el control deslizante de volumen de la herramienta antes de reproducir cualquier tono de prueba.',
37
+ },
38
+ {
39
+ name: 'Prueba cada lado',
40
+ text: 'Pulsa Izquierda y Derecha. Cada tono debe estar claramente aislado en el altavoz o auricular correspondiente.',
41
+ },
42
+ {
43
+ name: 'Comprueba el balance central',
44
+ text: 'Pulsa Centro. El tono debe aparecer centrado entre ambos altavoces, sin inclinarse mucho hacia un lado.',
45
+ },
46
+ {
47
+ name: 'Usa el barrido',
48
+ text: 'Ejecuta Barrido para escuchar el movimiento a través del campo estéreo y detectar caídas, cableado invertido o imagen desigual.',
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: 'es',
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: 'Prueba de altavoz izquierdo y derecho en línea',
98
+ level: 2,
99
+ },
100
+ {
101
+ type: 'paragraph',
102
+ html: 'Usa esta prueba de audio estéreo en línea para comprobar si tus altavoces izquierdo y derecho, auriculares, cascos, barra de sonido, DAC, amplificador o monitores están enrutados correctamente. La herramienta reproduce tonos generados por el navegador a través del canal izquierdo, canal derecho, ambos canales o un barrido estéreo móvil para que puedas detectar rápidamente canales invertidos, salida mono, altavoces débiles, problemas de balance y errores de cableado sin instalar software de audio.',
103
+ },
104
+ {
105
+ type: 'paragraph',
106
+ html: 'Una configuración estéreo correcta preserva la dirección: el tono de prueba izquierdo debe salir solo del altavoz o auricular izquierdo, el tono derecho solo del lado derecho, y el tono central debe sonar igualmente equilibrado entre ambos lados. Si el sonido aparece en el lado equivocado, en ambos lados a la vez, o mucho más fuerte en un lado, el problema suele estar en los ajustes de salida, el modo de accesibilidad mono, el cableado, el enrutamiento Bluetooth, la ubicación de los altavoces o el software de mejora de audio.',
107
+ },
108
+ {
109
+ type: 'table',
110
+ headers: ['Botón', 'Lo que deberías escuchar', 'Úsalo para diagnosticar'],
111
+ rows: [
112
+ ['Izquierda', 'Tono solo del altavoz izquierdo, auricular izquierdo o cascos izquierdos.', 'Cables invertidos, ubicación incorrecta de altavoces, salida mono o reasignación de canales.'],
113
+ ['Derecha', 'Tono solo del altavoz derecho, auricular derecho o cascos derechos.', 'Salidas intercambiadas, cableado de adaptador incorrecto o efectos de controlador que cambian el orden de los canales.'],
114
+ ['Centro', 'El tono aparece en el centro porque ambos canales suenan equilibrados.', 'Desplazamiento del balance del sistema, un altavoz débil, malla de auricular obstruida o ganancia desigual del amplificador.'],
115
+ ['Barrido', 'El tono se mueve suavemente por la imagen estéreo de lado a lado.', 'Caídas, enlaces Bluetooth inestables, problemas de fase, artefactos de sonido envolvente virtual o imagen desigual.'],
116
+ ],
117
+ },
118
+ {
119
+ type: 'title',
120
+ text: 'Problemas estéreo más comunes que encuentra esta prueba',
121
+ level: 3,
122
+ },
123
+ {
124
+ type: 'list',
125
+ items: [
126
+ 'Los canales izquierdo y derecho están invertidos: el botón izquierdo suena por el lado derecho, o el botón derecho suena por el lado izquierdo.',
127
+ 'El estéreo se ha colapsado a mono: izquierda, derecha y centro suenan casi idénticos por ambos altavoces.',
128
+ 'Un lado suena más bajo: el audio central se inclina hacia un altavoz incluso cuando el control de balance del sistema parece centrado.',
129
+ 'Los auriculares están mal cableados o colocados: los pasos de juegos, el paneo de música y las videollamadas se sienten espacialmente confusos.',
130
+ 'El audio Bluetooth o USB se está procesando: barras de sonido, docks, auriculares y modos de TV pueden convertir o virtualizar la señal.',
131
+ 'La ubicación de los altavoces es engañosa: un altavoz demasiado cerca de una pared, bloqueado por muebles o más alejado puede hacer que la imagen central se desplace.',
132
+ ],
133
+ },
134
+ {
135
+ type: 'title',
136
+ text: 'Cómo arreglar el audio izquierdo y derecho invertido',
137
+ level: 3,
138
+ },
139
+ {
140
+ type: 'list',
141
+ items: [
142
+ 'Para altavoces con cable, intercambia los conectores izquierdo y derecho en el amplificador, interfaz de audio, DAC o salida del ordenador.',
143
+ 'Para altavoces pasivos, confirma que el altavoz izquierdo está conectado a los terminales izquierdos del amplificador y el altavoz derecho a los terminales derechos.',
144
+ 'Para auriculares, comprueba que se llevan en la orientación correcta y prueba sin adaptadores, cables de extensión o divisores.',
145
+ 'En Windows o macOS, revisa el balance de salida y desactiva el audio mono en los ajustes de accesibilidad o sonido.',
146
+ 'Para altavoces Bluetooth y barras de sonido, desactiva el sonido envolvente virtual, modo fiesta, audio dual, corrección de sala o modos de sonido de TV durante la prueba.',
147
+ 'Para interfaces de audio, DAWs y mezcladores, revisa el enrutamiento de canales, controles de panorama, ajustes de mezcla de monitor y cualquier mezclador de software del fabricante.',
148
+ ],
149
+ },
150
+ {
151
+ type: 'title',
152
+ text: 'Cómo interpretar la prueba del altavoz central',
153
+ level: 3,
154
+ },
155
+ {
156
+ type: 'paragraph',
157
+ html: 'El tono central no es un altavoz central físico separado en una configuración normal de dos canales. Es la misma señal enviada uniformemente a izquierda y derecha. En auriculares debe sentirse centrado dentro de la cabeza; en altavoces debe formar un centro fantasma entre ellos. Si se inclina a izquierda o derecha, revisa el balance del sistema, la distancia de los altavoces, el ángulo de los altavoces, los controles de volumen, el ajuste del amplificador, el ajuste de los auriculares, el polvo en la rejilla del driver y si un altavoz está parcialmente bloqueado o fallando.',
158
+ },
159
+ {
160
+ type: 'table',
161
+ headers: ['Qué sucede', 'Causa probable', 'Siguiente paso'],
162
+ rows: [
163
+ ['Izquierda suena por ambos lados', 'Audio mono, mezcla descendente o procesamiento de audio espacial.', 'Desactiva la salida mono y el sonido envolvente virtual, luego prueba de nuevo.'],
164
+ ['Izquierda suena por el lado derecho', 'Los canales están intercambiados en algún punto de la cadena de reproducción.', 'Intercambia los cables o cambia el enrutamiento de canales en el controlador, mezclador o amplificador.'],
165
+ ['El centro suena más fuerte en un lado', 'Balance, ubicación, daño del driver, ajuste del oído o rejilla del altavoz bloqueada.', 'Compara con otro par de auriculares o altavoces e inspecciona la ubicación física.'],
166
+ ['El barrido salta o desaparece', 'Inestabilidad Bluetooth, artefactos de mejora de audio o un cable/conector defectuoso.', 'Prueba con salida por cable u otro cable para aislar el punto débil.'],
167
+ ],
168
+ },
169
+ {
170
+ type: 'title',
171
+ text: 'Prueba izquierda derecha para auriculares y cascos',
172
+ level: 3,
173
+ },
174
+ {
175
+ type: 'paragraph',
176
+ html: 'Para auriculares y cascos, la prueba izquierda/derecha es especialmente útil antes de jugar, editar audio, ver películas o unirse a llamadas. Ponte los auriculares normalmente, comienza con volumen bajo, pulsa Izquierda y Derecha, y confirma que cada tono llega al oído correcto. Si ambos lados suenan igual, tu dispositivo puede estar usando audio mono. Si un lado suena apagado o más bajo, limpia la malla del auricular, recoloca la almohadilla, revisa el cable y compara con otro dispositivo de salida.',
177
+ },
178
+ {
179
+ type: 'title',
180
+ text: 'Consejos para pruebas de audio seguras',
181
+ level: 3,
182
+ },
183
+ {
184
+ type: 'list',
185
+ items: [
186
+ 'Comienza con volumen bajo del sistema, especialmente con auriculares.',
187
+ 'Usa Bucle hasta parar solo cuando necesites activamente sonido continuo para rastreo de cables, ubicación o ajuste de balance.',
188
+ 'Mantén los tonos de prueba cortos con altavoces pequeños; las ondas sinusoidales continuas pueden volverse incómodas rápidamente.',
189
+ 'Evita la ganancia máxima en altavoces pequeños de portátil y amplificadores desconocidos.',
190
+ 'No te pongas los auriculares en las orejas hasta que hayas confirmado que el volumen es seguro.',
191
+ 'Después de cambiar cables o ajustes, repite las pruebas izquierda, derecha, centro y barrido en ese orden.',
192
+ 'Para calibración de estudio o cine en casa, combina esta prueba rápida con un medidor SPL o la rutina de calibración del receptor.',
193
+ ],
194
+ },
195
+ {
196
+ type: 'title',
197
+ text: 'Diagnóstico rápido',
198
+ level: 3,
199
+ },
200
+ {
201
+ type: 'paragraph',
202
+ html: 'Si izquierda y derecha están intercambiados, inspecciona primero el cableado físico, ya que es la solución más rápida para altavoces de escritorio, amplificadores e interfaces de audio. Si ambos botones suenan por ambos lados, busca salida mono, audio espacial, sonido envolvente virtual o un dispositivo que intencionalmente convierta estéreo a mono. Si el centro está descentrado pero izquierda y derecha están correctamente enrutados, el problema suele ser de balance, ubicación, ajuste de los auriculares, rejillas bloqueadas o salida desigual de los altavoces.',
203
+ },
204
+ ],
205
+ ui: {
206
+ left: 'Izquierda',
207
+ center: 'Centro',
208
+ right: 'Derecha',
209
+ sweep: 'Barrido',
210
+ stop: 'Parar',
211
+ volume: 'Volumen',
212
+ duration: 'Duración',
213
+ infiniteMode: 'Bucle hasta parar',
214
+ infiniteModeHint: 'Mantén cualquier canal reproduciéndose para pruebas continuas.',
215
+ secondsUnit: 's',
216
+ hertzUnit: 'Hz',
217
+ tone: 'Tono',
218
+ balance: 'Balance',
219
+ activeIdle: 'Listo',
220
+ activeLeft: 'Reproduciendo canal izquierdo',
221
+ activeCenter: 'Reproduciendo tono centrado',
222
+ activeRight: 'Reproduciendo canal derecho',
223
+ activeSweep: 'Barriendo el campo estéreo',
224
+ safety: 'Empieza bajo. Los tonos de prueba pueden ser fuertes a través de auriculares, amplificadores y altavoces pequeños de portátil.',
225
+ leftSpeaker: 'Altavoz izquierdo',
226
+ rightSpeaker: 'Altavoz derecho',
227
+ centerLine: 'Campo estéreo',
228
+ },
229
+ };