XTinyTerror.lv2

Programming applications for making music on Linux.

Moderators: MattKingUSA, khz

tramp
Established Member
Posts: 2347
Joined: Mon Jul 01, 2013 8:13 am
Has thanked: 9 times
Been thanked: 466 times

Re: XTinyTerror.lv2

Post by tramp »

@tavasti
damn. The repository was still on the wrong submodule checkout from libxputty. It's fixed now finally.
Please update your checkout.
On the road again.
tramp
Established Member
Posts: 2347
Joined: Mon Jul 01, 2013 8:13 am
Has thanked: 9 times
Been thanked: 466 times

Re: XDarkTerror.lv2

Post by tramp »

funkmuscle wrote: Thu Apr 16, 2020 7:17 pm Is there a Black TinyTerror? The heavier sounding Orange amp?
Here it is:
Image

Like with the TinyTerror, use it with a cabinet simulation or IR for best results, as it is the plain head simulation. It sound very harsh without a following cabinet.

https://github.com/brummer10/XDarkTerror.lv2
On the road again.
User avatar
funkmuscle
Established Member
Posts: 2802
Joined: Mon Jun 02, 2008 2:30 pm
Has thanked: 130 times
Been thanked: 32 times

Re: XDarkTerror.lv2

Post by funkmuscle »

tramp wrote: Sun Apr 19, 2020 1:34 pm
funkmuscle wrote: Thu Apr 16, 2020 7:17 pm Is there a Black TinyTerror? The heavier sounding Orange amp?
Here it is:
Image

Like with the TinyTerror, use it with a cabinet simulation or IR for best results, as it is the plain head simulation. It sound very harsh without a following cabinet.

https://github.com/brummer10/XDarkTerror.lv2
yessir, you did it again!!! Thank bro!
carlv
Established Member
Posts: 278
Joined: Tue Jul 12, 2016 6:10 pm
Has thanked: 32 times
Been thanked: 38 times

Re: XTinyTerror.lv2

Post by carlv »

Howdy

XTinyTerror is working fine, but XDarkTerror starts out ok , then starts to sizzle and eventually fizzles out. Hitting the on/off switch re-sets, but then it happens again within a few seconds.
tramp
Established Member
Posts: 2347
Joined: Mon Jul 01, 2013 8:13 am
Has thanked: 9 times
Been thanked: 466 times

Re: XTinyTerror.lv2

Post by tramp »

carlv wrote: Tue Apr 21, 2020 11:59 am XTinyTerror is working fine, but XDarkTerror starts out ok , then starts to sizzle and eventually fizzles out. Hitting the on/off switch re-sets, but then it happens again within a few seconds.
Which sample rate do you use?
Side note, I expected such a report already, and have a idea at hand how to fix it.
Currently XDarkTerror use a 4x oversampling to avoid artefacts from the clipping. XTinyTerror didn't need oversampling.
That work well with a sample rate of 48kHz.
It will be properly wiser to use a fixed sample-rate internal so that the filters cant stoke up.
On the road again.
carlv
Established Member
Posts: 278
Joined: Tue Jul 12, 2016 6:10 pm
Has thanked: 32 times
Been thanked: 38 times

Re: XTinyTerror.lv2

Post by carlv »

tramp wrote: Tue Apr 21, 2020 12:40 pm That work well with a sample rate of 48kHz.
It will be properly wiser to use a fixed sample-rate internal so that the filters cant stoke up.
More than likely that's the case here. I use 48khz only on rare occasions. It's pretty much overkill for my meagre needs. Thanks for the heads up.
tramp
Established Member
Posts: 2347
Joined: Mon Jul 01, 2013 8:13 am
Has thanked: 9 times
Been thanked: 466 times

Re: XTinyTerror.lv2

Post by tramp »

So I've pushed a fix for XDarkTerror to use a fixed sample rate internal (192kHz). This is enough for avoiding artefacts from the distortion routine, and the filters will be run stable.
@carlv thanks for reporting the issue.
On the road again.
carlv
Established Member
Posts: 278
Joined: Tue Jul 12, 2016 6:10 pm
Has thanked: 32 times
Been thanked: 38 times

Re: XTinyTerror.lv2

Post by carlv »

Buttery success !

