wavetable generator
- oli_lab
- Member
- Posts: 1286
- Location: Brittany, France
- Contact:
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 ?
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 ?
http://oli-lab.org
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
- oli_lab
- Member
- Posts: 1286
- Location: Brittany, France
- Contact:
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...
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...
http://oli-lab.org
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
- oli_lab
- Member
- Posts: 1286
- Location: Brittany, France
- Contact:
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...
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...
http://oli-lab.org
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
- oli_lab
- Member
- Posts: 1286
- Location: Brittany, France
- Contact:
up !
I'm still stuck on that one !
I'm still stuck on that one !
http://oli-lab.org
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
- oli_lab
- Member
- Posts: 1286
- Location: Brittany, France
- Contact:
+1
we need an exemple indeed !
we need an exemple indeed !
http://oli-lab.org
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
- senso
- Site Admin
- Posts: 4427
- Location: France
- Contact:
Actually the
//sdkLoadInMemoryAudioFile
//sdkGetChannelAudioFile
//sdkGetSampleRateAudioFile
//sdkGetBlocSampleAudioFile
//sdkGetBitPerSampleAudioFile
//sdkGetSampleAudioFile
are not functional in HH2.
sorry
//sdkLoadInMemoryAudioFile
//sdkGetChannelAudioFile
//sdkGetSampleRateAudioFile
//sdkGetBlocSampleAudioFile
//sdkGetBitPerSampleAudioFile
//sdkGetSampleAudioFile
are not functional in HH2.
sorry
Olivier Sens
www.brainmodular.com
www.brainmodular.com
- oli_lab
- Member
- Posts: 1286
- Location: Brittany, France
- Contact:
ok,
I'll try with ole C++
I'll try with ole C++
http://oli-lab.org
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
