to create a pitch shifter, try to mix both of them, using the 'pitch shifter.pat' example. forward ---- expand array ----- inverse into the same process loop.
]]>2009-09-01T13:22:47+02:002009-09-01T13:22:47+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=10064#p10064 thank you for this fantastic tool with source !! I try to make a transposition directly in PhaseVocoderForw and i saw that there is a function that seems dedicated : pPrototype->ptran->tickTransp(float semitones); But i can succed to use it, is it complicated to use ?
i try to put something in the process loop like that
It doesn't work but, since the transpose function like what you did in the pitch shifter.pat modifies frequencies and amplitudes arrays lenght (sampleFrames), i suppose this function take place after the determination of sampleFrames. the way i use it is perhaps a non sense code speaking but i am not fluent yet about pointer manipulation.
Statistics: Posted by pansoul — 01 Sep 2009, 13:22
]]>2009-06-10T20:13:19+02:002009-06-10T20:13:19+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=9264#p9264probably in futures versions of usine
]]>2009-06-10T20:10:30+02:002009-06-10T20:10:30+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=9263#p9263Statistics: Posted by nelson — 10 Jun 2009, 20:10
]]>2009-06-09T10:25:22+02:002009-06-09T10:25:22+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=9218#p9218Statistics: Posted by senso — 09 Jun 2009, 10:25
]]>2009-05-21T15:54:41+02:002009-05-21T15:54:41+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8922#p8922Statistics: Posted by goyya76 — 21 May 2009, 15:54
]]>2009-05-21T14:52:02+02:002009-05-21T14:52:02+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8920#p8920
Statistics: Posted by nay-seven — 21 May 2009, 14:52
]]>2009-05-21T12:25:33+02:002009-05-21T12:25:33+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8917#p8917 i have to admit i still have to learn how to deal with arrays...so here's my question: am i wrong if i think that i can use the output of the FFT forward module to do some resynthesis on the input sound (for example enhancing some frequencies, splitting the input sound into different bands etc), to find the fundamental frequency and maybe to generate a set of sine waves using the frequencies in the array??
BTW pitch shifting sounds pretty good!
Ciao, Goyya
Statistics: Posted by goyya76 — 21 May 2009, 12:25
]]>2009-05-16T23:10:54+02:002009-05-16T23:10:54+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8862#p8862Spectral delay remind me this plugin : http://www.artificialaudio.com/pluginmenu/2 I'd like to emulate it in the past in usine. Now it's really possible !
Statistics: Posted by moody33 — 16 May 2009, 23:10
]]>2009-05-13T00:24:28+02:002009-05-13T00:24:28+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8773#p8773Statistics: Posted by Clearscreen — 13 May 2009, 00:24
]]>2009-05-12T19:46:34+02:002009-05-12T19:46:34+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8764#p8764
Statistics: Posted by ethnix73 — 12 May 2009, 19:46
@martin: I've just made a copy/cut from your template!!!
It's made for that, note that you are my first customer
But it's little more than a copy/past :rolleyes: i see some asm in there. and the FFT sources seems like a mess, at first look
you can take a look and try to optimize it?
It's exactly what i'm doing now (looking in)
Before optimization (if i can do something at this level), i propose to reorganize projects and solution files.
We have to think about a global way to publish these little jewels. I think individuals project for each user modules is enough (like the Display Number and the Roll Array) : - If we open just the vcproj file, VC construct automatically a solution for it (Good for instant access and compile) - We can also open them in an existing solution, like explained in the wiki (Good for more deep studying and compare with other modules).
PS : the first optimization could be to compile them in release mode
Statistics: Posted by martignasse — 12 May 2009, 19:16
]]>2009-05-12T18:15:20+02:002009-05-12T18:15:20+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8760#p8760you can take a look and try to optimize it?
]]>2009-05-12T17:57:37+02:002009-05-12T17:57:37+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8759#p8759 Serious toy you made here result are so.....spectral
and you said you don't know C++ hehe
Statistics: Posted by martignasse — 12 May 2009, 17:57
]]>2009-05-12T17:54:10+02:002009-05-12T17:54:10+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8758#p8758Statistics: Posted by 23fx23 — 12 May 2009, 17:54
]]>2009-05-12T17:25:13+02:002009-05-12T17:25:13+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8756#p8756by senso Posted on 2009-05-12 15:11:33
The Phase Vocoder Pack opens a new area in spectral manipulations in Usine Contains:
- FFT forward module using the Phase Vocoder algorithm, transforms the input sound into a set of two array’s, one containing the frequencies and the other containing the amplitudes for each frequency.
This module allows frequency manipulations.
- FFT inverse module to provide the transformation from frequency domain to time (audio) domain.
- ArrayDelay module which delays each incoming value of an array according the delay input values (stored them self into and array). The delays are set in ‘number of audio blocs’.
- Pich-Shifter example using FFT forward and reverse. This patch provide a higher quality that the original library version. Unlike the classic FFT version (see Spectral in the Library) this Pitch-Shifter preserve the tonality and can be used for a transposition of a musical instrument.
- Spectral-Delay example ready to use made with the ArrayDelay module.
This work is my first User Module in C++ and can be improved and optimized; those versions aren’t CPU friendly.
to create a pitch shifter, try to mix both of them, using the 'pitch shifter.pat' example. forward ---- expand array ----- inverse into the same process loop.
]]>2009-09-01T13:22:47+02:002009-09-01T13:22:47+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=10064#p10064 thank you for this fantastic tool with source !! I try to make a transposition directly in PhaseVocoderForw and i saw that there is a function that seems dedicated : pPrototype->ptran->tickTransp(float semitones); But i can succed to use it, is it complicated to use ?
i try to put something in the process loop like that
It doesn't work but, since the transpose function like what you did in the pitch shifter.pat modifies frequencies and amplitudes arrays lenght (sampleFrames), i suppose this function take place after the determination of sampleFrames. the way i use it is perhaps a non sense code speaking but i am not fluent yet about pointer manipulation.
Statistics: Posted by pansoul — 01 Sep 2009, 13:22
]]>2009-06-10T20:13:19+02:002009-06-10T20:13:19+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=9264#p9264probably in futures versions of usine
]]>2009-06-10T20:10:30+02:002009-06-10T20:10:30+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=9263#p9263Statistics: Posted by nelson — 10 Jun 2009, 20:10
]]>2009-06-09T10:25:22+02:002009-06-09T10:25:22+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=9218#p9218Statistics: Posted by senso — 09 Jun 2009, 10:25
]]>2009-05-21T15:54:41+02:002009-05-21T15:54:41+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8922#p8922Statistics: Posted by goyya76 — 21 May 2009, 15:54
]]>2009-05-21T14:52:02+02:002009-05-21T14:52:02+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8920#p8920
Statistics: Posted by nay-seven — 21 May 2009, 14:52
]]>2009-05-21T12:25:33+02:002009-05-21T12:25:33+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8917#p8917 i have to admit i still have to learn how to deal with arrays...so here's my question: am i wrong if i think that i can use the output of the FFT forward module to do some resynthesis on the input sound (for example enhancing some frequencies, splitting the input sound into different bands etc), to find the fundamental frequency and maybe to generate a set of sine waves using the frequencies in the array??
BTW pitch shifting sounds pretty good!
Ciao, Goyya
Statistics: Posted by goyya76 — 21 May 2009, 12:25
]]>2009-05-16T23:10:54+02:002009-05-16T23:10:54+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8862#p8862Spectral delay remind me this plugin : http://www.artificialaudio.com/pluginmenu/2 I'd like to emulate it in the past in usine. Now it's really possible !
Statistics: Posted by moody33 — 16 May 2009, 23:10
]]>2009-05-13T00:24:28+02:002009-05-13T00:24:28+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8773#p8773Statistics: Posted by Clearscreen — 13 May 2009, 00:24
]]>2009-05-12T19:46:34+02:002009-05-12T19:46:34+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8764#p8764
Statistics: Posted by ethnix73 — 12 May 2009, 19:46
@martin: I've just made a copy/cut from your template!!!
It's made for that, note that you are my first customer
But it's little more than a copy/past :rolleyes: i see some asm in there. and the FFT sources seems like a mess, at first look
you can take a look and try to optimize it?
It's exactly what i'm doing now (looking in)
Before optimization (if i can do something at this level), i propose to reorganize projects and solution files.
We have to think about a global way to publish these little jewels. I think individuals project for each user modules is enough (like the Display Number and the Roll Array) : - If we open just the vcproj file, VC construct automatically a solution for it (Good for instant access and compile) - We can also open them in an existing solution, like explained in the wiki (Good for more deep studying and compare with other modules).
PS : the first optimization could be to compile them in release mode
Statistics: Posted by martignasse — 12 May 2009, 19:16
]]>2009-05-12T18:15:20+02:002009-05-12T18:15:20+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8760#p8760you can take a look and try to optimize it?
]]>2009-05-12T17:57:37+02:002009-05-12T17:57:37+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8759#p8759 Serious toy you made here result are so.....spectral
and you said you don't know C++ hehe
Statistics: Posted by martignasse — 12 May 2009, 17:57
]]>2009-05-12T17:54:10+02:002009-05-12T17:54:10+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8758#p8758Statistics: Posted by 23fx23 — 12 May 2009, 17:54
]]>2009-05-12T17:25:13+02:002009-05-12T17:25:13+02:00https://brainmodular.com/forums/viewtopic.php?t=1553&p=8756#p8756by senso Posted on 2009-05-12 15:11:33
The Phase Vocoder Pack opens a new area in spectral manipulations in Usine Contains:
- FFT forward module using the Phase Vocoder algorithm, transforms the input sound into a set of two array’s, one containing the frequencies and the other containing the amplitudes for each frequency.
This module allows frequency manipulations.
- FFT inverse module to provide the transformation from frequency domain to time (audio) domain.
- ArrayDelay module which delays each incoming value of an array according the delay input values (stored them self into and array). The delays are set in ‘number of audio blocs’.
- Pich-Shifter example using FFT forward and reverse. This patch provide a higher quality that the original library version. Unlike the classic FFT version (see Spectral in the Library) this Pitch-Shifter preserve the tonality and can be used for a transposition of a musical instrument.
- Spectral-Delay example ready to use made with the ArrayDelay module.
This work is my first User Module in C++ and can be improved and optimized; those versions aren’t CPU friendly.