As always, thank you much..
tavasti
Established Member
Posts: 2056
Joined: Tue Feb 16, 2016 6:56 am
Location: Kangasala, Finland
Has thanked: 372 times
Been thanked: 209 times
Contact:

Re: XTinyTerror.lv2

Post by tavasti »

tramp wrote: Sat Apr 18, 2020 3:47 am @tavasti
damn. The repository was still on the wrong submodule checkout from libxputty. It's fixed now finally.
Please update your checkout.
Did:

Code: Select all

make clean
git pull
make 
sudo make install
And still, when plugin active and opening it for adjusting sound, and then close -> crash

Linux veteran & Novice musician

Latest track: https://www.youtube.com/watch?v=ycVrgGtrBmM

tramp
Established Member
Posts: 2347
Joined: Mon Jul 01, 2013 8:13 am
Has thanked: 9 times
Been thanked: 466 times

Re: XTinyTerror.lv2

Post by tramp »

tavasti wrote: Wed Apr 22, 2020 9:24 am And still, when plugin active and opening it for adjusting sound, and then close -> crash
mm, that means that the submodule didn't update.
You may do a make clean again and then do a

Code: Select all

git submodule update
if that didn't work, please delete your copy and do a fresh clone.
On the road again.
tavasti
Established Member
Posts: 2056
Joined: Tue Feb 16, 2016 6:56 am
Location: Kangasala, Finland
Has thanked: 372 times
Been thanked: 209 times
Contact:

Re: XTinyTerror.lv2

Post by tavasti »

tramp wrote: Wed Apr 22, 2020 9:55 am
tavasti wrote: Wed Apr 22, 2020 9:24 am And still, when plugin active and opening it for adjusting sound, and then close -> crash
mm, that means that the submodule didn't update.
You may do a make clean again and then do a

Code: Select all

git submodule update
Yeah, that fixed a thing. I am not familiar with submodules, so did not understand that it needs separate update.

Thanks!

Linux veteran & Novice musician

Latest track: https://www.youtube.com/watch?v=ycVrgGtrBmM

tseaver
Established Member
Posts: 404
Joined: Mon Mar 13, 2017 6:07 am
Has thanked: 11 times
Been thanked: 100 times

Re: XTinyTerror.lv2

Post by tseaver »

@tavasti said:

I am not familiar with submodules, so did not understand that it needs separate update.
I'm a professional software developer, and have been using git for more than a decade now, and I *still* screw up submodules routinely (I never use them in my own projects, so my mental model for them is b0rken).
Ubuntu, Mixbus32C; acoustic blues / country / jazz
tramp
Established Member
Posts: 2347
Joined: Mon Jul 01, 2013 8:13 am
Has thanked: 9 times
Been thanked: 466 times

Re: XTinyTerror.lv2

Post by tramp »

I've developed libxputty to serve as GUI toolkit for my LV2 plugins. Using it as submodule allow me to maintain the source base of the toolkit in a central place instead as part of any single plugin. This reduce boilerplate code and maintenance work.
This is relative new, TinyTerror is the first plug which use the lv2_plugin base integrated in libxputty.
Any report helps to make this easier to handle. I may include a routine in the makefile which check if the submodule needs a update.
On the road again.
tramp
Established Member
Posts: 2347
Joined: Mon Jul 01, 2013 8:13 am
Has thanked: 9 times
Been thanked: 466 times

Re: XTinyTerror.lv2

Post by tramp »

tramp wrote: Thu Apr 23, 2020 5:09 am I may include a routine in the makefile which check if the submodule needs a update.
. . . and done, the makefile will keep track now for needed submodule updates.
On the road again.
tavasti
Established Member
Posts: 2056
Joined: Tue Feb 16, 2016 6:56 am
Location: Kangasala, Finland
Has thanked: 372 times
Been thanked: 209 times
Contact:

Re: XTinyTerror.lv2

Post by tavasti »

tavasti wrote: Fri Apr 17, 2020 4:11 pm From your amps, what is most 'metal' amp? Modern metal amp is what I would need.
@tramp, do you have cure for this itch?

Linux veteran & Novice musician

Latest track: https://www.youtube.com/watch?v=ycVrgGtrBmM

Post Reply