Hi all, it has been a long long time since I have been in PureBasic so please forgive me :)
Is it possible to use Google's Wavenet Voice Synthesis in PureBasic? I want to write a program to convert lines of text into speech audio files. Thanks!
 https://cloud.google.com/text-to-speech/docs ...
					Search found 81 matches
- Mon May 06, 2019 9:29 am
 - Forum: Coding Questions
 - Topic: Possible to use Google Wavenet Voice Synthesis?
 - Replies: 1
 - Views: 827
 
- Sun May 25, 2014 9:15 am
 - Forum: Coding Questions
 - Topic: writing a program using a website API
 - Replies: 4
 - Views: 957
 
Re: writing a program using a website API
thank you both so much, I understand this now!
Thanks!
					Thanks!
- Sat May 17, 2014 10:29 am
 - Forum: Coding Questions
 - Topic: writing a program using a website API
 - Replies: 4
 - Views: 957
 
writing a program using a website API
I have no idea how to do this.  Using this API, how do I get PB to use these commands?  http://www.freesound.org/docs/api/
Thanks!
					Thanks!
- Sun Jun 02, 2013 7:17 pm
 - Forum: Coding Questions
 - Topic: Please help diagnose my procedure
 - Replies: 5
 - Views: 1608
 
Re: Please help diagnose my procedure
Thank you all for your replies, hey are a big help.  I have a lot to learn!
					- Thu May 30, 2013 9:22 pm
 - Forum: Coding Questions
 - Topic: Please help diagnose my procedure
 - Replies: 5
 - Views: 1608
 
Please help diagnose my procedure
I have an interface which consists of an editor gadget (#Editor) and three buttons - a 'process' button (which triggers this procedure), and 'yes' and 'no' buttons (#Yes and #No)
I want the program to work as follows:
I paste text into the editor and click 'process'. It then shows me each line of ...
					I want the program to work as follows:
I paste text into the editor and click 'process'. It then shows me each line of ...
- Fri Aug 05, 2011 11:11 am
 - Forum: General Discussion
 - Topic: Looking for MIDI-Library
 - Replies: 28
 - Views: 15172
 
Re: Looking for MIDI-Library
Brilliant, thank you very much!
					- Fri Aug 05, 2011 10:06 am
 - Forum: General Discussion
 - Topic: Looking for MIDI-Library
 - Replies: 28
 - Views: 15172
 
Re: Looking for MIDI-Library
Hi Dobro,
I can't find your MIDI library at your link - is it still available?
hanks!
					I can't find your MIDI library at your link - is it still available?
hanks!
- Fri Aug 05, 2011 10:02 am
 - Forum: Coding Questions
 - Topic: Output MIDI to other programs
 - Replies: 4
 - Views: 1441
 
Re: Output MIDI to other programs
I'm also interested in this - did either of you get anywhere with it?
					- Wed Nov 24, 2010 1:05 pm
 - Forum: Coding Questions
 - Topic: Include external exes in your program?
 - Replies: 2
 - Views: 1005
 
Re: Include external exes in your program?
Fantastic, thanks!
					- Wed Nov 24, 2010 12:50 pm
 - Forum: Coding Questions
 - Topic: Include external exes in your program?
 - Replies: 2
 - Views: 1005
 
Include external exes in your program?
I've just been using a program done in AutoHotKey that works by having command-line executables contained within the AHK exe, and when you run the program it unpacks the command-line exes to the windows temp folder then the AHK program acts as a front end for them.
Is it possible to do this within ...
					Is it possible to do this within ...
- Tue May 05, 2009 5:06 pm
 - Forum: Coding Questions
 - Topic: Text to Phonemes / C to PB converter
 - Replies: 3
 - Views: 1510
 
- Tue May 05, 2009 4:48 pm
 - Forum: Coding Questions
 - Topic: Text to Phonemes / C to PB converter
 - Replies: 3
 - Views: 1510
 
Text to Phonemes / C to PB converter
Hi, is there any source for a text to phoneme converter in PB?  Failing this, is there a C to PB converter?  I found something but it's in C (and I don't know the first thing about C) http://www.speech.cs.cmu.edu/comp.speec ... eme.3.html
Thanks!
					Thanks!
- Sat Dec 13, 2008 10:09 am
 - Forum: Coding Questions
 - Topic: VST Plugin Help
 - Replies: 5
 - Views: 3484
 
- Thu Dec 11, 2008 5:34 pm
 - Forum: Coding Questions
 - Topic: VST Plugin Help
 - Replies: 5
 - Views: 3484
 
VST Plugin Help
Hi
Is there any help anywhere for using VST plugins with PB?
I would like to do the following:
1. Load a VST plugin (OpenLibrary() seems to work)
2. Get a list of parameters and their values in a VST plugin (filter cut off, etc)
3. Select presets within the plugin, and update the values for the ...
					Is there any help anywhere for using VST plugins with PB?
I would like to do the following:
1. Load a VST plugin (OpenLibrary() seems to work)
2. Get a list of parameters and their values in a VST plugin (filter cut off, etc)
3. Select presets within the plugin, and update the values for the ...
- Fri Sep 12, 2008 6:54 pm
 - Forum: Coding Questions
 - Topic: eof() problem
 - Replies: 2
 - Views: 808
 
eof() problem
Hi, I am accessing a text file with readfile() and then reading strings one by one which I am writing to another text file. However, the program seemingly runs forever, never getting out of the While/Wend section, as if there is no end to the original file:
While Eof(#ORIGINAL) = 0
 
Repeat ...
					While Eof(#ORIGINAL) = 0
Repeat ...