Search found 987 matches

by sadko4u
Fri Dec 23, 2016 12:48 pm
Forum: Developer's Section
Topic: create knobs with cairo
Replies: 20
Views: 11376

Re: create knobs with cairo

tramp wrote:Well, that's what I do in my plugs as well. But, for example, you cant draw direct with cairo in web based UI's.
Hmmm. If you use this generator for web, it's reasonable. Also if you use canvas extension available in HTML5, you may draw 2d-graphics well without using pre-rendered sprites.
by sadko4u
Fri Dec 23, 2016 5:31 am
Forum: Developer's Section
Topic: create knobs with cairo
Replies: 20
Views: 11376

Re: create knobs with cairo

And why not to draw knob directly with cairo in the UI?
For example, in LSP plugins there is no built-in graphic resources (exception is KVRDC entry where the KVRDC logo was built-in), all is drawn dynamically.
by sadko4u
Thu Dec 22, 2016 7:26 pm
Forum: Computer Related Hardware
Topic: lexicon alpha usb perfect compatibility with gnu/linux
Replies: 4
Views: 4591

Re: lexicon alpha usb perfect compatibility with gnu/linux

I think the best would be to create special subforum called 'Success stories' where people explain how successful the device that they bought makes friendship with linux. That could allow to easy search devices that are compatible with Linux.
by sadko4u
Thu Dec 22, 2016 7:16 am
Forum: Linux Music News
Topic: [ANN] LSP Plugins: the first anniversary 1.0.18 release is out!
Replies: 41
Views: 14825

Re: [ANN] LSP Plugins: the first anniversary 1.0.18 release is out!

Also I decided that ask $600 for Phasendetektor currently is too much, so I lowered the price to $300. And, good news, there are only $200 left for the SCR release that will contain source code of that plugin.
by sadko4u
Tue Dec 20, 2016 9:45 pm
Forum: Linux Music News
Topic: [ANN] LSP Plugins: the first anniversary 1.0.18 release is out!
Replies: 41
Views: 14825

[ANN] LSP Plugins: the first anniversary 1.0.18 release is out!

LSP Plugins celebrate one year since first 1.0.0 release! This day, new release of version 1.0.18 has been published. Implemented Begrenzer Mono, Stereo, Sidechain Mono, Sidechain Stereo (Limiter) plugin series. Added KVRDC16 entry - Dynamikprozessor Mono, Stereo, LeftRight, MidSide plugin series. A...
by sadko4u
Tue Dec 20, 2016 9:55 am
Forum: Developer's Section
Topic: KVR Developer Challenge 2016
Replies: 33
Views: 19824

Re: KVR Developer Challenge 2016

tramp wrote: Really ?
Maybe it's related to the specs of the challenge.
Rules say: any platform, any software. I think if I could provide Win/MacOS version, the result could be a bit another. Indeed, it would be nice to get voting stats to perform retrospective while preparing for the next DC.
by sadko4u
Tue Dec 20, 2016 6:52 am
Forum: Developer's Section
Topic: KVR Developer Challenge 2016
Replies: 33
Views: 19824

Re: KVR Developer Challenge 2016

I am diappointed that there was only one plugin that was designed for Linux and one plugin that can work under Linux but requires JRE and some other specific stuff.
by sadko4u
Sun Dec 18, 2016 12:51 pm
Forum: Computer Related Hardware
Topic: Buying a guitar - how to record it?
Replies: 29
Views: 14383

Re: Buying a guitar - how to record it?

I wouldn't recommend to use built-in sound interfaces. Better use external interfaces with instrument input.
by sadko4u
Sat Dec 17, 2016 8:54 pm
Forum: Computer Related Hardware
Topic: Buying a guitar - how to record it?
Replies: 29
Views: 14383

Re: Buying a guitar - how to record it?

For good quality, you should by audio interface with 'Instrument' input like Forusrite Sapphire/Scarlett. I also specially bought Radial J48 + X-Amp to record/reamp guitar, so I use them to record DI signal. Currently, there is alternative available from good russian hardware developers, AMT: http:/...
by sadko4u
Thu Dec 15, 2016 10:31 am
Forum: Linux Music News
Topic: [ANN] LSP Plugins have joined KVRDC16!!!
Replies: 7
Views: 4860

Re: [ANN] LSP Plugins have joined KVRDC16!!!

The KVRDC16 voting will be ended soon. If you want to support LSP Plugins by your vote and haven't done this already, you should hurry up. According to this rule: KVR Members will vote for their favourite entries between December 1st-18th, 2016. Depending on the amount of submissions, the voting per...
by sadko4u
Mon Dec 12, 2016 7:16 am
Forum: Recorders & Sequencers
Topic: internal jack routed midi not quantised
Replies: 4
Views: 3430

Re: internal jack routed midi not quantised

mendo wrote:
sadko4u wrote:That means only one thing: Hydrogen realizes invalid realtime MIDI protocol.
This means a bug?
I suppose, yes. First of all, Hydrogen developers should watch this issue.
by sadko4u
Sun Dec 11, 2016 10:19 pm
Forum: Recorders & Sequencers
Topic: internal jack routed midi not quantised
Replies: 4
Views: 3430

Re: internal jack routed midi not quantised

That means only one thing: Hydrogen realizes invalid realtime MIDI protocol.
by sadko4u
Wed Dec 07, 2016 3:36 pm
Forum: Plugins, Effects and Instruments
Topic: new Saturator (LV2) plugin
Replies: 29
Views: 13480

Re: new Saturator (LV2) plugin

Cool pictures, who's the author?
by sadko4u
Wed Dec 07, 2016 3:33 pm
Forum: Developer's Section
Topic: [SOLVED] C++: which type of cast is best for audio callbacks?
Replies: 28
Views: 12647

Re: [SOLVED] C++: which type of cast is best for audio callbacks?

You can easily write code without templates, it will work for your case only. Templates are needed if you want to use different types but have the same algorithms. I already do so. And I doubt that in nearest 10 years audio samples will be present in other form rather than in float or double format...
by sadko4u
Tue Dec 06, 2016 9:56 pm
Forum: Developer's Section
Topic: [SOLVED] C++: which type of cast is best for audio callbacks?
Replies: 28
Views: 12647

Re: [SOLVED] C++: which type of cast is best for audio callbacks?

Then I would change the library. Nuff said. I can call this case only 'C++ of the entire cerebral system'. Although it is better than std::uint8_t*, void* highlights how C API is always type unsafe and hacky. I try to avoid C APIs at all costs. C is designed as low-level language. It's design is do...