masto.es es uno de los varios servidores independientes de Mastodon que puedes usar para participar en el fediverso.
Bienvenidos a masto.es, el mayor servidor de Mastodon para hispanohablantes de temática general.

Administrado por:

Estadísticas del servidor:

2 K
usuarios activos

#tts

2 publicaciones2 participantes0 publicaciones hoy

#LibreOffice #Texte unter #Linux #diktieren mit #SpeechNote:

Die #TTS und #STT Anwendung #Speech_Note liefert gute Ergebnisse, auch auf mittelstarker Hardware. Die verschiedenen #KI- Modelle werden alle lokal ausgeführt.

Speech Note als #Flatpak installiert. Nach der Installation belegt das Programm knapp 4 GB auf der SSD. Wer knappen Massenspeicher hat, sollte sich dessen bewusst sein. Doch damit nicht genug; beim ersten Starten der Anwendung darf man eine Sprache...

gnulinux.ch/libre-office-texte

GNU/Linux.chLibre Office Texte unter Linux diktieren mit Speech NoteDie TTS und STT Anwendung Speech Note liefert gute Ergebnisse, auch auf mittelstarker Hardware. Die verschiedenen KI-Modelle werden alle lokal ausgeführt.
Respondió en el hilo
Olá! Seguem dicas:

🔤💬 Ao pesquisar por esse tipo de programa, o termo costuma ser " #TTS " — Text-To-Speech / texto para fala.

Então, para tornozeleiras eletrônicas de bolso :android: #Android, consegui ver que há várias opções de aplicativos de TTS no F-Droid, repositório de #SoftwareLivre para essa plataforma, mas não sei qual seria mais adequada ao caso. Talvez mais alguém possa confirmar? Acho que, pela descrição deste, poderia ser o TTS Util (licença Apache 2.0 ✔️).

Em distribuições de :gnu: #GNU, geralmente já vem instalado algum mecanismo desses, que pode ser utilizado até pelo :shell: Terminal ou em scripts, por exemplo com o comando spd-say:

spd-say -l pt-BR 'Atenção! A reunião tal começa em 5 minutos.'
Se o idioma da máquina já for o desejado, não precisa especificar.

CC: @Beaux24@mastodon.social
search.f-droid.orgF-Droid Search: tts

I wrote this blueprint for a web app that would make it easier for people to build voices and languages for different TTS engines. It's vague, but it's a start if anyone wants to contribute to it or eventually create the real thing. Boosts appreciated, as always. github.com/lower-elements/Voic #TTS #Accessibility #AI #ML

An easy way to create voices for any TTS engine. Contribute to lower-elements/Voice-Creator-Studio development by creating an account on GitHub.
GitHubGitHub - lower-elements/Voice-Creator-Studio: An easy way to create voices for any TTS engineAn easy way to create voices for any TTS engine. Contribute to lower-elements/Voice-Creator-Studio development by creating an account on GitHub.

🆕 blog! “1KB JS Numbers Station”

Code Golf is the art/science of creating wonderful little demos in an artificially constrained environment. This year the js1024 competition was looking for entries with the theme of "Creepy".

I am not a serious bit-twiddler. I can't create JS shaders which produce intricate 3D worlds in a scrap of code. But I can use slightly obscure JavaScript…

👀 Read more: shkspr.mobi/blog/2025/07/1kb-j

#code #HTML #javascript #tts

Random monochrome tiles with the word Numbers Station superimposed.
Terence Eden’s Blog · 1KB JS Numbers Station
Más de Terence Eden

1KB JS Numbers Station

shkspr.mobi/blog/2025/07/1kb-j

Code Golf is the art/science of creating wonderful little demos in an artificially constrained environment. This year the js1024 competition was looking for entries with the theme of "Creepy".

I am not a serious bit-twiddler. I can't create JS shaders which produce intricate 3D worlds in a scrap of code. But I can use slightly obscure JavaScript APIs!

There's something deliciously creepy about Numbers Stations - the weird radio frequencies which broadcast seemingly random numbers and words. Are they spies communicating? Commands for nuclear missiles? Long range radio propagation tests? Who knows!

So I decided to build one. Play with the demo.

Obviously, even the most extreme opus compression can't fit much audio into 1KB. Luckily, JavaScript has you covered! Most modern browsers have a built-in Text-To-Speech (TTS) API.

Here's the most basic example:

 JavaScriptm = new SpeechSynthesisUtterance;m.text = "Hello";speechSynthesis.speak(m);

Run that JS and your computer will speak to you!

In order to make it creepy, I played about with the rate (how fast or slow it speaks) and the pitch (how high or low).

 JavaScriptm.rate=Math.random();m.pitch=Math.random()*2;

It worked disturbingly well! High pitched drawls, rumbling gabbling, the languid cadence of a chattering friend. All rather creepy.

But what could I make it say? Getting it to read out numbers is pretty easy - this will generate a random integer:

 JavaScripts = Math.ceil( Math.random()*1000 );

But a list of words would be tricky. There's not much space in 1,024 bytes for anything complex. The rules say I can't use any external resources; so are there any internal sources of words? Yes!

 JavaScriptObject.getOwnPropertyNames( globalThis );

That gets all the properties of the global object which are available to the browser! Depending on your browser, that's over 1,000 words!

