Unity tutorial demo 2 "Penguin"
0:41
Unity tutorial demo "Planet"
1:15
4 жыл бұрын
TSS Control-C MML Player
0:56
8 жыл бұрын
3D Sequencer
0:43
8 жыл бұрын
3分でわかるIRの録り方
3:01
10 жыл бұрын
Webrhy MIDI demo
1:19
10 жыл бұрын
webrhy - web beat machine
1:37
10 жыл бұрын
Web Audio API Rhythm Machine
0:38
11 жыл бұрын
JavaScript Instruments "Tonal Circle"
2:45
Пікірлер
@dudeawsomeness1
@dudeawsomeness1 27 күн бұрын
Nice, I wasn't sure if I was supposed to put the microphone or the speaker in the mask. At least for the deconvolution method it makes sense to do it this way.
@Fascry_
@Fascry_ 3 ай бұрын
👍
@LC-yv9ey
@LC-yv9ey 3 ай бұрын
Thank you 🙏
@sisi6679
@sisi6679 4 ай бұрын
hey so everything went fine up until trying to get it to open in a DAW. I checked the files of the vst folder it created, and the "x86_64-win" folder is empty. Every other vst in my vst3 folder that has a folder has a vst file in that folder. but mine is missing for the vst I created. any reason why?
@treproductions9522
@treproductions9522 4 ай бұрын
Hello, so when i click create at around step 1:35, it says could not find any instance of Visual Studio. i have the latest build (currently) of visual studio installed. but I've noticed the project generator only has up to version 17 2022 listed. is that an issue? Do I need to download a older version of vs code for this to work?
@PrecodedOfficial
@PrecodedOfficial 4 ай бұрын
i cant do anything on the vst project generator, all options are disabled for some reason
@charlinhoful
@charlinhoful 4 ай бұрын
Meu Deus um monte de códigos pra gerar dos knobs ,desisto
@tylergarrett
@tylergarrett 4 ай бұрын
woh kick ass walkthrough, going to be watching this very slowly a few times.
@dex.9122
@dex.9122 5 ай бұрын
i want a vst to control the esx in fl directesx doesn't work and kong haven't released anything is this possible?
@Flowee141
@Flowee141 5 ай бұрын
hahah its crazy man. im waiting for new uploads!!!
@preamble466
@preamble466 5 ай бұрын
Excellent tutorial, thank you.
@scorestorm
@scorestorm 6 ай бұрын
do u know how to make nkx containers for samples?
@TuriaArt
@TuriaArt 6 ай бұрын
Super!
@connorfrancey5006
@connorfrancey5006 7 ай бұрын
You defined PI2 as pi*2 but you should multiple pi by 2 and use that value. Eg: 6.28318530718. Every time u use the value pi2 you calculate pi*2 which isnt optimal. C++ also uses snailCase naming conventions. Good video other wise
@kirara_shiroyoru
@kirara_shiroyoru 8 ай бұрын
Can this plugin create chords? I created a similar plugin according to this video and used it in LMMS through Element plugin(since LMMS does not directly support vst3), but it can only play one note per time and cannot play chords, and I'm not sure it is due to the plugin or Element
@giuseppelofaro9404
@giuseppelofaro9404 9 ай бұрын
hello tahnks for the video! I'm having a problem with engine par insert effect, i get an "expression expected error" can you help me? Thank you
@davil1493
@davil1493 9 ай бұрын
man, this batch code for me it doesnt work!! could you help me?
@davil1493
@davil1493 9 ай бұрын
i have a question, how can i do to edit the ui editor? im just editing de knob and, nothing was saving.
@marcklein1390
@marcklein1390 10 ай бұрын
Thank you very much for this excellent tutorial. The "setlocal" error can be a bit misleading. One additional cause for this message is that an validator is running that checks the plug-in for VST 3 conformity. I got 2 errors: 1) [Parameters Flush (no Buffer)] So if data.numSamples==0, then the data.outputs value is a nullptr. 2) [In: Mono: 1 Channels, Out: Mono: 1 Channels] If the output is mono, only data for one channel should be generated. For a successful validation I adjusted the generator like this: if (data.numSamples != 0) { Vst::Sample32* outL = data.outputs[0].channelBuffers32[0]; Vst::Sample32* outR = data.outputs[0].channelBuffers32[1]; for (int32 i = 0; i < data.numSamples; i++) { outL[i] = fOsc1 * sin(fOsc1Phase); outL[i] += fOsc2 * sin(fOsc2Phase); outL[i] *= fVolume; if (data.outputs[0].numChannels > 1) { outR[i] = outL[i]; } fOsc1Phase += fDeltaAngle; fOsc2Phase += fDeltaAngle * 2.f; } }
@novakattila
@novakattila 11 ай бұрын
Why do you add "pIn++" and "pOut++" there? Arent those pointers? Why do you add a number to them, they'll point to the next memory block then? What's the point of that?
@RecordingStudio9
@RecordingStudio9 11 ай бұрын
Thank you for the detailed but quick demo.
@iengdara5747
@iengdara5747 Жыл бұрын
Can you teach us more about how to make VstPlugin? Thank you
@yans0204
@yans0204 Жыл бұрын
So fire … 🔥🔥
@marclingk4638
@marclingk4638 Жыл бұрын
As soon as I add Vst::Sample32 * outL = data.outputs[0].channelBuffers32[0]; to the process, it crashes the validator. What can I do?
@kostyakonstantinoff
@kostyakonstantinoff Жыл бұрын
Hello! Thanks for the instruction. Will my instrument open in UVI Workstation player? Can I sell my instrument or do I need some kind of license from UVI?
@aikelab
@aikelab Жыл бұрын
UVI Workstation can only open UFS soundbanks (.ufs), not individual programs (.uvip) or multi (.uvim) formats. You need a license agreement to create your own UFS soundbanks(.ufs). Falcon users can share/sell .uvip/.uvim libraries to each other with no license.
@marclingk4638
@marclingk4638 Жыл бұрын
You made a lot of corrections to the vstsdk. IS thaere a copy of this new template somewhere i the net?
@appar1tixn
@appar1tixn Жыл бұрын
i stumbled upon this cos i was trying to figure out how to make script display in performance page, however i just wanted to display drum sequencer due to missing ability to scale the interface in falcon edit tab. it seems tho' that UVI doesn't allow editing of their scripts nor does it provide an option to copy it and modify for personal purposes...
@smart_bar
@smart_bar Жыл бұрын
fl studio 12 doesn't find plugin by some reason ( works only in 20 ..
@majorbangz
@majorbangz Жыл бұрын
u deserve 1 million subscribers. please what programing language is this?
@AudioLit-bz7wg
@AudioLit-bz7wg Жыл бұрын
Hello I got an error when I build in Xcode with the buffer definition in 6:43 (seems that doesnt recognise the buffer), I am with the latest version of VST3 and XCode 14.2. Any help will be appreciated. Thanks.
@prodbykaioken
@prodbykaioken Жыл бұрын
c:\なんてこった\Documents
@pianoarennzimimikopi
@pianoarennzimimikopi Жыл бұрын
日本語のVST3チュートリアルなかなかなかったので助かります!
@kickeurrse
@kickeurrse Жыл бұрын
Thanks ! Cool tutorial, really precious ;)
@RedouaneAouameur
@RedouaneAouameur Жыл бұрын
Thanks a lot! i have some libraries that i want to create , is this somthing you can do ? and how much does it cost?
@itsjanak6337
@itsjanak6337 Жыл бұрын
12:09 i copied the folder to VST folder but in my FL its not showing, what should i do?
@marclingk4638
@marclingk4638 Жыл бұрын
Is your FL ready for VST3?
@itsjanak6337
@itsjanak6337 Жыл бұрын
@@marclingk4638 its fixed now lol
@ninjacodertech
@ninjacodertech Жыл бұрын
im getting the error: Command PhaseScriptExecution failed with a nonzero exit code. how do i fix it? btw im using xcode on an arm64 mac
@mystkmusic
@mystkmusic 6 ай бұрын
same here, have you found a fix?
@cedcanegrate
@cedcanegrate Жыл бұрын
Great tutorial! If I would like to draw in the user interface the waveform in real time how can I do?
@ymotechnopopfan
@ymotechnopopfan Жыл бұрын
モバイルではない理由?
@ymotechnopopfan
@ymotechnopopfan Жыл бұрын
モバイルではない理由?
@bogelmanDDD
@bogelmanDDD Жыл бұрын
игру проще сделать чем это...
@bogelmanDDD
@bogelmanDDD Жыл бұрын
And how to make the signal come from the midi keyboard?
@mauriciodeoliveira4500
@mauriciodeoliveira4500 Жыл бұрын
I'd like to much of that sounds.. can you share de ableton project?
@mauriciodeoliveira4500
@mauriciodeoliveira4500 Жыл бұрын
What is the name of that Drum Vst?
@VKHSD
@VKHSD Жыл бұрын
i need help creating a new knob and variable. i tried my best but it keeps opening a UI editor whenever I open my plugin
@dokimusic
@dokimusic Жыл бұрын
tutorial set lighting please😍
@bjazz68
@bjazz68 Жыл бұрын
Amazing, Thank you.
@estevancarlos
@estevancarlos Жыл бұрын
It's great to see you address this topic
@raycksantos3178
@raycksantos3178 Жыл бұрын
Hello friend, would this process work to create a virtual instrument? like a guitar? Have you ever done something like this? thanks in advance for the tutorials, it has helped a lot
@xx4248
@xx4248 11 ай бұрын
If you can't even play a guitar you are never getting fucked
@BIGpony777
@BIGpony777 Жыл бұрын
how would i make it polyphonic?
@druide10
@druide10 Жыл бұрын
This one is very usefull, working on old devices at the moment thank you