Page 1 of 1

Posted: 10 Mar 2016, 10:56
by oli_lab
Hey !
I found these 2 softwares :

Audio term is analysis and resynthesis software

https://www.google.fr/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&ved=0ahUKEwiCuKq767XLAhWGiRoKHVQUALoQFggyMAM&url=https%3A%2F%2Fdl.dropbox.com%2Fs%2F1y0d88ts8zy1um7%2FAudio-Term.zip%3Fm&usg=AFQjCNEzut3WEMy6lTzrvtWCGzFmrZNNcw&sig2=hywmKphouSC2jcc4_gOQXg&cad=rja

and wave table creator is for building the wavetables...

http://lady.rdsor.ro/~kotro/index.php?m=soft

could be fun to make a wavetable reader as a module ?

any ideas of options ?

Posted: 12 Mar 2016, 14:25
by 23fx23
looks cool! good idea.

Posted: 18 Mar 2016, 12:40
by oli_lab
Hi
I will need to open wave files from the module...
[s]Is C++ fopen up to the task ?[/s]

Oh, I'm starting to get somewhere :

every thing has been taking care of in the sdk :

//sdkLoadInMemoryAudioFile
//sdkGetChannelAudioFile
//sdkGetSampleRateAudioFile
//sdkGetBlocSampleAudioFile
//sdkGetBitPerSampleAudioFile
//sdkGetSampleAudioFile

I thinking also of a way to do wavetables in real time...

Posted: 19 Mar 2016, 09:36
by oli_lab
Hi ,
I'm stuck !!!!

I'm trying to load an audiofile from disk

in .h I did :
AudioFilePtr wavetable;

and in .cpp :

// constructor
WTsynth::WTsynth()
{
wavetable = sdkCreateAudioFile(); // this bit does not work and the module does not create itself while loading in Usine.
}

// destructor
WTsynth::~WTsynth()
{
sdkDestroyAudioFile(wavetable);
}

I tried to remove "wavetable = sdkCreateAudioFile(); " from constructor and put it in Oninit : not working either...

Posted: 22 Mar 2016, 09:36
by oli_lab
up !

I'm still stuck on that one !

Posted: 23 Mar 2016, 14:39
by 23fx23
at some point i also tried to do the reverse, place some arrays of float into a file using sdk audio files commands and save to disk but i could never succeed, miss something as well sorry.
an audio file creation/load/manipulation/save sdk exemple could be cool !

Posted: 23 Mar 2016, 15:01
by oli_lab
+1

we need an exemple indeed !

Posted: 23 Mar 2016, 18:19
by sephult
That synopsis software looks cool. I just bought a Blofeld too, thanks for sharing. Will be cool if could get live wave tables goin in usine

Posted: 24 Mar 2016, 10:06
by senso
Actually the
//sdkLoadInMemoryAudioFile
//sdkGetChannelAudioFile
//sdkGetSampleRateAudioFile
//sdkGetBlocSampleAudioFile
//sdkGetBitPerSampleAudioFile
//sdkGetSampleAudioFile

are not functional in HH2.
sorry

Posted: 24 Mar 2016, 11:04
by oli_lab
ok,
I'll try with ole C++