Hi guys, I was trying to use Swh lv2 plugin shaper and found something
strange, was it suppose to explode the sound when the waveshape parameter
hits -1 or below? Also when I looked into the code I found this piece:
float shape = 0.0f;
if (shapep < 1.0f && shapep > -1.0f) {
shape = 1.0f;
} else if (shape < 0) {
shape = -1.0f / shape;
} else {
shape = shapep;
}
I think the first *else if* should be about shapep, but I don't know
exactly how this plugin should work, I changed that part to else if (shapep
< 0) but the explosion in sound remains... Do you guys have any Idea?
Hey Everybody,
I'm happy to announce OpenAV productions: http://openavproductions.com
OpenAV productions is a label under which I intend to release my
linux-audio software projects. The focus of the software is on the workflow
of creating live-electronic music and video.
The release system for OpenAV productions is one based on donations and
time, details are available on http://openavproductions.com/support
Sorcer is a wavetable synth, and is ready for release. Check out the
interface and demo reel on http://openavproductions.com/sorcer
Greetings from the LAC, -Harry
Hi,
I do have a Parallella (www.parallella.org) board with me and can show
it and tell about my experiences with it. So if anybody is interested
please respond or tell me.
Cheers
Jacob
I try to make some photos and twitter here and there about the linux
audio conference 2014.
Hashtag is #lac2014
Follow me or write your own!
https://twitter.com/NilsGey
Have Fun live or with the stream!
Nils
There is one usage case, i can call - reversing recorded piano and some other
instruments. One case, when sequencer and even instrument settings are not
last step before mastering. I'm not expert and at all badly aware of existing
music to mention examples, but i know at least one - in Black Mesa game - some
soundtracks, marked as "mesa remix". I don't see it bad to mention such stuff
there, since it is done completely by fans, no matter with what resources and
software.
Additionally, in gui clips may display inline status, with indicators for
direction and all other clip-individual info, such as speed (probably, that's
all - don't know, what other indicators are good to have there).
For the N-th time I've set aside a day to try and read
some of the ALSA documentation. For the N-th time I've
completely lost my way in a web consisting of
* The complete lack of any documentation that
explains the concepts, the big picture, and
the terminology.
* Completely useless docs, of the form:
function xxx_set_yyy (parm_zzz)
sets the yyy of xxx to zzz.
or similar, in other words something generated
automagically and completely uninformative and
redundant. In particalur if it's impossible to
find out what yyy is supposed to be or do in
the first place.
* Uncomprehensible English.
* When trying to learn something from actual
source code or examples, layer upon layer of
syntactic sugar making it virtually impossible
to understand what's going on.
All this more than ten years after ALSA was
announced. I *do* understand those hardware
manufactureres who just refuse to try and
write an ALSA driver.
In this case my very humble endeavour was just
to find out if or not it would be possible to
create something similar to the alsa_jack plugin
that would actually present itself as a sound
card, so that (badly written) apps would be
prepared to use it.
If someone knows the answer to that question
and can also explain it I'll commend him/her
in my prayers.
--
FA
A world of exhaustive, reliable metadata would be an utopia.
It's also a pipe-dream, founded on self-delusion, nerd hubris
and hysterically inflated market opportunities. (Cory Doctorow)
Hello everyone,
lately I had to fight big XRUN troubles, and thanks to this forum I
finally solved that. This excellent thread saved me:
http://linuxaudio.org/mailarchive/lau/2012/9/5/192706
On my long quest, I tried to see a little bit more what happened with
the IRQs on my system. I searched for a kind of 'top' utility to monitor
the interrupts, but the only apps I found were either deprecated, or
missed some cool features.
So, I ended up writing my own tool to monitor the file /proc/interrupts.
It's available a this address:
https://gitorious.org/elboulangero/itop
As its name indicates, it behaves pretty much like top, but for interrupts.
It's quite a simple thing, that I tried to enhance a bit with some cool
features:
+ refresh period can be specified.
+ two display modes: display interrupts for every CPU, or only a sum
of all CPU.
+ display every interrupt (sorted like /proc/interrupts), or only
active interrupts (sorted by activity).
+ in case the number of interrupts changes during the execution of
itop (due to a rmmod/modprobe), it's handled without any fuss.
+ command-line options are also available as hotkeys for convenience.
+ at last, the program display a summary on exit. The idea is that
this summary could be copied/pasted in emails to help debugging.
If anyone is interested, feel free to try and comment !
Cheers