Search found 56 matches

by marbangens
Thu Mar 03, 2022 11:45 am
Forum: Your Studio & Gear
Topic: What do the letters of the AC contactor mean?
Replies: 0
Views: 2620

Re: What do the letters of the AC contactor mean?

Just don't play with high voltage! Think CJ is how they name the product. C can stand for 250 A rating, that is a lot! I'm certified CNC operator but not an electrician. Its just a hobby for. Maybe this help. https://literature.rockwellautomation.com/idc/groups/literature/documents/sg/140g-sg001_-en...
by marbangens
Thu Feb 24, 2022 12:57 pm
Forum: Developer's Section
Topic: Book about programming DSP algorithms.
Replies: 19
Views: 31257

Re: Book about programming DSP algorithms.

https://www.analog.com/media/en/technic ... ok_ch1.pdf
It ends on z-transform at dsp_book_ch33.pdf

Examples use BASIC... and the author refer to some figure all the time, that can get a bit annoying to follow, its not bad material.
by marbangens
Mon Dec 27, 2021 8:38 pm
Forum: Developer's Section
Topic: First project - KDE Widget for Jack Transport
Replies: 7
Views: 15890

Re: First project - KDE Widget for Jack Transport

If you like to detect jack in the background with c++ you probably need to create a thread with the lowest priority and just check for something simple and fast and then sleep kind of loop. Its a bit advanced for fist project, but you learn the most when you just go into the fun stuff from the start...
by marbangens
Thu Dec 23, 2021 11:10 am
Forum: Developer's Section
Topic: Pipewire regression?
Replies: 1
Views: 8176

Re: Pipewire regression?

Seeing that behavior on one system really is enough for it to be a bug. Those thins can hide under the hood. You can just see what a backtrack would say. See if its specific to a library function call or a function in pipwire or somewhere else. https://man7.org/linux/man-pages/man3/backtrace.3.html ...
by marbangens
Fri Oct 22, 2021 4:00 pm
Forum: Developer's Section
Topic: Famitracker-qt (libre NES chiptune program)
Replies: 4
Views: 14206

Re: Famitracker-qt (libre NES chiptune program)

That will be dirty with makefiles I think, Im not sure it has everything, like jack transport. You can make a simple host and easy host plugins with almost no code but not sure its right for this project. JACK, ALSA, PulseAudio, ALSA MIDI and JACK MIDI will be enough with just those API libs I think...
by marbangens
Thu Oct 21, 2021 8:56 pm
Forum: Developer's Section
Topic: Famitracker-qt (libre NES chiptune program)
Replies: 4
Views: 14206

Re: Famitracker-qt (libre NES chiptune program)

After looking at this, I think its better to rewrite like 50% of it. The Qt and the threads mostly and add sound API's, but some of it can be used, that's nice :) I have ported the configuration window to Qt but this implementation, well it felt dirty and not right, the main window. I want to try re...
by marbangens
Sat Oct 16, 2021 5:52 pm
Forum: Developer's Section
Topic: Famitracker-qt (libre NES chiptune program)
Replies: 4
Views: 14206

Re: Famitracker-qt (libre NES chiptune program)

I like trackers :) If you want I can help, we can figure it out :) https://github.com/noisecode3/famitracker-qt
PM me if you want, PR my repo and I PR you'res :) Its missing jack support I think, I would start to fix that.
Jack Transport Sync is nice :)
by marbangens
Sat Jul 10, 2021 12:37 pm
Forum: Plugins, Effects and Instruments
Topic: Carla Error and close DAW
Replies: 19
Views: 9203

Re: Carla Error and close DAW

try https://github.com/robbert-vdh/yabridge
I think and hope carla will detect the plugins use by carla bridge with yabridge
Depending on what wine version and what kernel and configurations windows vst's work fine for me.
by marbangens
Fri Jul 02, 2021 11:08 am
Forum: Developer's Section
Topic: Update libaam-jack XT2-config to QT5 or CLI?
Replies: 17
Views: 23318

Re: Update libaam-jack XT2-config to QT5 or CLI?

I will have to check if a license for the Linux version can still be purchased.. http://energy-xt.com/shop.html I have native energyXT rolling too... lots of 32 bit VSTs also work, it's more for shits and giggles and because I can I would recommend to try the Windows version using WINE, it's pretty...
by marbangens
Thu Jul 01, 2021 11:35 pm
Forum: Developer's Section
Topic: Update libaam-jack XT2-config to QT5 or CLI?
Replies: 17
Views: 23318

Re: Update libaam-jack XT2-config to QT5 or CLI?

Haha! I mean 5 people who still care about energyXT... not 5 people who value your generous time and effort.. :D lol thought that was strange :lol: I bet there isn't even 1 person except you how tried this :lol: and me in a vm.. look at my guide now, and xt2-trans2midi works too :D edit: well there...
by marbangens
Thu Jul 01, 2021 4:30 pm
Forum: Developer's Section
Topic: Update libaam-jack XT2-config to QT5 or CLI?
Replies: 17
Views: 23318

Re: Update libaam-jack XT2-config to QT5 or CLI?

libaam only reads the qt configuration from XT2-config QSettings settings("energyXT2", "XT Software AS"); they don't link, you can't directly link that. Compile trans2midi (probably not worth the effort) for 64bit.. It does say this in the README but I just thought I'd mention it...
by marbangens
Thu Jul 01, 2021 4:05 pm
Forum: Developer's Section
Topic: Update libaam-jack XT2-config to QT5 or CLI?
Replies: 17
Views: 23318

Re: Update libaam-jack XT2-config to QT5 or CLI?

Yes this is like before, when it was qt4? I mention you need some multilib packages there in the readme but I agree it not a very good guide there. It's a 32-bit application and you will need 32-bit jack and 32-bit libc and qt5 32-bit to link to in the libaam all the way to the kernel to run this pr...
by marbangens
Thu Jul 01, 2021 4:01 am
Forum: Developer's Section
Topic: Update libaam-jack XT2-config to QT5 or CLI?
Replies: 17
Views: 23318

Re: Update libaam-jack XT2-config to QT5 or CLI?

The warning is about a change in c++ syntax, It wants to check jack_port_flags() flipped returns against JackPortIsPhysical (0x4) with & (Bitwise AND) This should be ~port_flags or (!port_flags) when used with & (Bitwise AND) and I changed it to (!port_flags) If someone knows this is wrong t...
by marbangens
Wed Jun 30, 2021 2:33 am
Forum: Developer's Section
Topic: Update libaam-jack XT2-config to QT5 or CLI?
Replies: 17
Views: 23318

Re: Update libaam-jack XT2-config to QT5 or CLI?

Oh it says Outpus lol. I will change that. And fix that warning. No problem I have time for fun and learning. I have like a summer school. And also need to prepare for autumn real hard school. And next year I hope I get into Swedish high school. I did go to music gymnasium but music didn't really wo...
by marbangens
Mon Jun 28, 2021 8:53 pm
Forum: Developer's Section
Topic: Update libaam-jack XT2-config to QT5 or CLI?
Replies: 17
Views: 23318

Re: Update libaam-jack XT2-config to QT5 or CLI?

ahh love his work on yabridge, when I think about it that will probably turn this daw (the plugin processing) into multi thread lol. I got it running on qt5, it was nothing special I just had to select matching class object when I created new project from trample :wink: Do you want something "c...