PDA

View Full Version : How to use audio VST plugin in the QT?



Reaper
24th March 2015, 16:01
Hello,

I have a question on you. I want to use the VST plugin for audio analysis of records in my QT5 application. Please, is there someone who can help me how i can use it? I tried to find some information on the WEB but unfortunately without result or with old informations which already isn't possible use.

Thank you for answer.

anda_skoa
24th March 2015, 16:20
Whatever this VST plugin is, look for information how to use it in a C++ program.

You will likely need to load it (see QLibrary), then resolve some functions (also QLibrary) and then work with these functions.

Nothing really Qt specific, other than Qt providing a cross-platform API for loading libraries and resolving function pointers.

Cheers,
_