Support

If you have a problem or need to report a bug please email : support@dsprobotics.com

There are 3 sections to this support area:

DOWNLOADS: access to product manuals, support files and drivers

HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects

USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here

NEW REGISTRATIONS - please contact us if you wish to register on the forum

I want to learn Flowstone DSP coding full help me pls

DSP related issues, mathematics, processing and techniques

I want to learn Flowstone DSP coding full help me pls

Postby rdgaudio » Wed Mar 08, 2017 9:48 pm

Hello all my Flowstone/SE users Friends,
I am very new to Flowstone . I want to learn full DSP coding for flowstone. I have tried DSP guru/music dsp etc sites but unable to figure out the error.When I put Music DSP sites' code inside flowstone nothing happens. I need proper learning path of flowstone's DSP coding. Any Online site,PDF or video tutorials will be very useful to me.


Regards,
Rudra Ghosh

Founder of Refined Digital Group
(RDGAudio)
JC Conkato
User avatar
rdgaudio
 
Posts: 32
Joined: Wed Mar 08, 2017 9:29 pm
Location: Hulala

Re: I want to learn Flowstone DSP coding full help me pls

Postby nix » Wed Mar 08, 2017 11:42 pm

Welcome!

perhaps you need to declare inputs/outputs and variables like FS asks.

Check the manual- I think it has a real concise part on the dsp box
Also many functions may not be available,
and you may need to translate them into the FS equivalents-
which I hope can be found- they usually turn up for me.

It will take some tinkering and head scratching to port code I think-
but in the end the dsp component is simple and you can do a lot with it.

Enjoy!.. and once more welcome
by all means link us to an example you want to port, and maybe we can help
User avatar
nix
 
Posts: 817
Joined: Tue Jul 13, 2010 10:51 am

Re: I want to learn Flowstone DSP coding full help me pls

Postby rdgaudio » Thu Mar 09, 2017 6:43 am

nix wrote:Welcome!

perhaps you need to declare inputs/outputs and variables like FS asks.

Check the manual- I think it has a real concise part on the dsp box
Also many functions may not be available,
and you may need to translate them into the FS equivalents-
which I hope can be found- they usually turn up for me.

It will take some tinkering and head scratching to port code I think-
but in the end the dsp component is simple and you can do a lot with it.

Enjoy!.. and once more welcome
by all means link us to an example you want to port, and maybe we can help


Thank you Nix for your reply...
"you may need to translate them into the FS equivalents-
which I hope can be found- they usually turn up for me"...where to find it?
I have read the FS user manual, I have learned " purple" "green" "blue" etc color for correct function and streamin in; and streamout out; function etc. I have studied the user manual pdf (downloaded from tutorial section) but still unable to figure out the dsp coding which synthmaker/flowstone follows.The user manual's DSP coding is not briefly described. My back ground is Computer science, so I want to learn full DSP for SM/FS full step by step from scratch. I have downloaded other user's examples but still unable to figure out the logic. That's why I need a DSP manual/help file for FS/SM or any web link to learn DSP for Flowstone.

Regards,
Rudra
JC Conkato
User avatar
rdgaudio
 
Posts: 32
Joined: Wed Mar 08, 2017 9:29 pm
Location: Hulala

Re: I want to learn Flowstone DSP coding full help me pls

Postby martinvicanek » Thu Mar 09, 2017 7:47 am

Welcome rdgaudio!
As nix said: start with a small project, see how far you get, and post your schematic so we can help you.
User avatar
martinvicanek
 
Posts: 1315
Joined: Sat Jun 22, 2013 8:28 pm

Re: I want to learn Flowstone DSP coding full help me pls

Postby Nubeat7 » Thu Mar 09, 2017 9:40 am

its pretty clear in the user guide, but you should start with simple things like martin said,

one good start ist to translate simple circuits into dsp code, like this you also can test if the result is the same...

here is a simple example for you

welcome to the forum :)
Attachments
codepractice1.fsm
(1.15 KiB) Downloaded 1234 times
User avatar
Nubeat7
 
Posts: 1347
Joined: Sat Apr 14, 2012 9:59 am
Location: Vienna

Re: I want to learn Flowstone DSP coding full help me pls

Postby Spogg » Thu Mar 09, 2017 10:13 am

Hi and welcome :D

The manual is incomplete in terms of expressions available. Take a look at my old topic (there's some maths philosophy in there too which may entertain :lol: )

viewtopic.php?f=4&t=3454#p18747

Cheers

Spogg
User avatar
Spogg
 
Posts: 3318
Joined: Thu Nov 20, 2014 4:24 pm
Location: Birmingham, England

Re: I want to learn Flowstone DSP coding full help me pls

Postby rdgaudio » Thu Mar 09, 2017 6:21 pm

Thank you Nubeat7 and Spogg. I have started studying "codepractise1.fsm" ... :D . I have also read Spogg's post but frankly speaking you are sky level and I am in ground. :lol: So I have to work hard with FS. Thanks... you guys will always help me to learn FS and DSP. I will post my Examples here to learn from you. And Yes I will start small project first. :)
JC Conkato
User avatar
rdgaudio
 
Posts: 32
Joined: Wed Mar 08, 2017 9:29 pm
Location: Hulala

Re: I want to learn Flowstone DSP coding full help me pls

Postby rdgaudio » Thu Mar 09, 2017 6:45 pm

Cool... understanding from codepractise1.fsm. :)
JC Conkato
User avatar
rdgaudio
 
Posts: 32
Joined: Wed Mar 08, 2017 9:29 pm
Location: Hulala

Re: I want to learn Flowstone DSP coding full help me pls

Postby rdgaudio » Thu Mar 09, 2017 7:34 pm

Understand the "codepractise1.fsm". Here I have written a Stereo enhancer DSP code. All my Sirs can you check it and correct it pls? I have studied it from http://musicdsp.org/archive.php?classid=4#78 and tried it in Flowstone. now I need masters help :)
Attachments
Stereo Enhancer trying.fsm
(640 Bytes) Downloaded 1194 times
JC Conkato
User avatar
rdgaudio
 
Posts: 32
Joined: Wed Mar 08, 2017 9:29 pm
Location: Hulala

Re: I want to learn Flowstone DSP coding full help me pls

Postby Lex248 » Thu Mar 09, 2017 9:09 pm

So correctly.
Code: Select all
//stereo enhancer trying

streamin inleft;
streamin inright;
streamout outleft;
streamout outright;

float wide = 1.2;
float expan, mono;

mono = (inleft + inright)/2;
expan = inleft - mono;
expan = expan * wide;
outleft = inleft + expan;
outright = inright - expan;
Attachments
Stereo Enhancer (1).fsm
(19.99 KiB) Downloaded 1200 times
Last edited by Lex248 on Fri Mar 10, 2017 7:02 am, edited 1 time in total.
Sorry, I bad speak english.
---
My plug-ins http://nalexsoft.blogspot.com/
Lex248
 
Posts: 33
Joined: Mon Aug 29, 2016 7:44 pm
Location: Russia

Next

Return to DSP

Who is online

Users browsing this forum: No registered users and 24 guests