Search found 81 matches

by wmorton
Mon May 06, 2019 9:29 am
Forum: Coding Questions
Topic: Possible to use Google Wavenet Voice Synthesis?
Replies: 1
Views: 798

Possible to use Google Wavenet Voice Synthesis?

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 ...
by wmorton
Sun May 25, 2014 9:15 am
Forum: Coding Questions
Topic: writing a program using a website API
Replies: 4
Views: 908

Re: writing a program using a website API

thank you both so much, I understand this now!

Thanks!
by wmorton
Sat May 17, 2014 10:29 am
Forum: Coding Questions
Topic: writing a program using a website API
Replies: 4
Views: 908

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!
by wmorton
Sun Jun 02, 2013 7:17 pm
Forum: Coding Questions
Topic: Please help diagnose my procedure
Replies: 5
Views: 1509

Re: Please help diagnose my procedure

Thank you all for your replies, hey are a big help. I have a lot to learn!
by wmorton
Thu May 30, 2013 9:22 pm
Forum: Coding Questions
Topic: Please help diagnose my procedure
Replies: 5
Views: 1509

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 ...
by wmorton
Fri Aug 05, 2011 11:11 am
Forum: General Discussion
Topic: Looking for MIDI-Library
Replies: 28
Views: 14837

Re: Looking for MIDI-Library

Brilliant, thank you very much!
by wmorton
Fri Aug 05, 2011 10:06 am
Forum: General Discussion
Topic: Looking for MIDI-Library
Replies: 28
Views: 14837

Re: Looking for MIDI-Library

Hi Dobro,

I can't find your MIDI library at your link - is it still available?

hanks!
by wmorton
Fri Aug 05, 2011 10:02 am
Forum: Coding Questions
Topic: Output MIDI to other programs
Replies: 4
Views: 1390

Re: Output MIDI to other programs

I'm also interested in this - did either of you get anywhere with it?
by wmorton
Wed Nov 24, 2010 1:05 pm
Forum: Coding Questions
Topic: Include external exes in your program?
Replies: 2
Views: 959

Re: Include external exes in your program?

Fantastic, thanks!
by wmorton
Wed Nov 24, 2010 12:50 pm
Forum: Coding Questions
Topic: Include external exes in your program?
Replies: 2
Views: 959

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 ...
by wmorton
Tue May 05, 2009 5:06 pm
Forum: Coding Questions
Topic: Text to Phonemes / C to PB converter
Replies: 3
Views: 1463

Ah yes, I've just had a look at this, it sends text to a SAPI voice.

What I am looking for though, is something like the program in my first post, where it converts text to phonemes, not text to speech. So, if I type in "My Generation." the program outputs "~mAY _J2EHnAXr1EYSIXn." (or similar ...
by wmorton
Tue May 05, 2009 4:48 pm
Forum: Coding Questions
Topic: Text to Phonemes / C to PB converter
Replies: 3
Views: 1463

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!
by wmorton
Sat Dec 13, 2008 10:09 am
Forum: Coding Questions
Topic: VST Plugin Help
Replies: 5
Views: 3394

Thanks, I'll take a look!
by wmorton
Thu Dec 11, 2008 5:34 pm
Forum: Coding Questions
Topic: VST Plugin Help
Replies: 5
Views: 3394

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 ...
by wmorton
Fri Sep 12, 2008 6:54 pm
Forum: Coding Questions
Topic: eof() problem
Replies: 2
Views: 775

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 ...