fbpx
Wikipedia

Speech Synthesis Markup Language

Lenguaje SSML (Speech Synthesis Markup Language) es una propuesta de la W3c para que la web y varias aplicaciones que la implementen puedan utilizar el sintetizador de voz de una forma más natural mejorando así la pronunciación, enfatizando ciertas palabras, dar pautas al diálogo, reproducir sonidos, etc. Ya cuenta con muchas compañías que la han adoptado gracias a sus virtudes.[1]

Historia

Este estándar de W3C es conocido como lenguaje SSML (Speech Synthesis Markup Language) y está basado en JSGF y/o las especificaciones JSML, que son propiedad de Sun Microsystems, Inc., California, U.S.A.

Ejemplos

Voz

<?xml version="1.0"?> <speak version="1.0" xmlns="http://www.w3.org/2001/10/synthesis" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/10/synthesis  http://www.w3.org/TR/speech-synthesis/synthesis.xsd" xml:lang="en-US"> <voice gender="female">Mary had a little lamb,</voice> <!-- ahora pedimos una voz de niña diferente --> <voice gender="female" variant="2"> Its fleece was white as snow. </voice> <!-- selección específica para una voz --> <voice name="Mike">I want to be like Mike.</voice> </speak> 

Fonema

<speak version="1.0" xmlns="http://www.w3.org/2001/10/synthesis" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/10/synthesis  http://www.w3.org/TR/speech-synthesis/synthesis.xsd" xml:lang="en-US"> <phoneme alphabet="ipa" ph="t&#x259;mei&#x325;&#x27E;ou&#x325;"> tomato </phoneme> <!-- Este es un ejemplo de IPA al usar entidades de caracteres --> <!-- Porque muchas combinaciones entre plataformas/exploradores/editores de texto  no copian corectamente el texto Unicode, este ejemplo usa la entidad de  caracteres proporcionados por IPA. Normalmente puedes usar directamente  la representación de símbolos UTF-8: "təmei̥ɾou̥". --> </speak> 

Sub

<speak version="1.0" xmlns="http://www.w3.org/2001/10/synthesis" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/10/synthesis  http://www.w3.org/TR/speech-synthesis/synthesis.xsd" xml:lang="en-US"> <sub alias="World Wide Web Consortium">W3C</sub> <!-- World Wide Web Consortium --> </speak> 

Prosodia

<?xml version="1.0"?> <speak version="1.0" xmlns="http://www.w3.org/2001/10/synthesis" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/10/synthesis  http://www.w3.org/TR/speech-synthesis/synthesis.xsd" xml:lang="en-US"> El XYZ cuesta <prosody rate="-10%">$45</prosody> </speak> 

Énfasis

<?xml version="1.0"?> <speak version="1.0" xmlns="http://www.w3.org/2001/10/synthesis" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/10/synthesis  http://www.w3.org/TR/speech-synthesis/synthesis.xsd" xml:lang="en-US"> ¡Este es un <emphasis> gran </emphasis> carro! ¡Esa es una <emphasis level="strong"> gran </emphasis> cuenta de banco! </speak> 

Pautas

<?xml version="1.0"?> <speak version="1.0" xmlns="http://www.w3.org/2001/10/synthesis" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/10/synthesis  http://www.w3.org/TR/speech-synthesis/synthesis.xsd" xml:lang="en-US"> Respire profundo <break/> ahora continúe. Presiona 1 o espera el tono. <break time="3s"/> ¡No te he escuchado! <break strength="weak"/> Por favor, intenta de nuevo. </speak> 

Referencias

Enlaces externos

  • Speech Synthesis Markup Language (SSML) Version 1.0
  • JSGF
  • JSML
  • SSML
  • SSML para Windows Phone 8
  •   Datos: Q1971947
  •   Multimedia: SSML

