7 mayo 2012
7 mayo 2012
EVOLO SKYSCRAPERS
Reproduciendo...
Lectura por voz
(function() {
let synth = window.speechSynthesis;
let currentUtterance = null;
let isPaused = false;
let vocesDisponibles = [];
// Cargar voces al inicio (Chrome las carga asíncronamente)
if (speechSynthesis.onvoiceschanged !== undefined) {
speechSynthesis.onvoiceschanged = function() {
vocesDisponibles = synth.getVoices();
};
}
// Función para encontrar la mejor voz mexicana
function obtenerVozMexicana() {
vocesDisponibles = synth.getVoices(); // Asegurar lista actualizada
// 1. Prioridad: Voz exacta de México (ej. 'es-MX')
let voz = vocesDisponibles.find(v => v.lang === 'es-MX');
// 2. Prioridad: Voz que incluya 'Mexico' en el nombre
if (!voz) voz = vocesDisponibles.find(v => v.name.includes('Mexico'));
// 3. Prioridad: Google Español Latinoamérica
if (!voz) voz = vocesDisponibles.find(v => v.lang === 'es-419');
// 4. Fallback: Cualquier español
if (!voz) voz = vocesDisponibles.find(v => v.lang.startsWith('es'));
return voz;
}
window.abrirPlayerSpotify = function() {
const bar = document.getElementById('spotify-bar');
const triggerContainer = document.getElementById('trigger-container');
bar.classList.add('active');
triggerContainer.style.display = 'none';
controlarAudio('start');
};
window.controlarAudio = function(action) {
const btnPlay = document.getElementById('sp-play');
const btnPause = document.getElementById('sp-pause');
const animDot = document.getElementById('anim-dot');
if (action === 'start') {
const textContainer = document.getElementById('post-content-to-read');
if (!textContainer) return;
const texto = textContainer.innerText;
if (!texto.trim()) { alert("No hay texto."); cerrarPlayer(); return; }
currentUtterance = new SpeechSynthesisUtterance(texto);
// --- AQUÍ APLICAMOS LA VOZ MEXICANA ---
const vozElegida = obtenerVozMexicana();
if (vozElegida) {
currentUtterance.voice = vozElegida;
currentUtterance.lang = vozElegida.lang; // Asegurar idioma
} else {
// Si no hay ninguna voz, forzamos código es-MX
currentUtterance.lang = 'es-MX';
}
currentUtterance.rate = 1; // Velocidad normal
currentUtterance.onend = () => { cerrarPlayer(); };
currentUtterance.onpause = () => { animDot.style.display = 'none'; };
currentUtterance.onresume = () => { animDot.style.display = 'inline-block'; };
currentUtterance.onstart = () => { animDot.style.display = 'inline-block'; };
synth.cancel();
synth.speak(currentUtterance);
btnPlay.style.display = 'none';
btnPause.style.display = 'flex';
} else if (action === 'pause') {
synth.pause();
isPaused = true;
btnPlay.style.display = 'flex';
btnPause.style.display = 'none';
animDot.style.display = 'none';
} else if (action === 'resume') {
if (isPaused) {
synth.resume();
isPaused = false;
} else {
controlarAudio('start');
}
btnPlay.style.display = 'none';
btnPause.style.display = 'flex';
animDot.style.display = 'inline-block';
}
};
window.cerrarPlayer = function() {
synth.cancel();
document.getElementById('spotify-bar').classList.remove('active');
document.getElementById('trigger-container').style.display = 'block';
document.getElementById('anim-dot').style.display = 'none';
document.getElementById('sp-play').style.display = 'flex';
document.getElementById('sp-pause').style.display = 'none';
isPaused = false;
};
window.onbeforeunload = function() { synth.cancel(); };
})();
Notas Relacionadas
Toronjos: casa autosuficiente entre aguacates
Casa en el bosque: arquitectura integrada al paisaje
Escenarios que narran: el diseño invisible del cine contemporáneo
Taller Vivo + Foro Colectivo en Puebla
GlocalTV
Glocal 89 | Michelle Garmendia
Edición 87
Lo mejor del año en arquitectura e interiorismo en México
La edición 87 de Glocal Design Magazine reúne una selección de los proyectos más representativos de la arquitectura y la arquitectura de interiores en México durante 2025. Con los ganadores del Premio Noldi Schreck 2025 como eje central, este número traza una lectura clara sobre el uso consciente de materiales, la identidad regional y el diseño contemporáneo entendido como una postura ética y cultural.
Edición 87
Lo mejor del año en arquitectura e interiorismo en México