Text to speech for a Barnett Link Call callout

bfranklin

Member
Join Date
Sep 2012
Location
Alberta
Posts
125
Hey,

I am looking for a program that can convert a text to speech phrase into a .wav file.
The .wav will then be used for a Barnett Link callout system.

Thanks
 
You can do this very easy with the free Visual Studio Community Edition. Just create a Visual Basic Project, add a reference to System.Speech, then it only takes 3 lines of code:

Code:
       Dim synth As New System.Speech.Synthesis.SpeechSynthesizer
        synth.SetOutputToWaveFile(".\Sample.wav")
        synth.Speak("Hello")
 

Similar Topics

I had a new request from a customer a few days ago and I cannot find anything about what they are requesting (supposedly he has seen it in the...
Replies
7
Views
2,303
Hello, I am using studio 5000 pro and am trying to figure out the structured text. Here's my scenario: An operator scans a barcode, the barcode...
Replies
15
Views
214
Hi everyone, I hope you're all doing well. I'm currently working on updating an HMI project for the GP2500, and I've encountered a bit of a...
Replies
1
Views
100
I'm working with a project that contains some routines in ST but mostly in ladder. Am I correct in assuming this 'rung': DB1001DO._01AV55_OPEN :=...
Replies
4
Views
114
I have an expression in a structured text routine of a Logix controller that looks more or less like the following: ResultInteger := Integer1 *...
Replies
13
Views
389
Back
Top Bottom