speech, synthesis, markup, language, lenguaje, ssml, propuesta, para, varias, aplicaciones, implementen, puedan, utilizar, sintetizador, forma, más, natural, mejorando, así, pronunciación, enfatizando, ciertas, palabras, pautas, diálogo, reproducir, sonidos, c. Lenguaje SSML Speech Synthesis Markup Language es una propuesta de la W3c para que la web y varias aplicaciones que la implementen puedan utilizar el sintetizador de voz de una forma mas natural mejorando asi la pronunciacion enfatizando ciertas palabras dar pautas al dialogo reproducir sonidos etc Ya cuenta con muchas companias que la han adoptado gracias a sus virtudes 1 Indice 1 Historia 2 Ejemplos 3 Referencias 4 Enlaces externosHistoria EditarEste estandar de W3C es conocido como lenguaje SSML Speech Synthesis Markup Language y esta basado en JSGF y o las especificaciones JSML que son propiedad de Sun Microsystems Inc California U S A Ejemplos EditarVoz lt xml version 1 0 gt lt speak version 1 0 xmlns http www w3 org 2001 10 synthesis xmlns xsi http www w3 org 2001 XMLSchema instance xsi schemaLocation http www w3 org 2001 10 synthesis http www w3 org TR speech synthesis synthesis xsd xml lang en US gt lt voice gender female gt Mary had a little lamb lt voice gt lt ahora pedimos una voz de nina diferente gt lt voice gender female variant 2 gt Its fleece was white as snow lt voice gt lt seleccion especifica para una voz gt lt voice name Mike gt I want to be like Mike lt voice gt lt speak gt Fonema lt speak version 1 0 xmlns http www w3 org 2001 10 synthesis xmlns xsi http www w3 org 2001 XMLSchema instance xsi schemaLocation http www w3 org 2001 10 synthesis http www w3 org TR speech synthesis synthesis xsd xml lang en US gt lt phoneme alphabet ipa ph t amp x259 mei amp x325 amp x27E ou amp x325 gt tomato lt phoneme gt lt Este es un ejemplo de IPA al usar entidades de caracteres gt lt Porque muchas combinaciones entre plataformas exploradores editores de texto no copian corectamente el texto Unicode este ejemplo usa la entidad de caracteres proporcionados por IPA Normalmente puedes usar directamente la representacion de simbolos UTF 8 temei ɾou gt lt speak gt Sub lt speak version 1 0 xmlns http www w3 org 2001 10 synthesis xmlns xsi http www w3 org 2001 XMLSchema instance xsi schemaLocation http www w3 org 2001 10 synthesis http www w3 org TR speech synthesis synthesis xsd xml lang en US gt lt sub alias World Wide Web Consortium gt W3C lt sub gt lt World Wide Web Consortium gt lt speak gt Prosodia lt xml version 1 0 gt lt speak version 1 0 xmlns http www w3 org 2001 10 synthesis xmlns xsi http www w3 org 2001 XMLSchema instance xsi schemaLocation http www w3 org 2001 10 synthesis http www w3 org TR speech synthesis synthesis xsd xml lang en US gt El XYZ cuesta lt prosody rate 10 gt 45 lt prosody gt lt speak gt Enfasis lt xml version 1 0 gt lt speak version 1 0 xmlns http www w3 org 2001 10 synthesis xmlns xsi http www w3 org 2001 XMLSchema instance xsi schemaLocation http www w3 org 2001 10 synthesis http www w3 org TR speech synthesis synthesis xsd xml lang en US gt Este es un lt emphasis gt gran lt emphasis gt carro Esa es una lt emphasis level strong gt gran lt emphasis gt cuenta de banco lt speak gt Pautas lt xml version 1 0 gt lt speak version 1 0 xmlns http www w3 org 2001 10 synthesis xmlns xsi http www w3 org 2001 XMLSchema instance xsi schemaLocation http www w3 org 2001 10 synthesis http www w3 org TR speech synthesis synthesis xsd xml lang en US gt Respire profundo lt break gt ahora continue Presiona 1 o espera el tono lt break time 3s gt No te he escuchado lt break strength weak gt Por favor intenta de nuevo lt speak gt Referencias Editar http www w3 org TR speech synthesis Enlaces externos EditarSpeech Synthesis Markup Language SSML Version 1 0 International Phonetic Association IPA JSGF JSML SSML SSML para Windows Phone 8 Datos Q1971947 Multimedia SSML Obtenido de https es wikipedia org w index php title Speech Synthesis Markup Language amp oldid 141933872, wikipedia, wiki, leyendo, leer, libro, biblioteca,

español

, española, descargar, gratis, descargar gratis, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, imagen, música, canción, película, libro, juego, juegos