But there's a slight problem. Many of them are quite "computery" words like "ReferenceError", "URIError", "Float16Array". I wanted all the single words - that is, anything which only has one capital letter and that's at the start.

 JavaScriptconst l = (n) => {    return ((n.match(/[A-Z]/g) || []).length === 1 && (n.charAt(0).match(/[A-Z]/g) || []).length === 1);};//   Get a random result from the filters = Object.getOwnPropertyNames( globalThis ).filter( l ).sort( ()=>.5-Math.random() )[0]

Rather pleasingly, that brings back creepy words like "Event", "Atomics", and "Geolocation".

Of course, Numbers Stations don't just broadcast in English. The TTS system can vocalise in multiple languages.

 JavaScript//   Set the language to Russianm.lang = "ru-RU";

OK, but where do we get all those language strings from? Again, they're built in and can be retrieved randomly.

 JavaScriptvar e = window.speechSynthesis.getVoices();m.lang = e[ (Math.random()*e.length) |0 ]

If you pass the TTS the number 555 and ask it to speak German, it will read out fünfhundertfünfundfünfzig.

And, if you tell the TTS to speak an English word like "Worker" in a foreign language, it will pronounce it with an accent.

Randomly altering the pitch, speed, and voice to read out numbers and dissociated words produces, I think, a rather creepy effect.

If you want to test it out, you can press this button. I find that it works best in browsers with a good TTS engine - let me know how it sounds on your machine.

🅝🅤🅜🅑🅔🅡🅢 🅢🅣🅐🅣🅘🅞🅝

With the remaining few bytes at my disposal, I produced a quick-and-dirty random pattern using Unicode drawing blocks. It isn't very sophisticated, but it does have a little random animation to it.

You can play with all the js1024 entries - I would be delighted if you voted for mine.

Random monochrome tiles with the word Numbers Station superimposed.
Terence Eden’s Blog · 1KB JS Numbers Station
Más de Terence Eden

Hablemos de los TTS, antes era algo que ignoraba demasiado, pero recientemente lo veo como una utilidad para escribir mejor ciertas cosas, como el uso de las tildes

Hay una app de Google que viene prácticamente en cualquier teléfono (como casi todas) la cual cumple con esto, mi duda es, como se hara para quienes no tienen Google? Pues esta un poco complicada la cosa, al menos para mi que no me gusta tener dos apps si una sola puede hacerlo perfecto, aunque para evitar eso utilizo esta web pero para quienes lo quieran mas cómodo, aqui el dato

La cosa esta asi, la mayoría de alternativas no traen la funcion para que lea las palabras y eso que en teoria es un TTS, solo proporcionan la voz, asi que si quieren dicha funcion existe una app aparte...

La que proporciona la voz: RHVoice (Recomendada)

Para leer las palabras, con ayuda de la que proporciona la voz: TTS Util

Si, sería mas comodo que al menos RHVoice tuviera esa funcion ya implemetada, pero bueno, algo es algo...

www.text-to-speech.onlineHerramientas gratuitas de conversión de texto a voz en líneaDesarrollamos una herramienta de síntesis de texto a voz en línea, que convierte el texto en voz humana natural y fluida, proporciona más de 100 altavoces para que usted elija, es compatible con varios idiomas, varios dialectos y mezclas chino-inglés, y puede configurar el audio de manera flexible parámetro. Es ampliamente utilizado en lectura de noticias, navegación de viajes, hardware inteligente y transmisión de notificaciones. Y puede convertir el contenido de texto en archivos MP3 para descargar y guardar.
Respondió en el hilo

@thelinuxEXP I really like Speech Note! It's a fantastic tool for quick and local voice transcription in multiple languages, created by @mkiol

It's incredibly handy for capturing thoughts on the go, conducting interviews, or making voice memos without worrying about language barriers. The app uses strictly locally running LLMs, and its ease of use makes it a standout choice for anyone needing offline transcription services.

I primarily use #WhisperAI for transcription and Piper for voice, but many other models are available as well.

It is available as flatpak and github.com/mkiol/dsnote

#TTS #transcription #TextToSpeech #translator translation #offline #machinetranslation #sailfishos #SpeechSynthesis #SpeechRecognition #speechtotext #nmt #linux-desktop #stt #asr #flatpak-applications #SpeechNote

couldnt sleep so therefore architecturally reworked my little academia paper to mp3 app - have to admit that I see the point of #Python now + new google #tts voicegen is pretty slick.

Most fun part though was refactoring close to everything so the app is now architecturally solid - it follows principles for Clean Code using dependency injection, domain logic separation, modularity etc. Oh and proper tests <3 Again learning so much!

github.com/nbhansen/silly_PDF2

GitHubGitHub - nbhansen/silly_PDF2WAV: I always wanted to listen to academic papers in my car and now I can, sorta shittyly but here we are.I always wanted to listen to academic papers in my car and now I can, sorta shittyly but here we are. - nbhansen/silly_PDF2WAV

#AudioMo day 5: A Quick Look At The Nintendo Switch 2 TTS Accessibility youtu.be/xt5sPvaoshc

I've just gotten a hold of this console so I know nothing much yet, but I will learn more over the coming days and weeks.
This is a quick demo with me only having had access to it for about 30 minutes if that.
#Nintendo #Switch2 #ScreenReader #TTS #Accessibility

youtu.be- YouTubeDisfruta de los vídeos y la música que te gustan, sube material original y comparte el contenido con tus amigos, tu familia y el resto del mundo en YouTube.