laa

[LAA] FSTHost 1.5

laa - 25 min 29 sec ago
From: Pawel <xj@...>
Subject: [LAA] FSTHost 1.5
Date: Apr 9, 8:33 am 2013

Hi,

I want to announce FSTHost 1.5.0 version. FSTHost is fst sucessor - app for M$ Win VST plugins.

- Support Wine-LPA
- Support for window resize
- Handling case when Jack changed our client_name
- Support for "self MIDI Program Change message handling" (-P option)
- Do not process MIDI data if ports are disconnected
- Editor window is centered
- Buffering SysEx input messages and process them in non-RT thread
- MIDI channel filter redirect messages to first channel
- MIDI Filters - really simple window for build own filter chain
- JackTransport improvements (tested with T-C-M VST and Hydrogen as master)
- Support for 64 bit VST plugs

NOTE:
Starting from now make will build two separate app:
- fsthost32 - for 32bit plugins
- fsthost64 - for 64bit plugins (OFC only on amd64 OS)
"make install" should create also symlink fsthost -> fsthost32

Many thanks Jordan/Ninez for support/bug reports/ideas/etc.
Also thanks Wine-Devel guys for help with 64bit version,
and all people who report bugs.

Best Regards
Pawel / Xj


_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] Python Non-Session-Manager Client Module (version 0.1)

laa - 25 min 29 sec ago
From: Nils Gey <ich@...>
Subject: [LAA] Python Non-Session-Manager Client Module (version 0.1)
Date: Apr 4, 8:57 am 2013

Dear Developers,

I've written a convenience interface to implement Non Session Management as fast and easy as possible in Python 3 applications. It is no magic programming at all, but it makes things just that tiny bit easier that is required to actually implement something, and not only plan it.

The real work is to follow the rules of a managed system (see http://non.tuxfamily.org/nsm/API.html ). So implementing the technical side should be a no-brainer to let you focus on the actual task.

pynsmclient is open source under the GPL3 or later and can be found on my github page so you can start using it right away.

https://github.com/nilsgey/pynsmclient

I also have written a short article in my blog about that topic http://nilsgey.de/?id=24

Greetings,
Nils

_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] rtirq update - 2013 edition (was: rtirq as systemd service?)

laa - 25 min 29 sec ago
From: Rui Nuno Capela <rncbc@...>
Subject: [LAA] rtirq update - 2013 edition (was: rtirq as systemd service?)
Date: Apr 3, 10:03 am 2013

(apologies for the x post again, now with url typo corrected)

> On 03/30/2013 11:50 AM, Simon Lewis wrote:
>
> Since fc17 upwards uses systemd and not sysvinit, should rtirq be made a
> systemd service?
>

rtirq has been updated for both old sysvinit and the new systemd support.

upstream packages available:

http://www.rncbc.org/archive/#rtirq

http://www.rncbc.org/archive/rtirq-20130402.tar.gz
http://www.rncbc.org/archive/rtirq-20130402-31.src.rpm
http://www.rncbc.org/archive/rtirq-20130402-31.noarch.rpm


cheers && thanks
--
rncbc aka Rui Nuno Capela
rncbc@rncbc.org
_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] njconnect 1.2

laa - 25 min 29 sec ago
From: Pawel <xj@...>
Subject: [LAA] njconnect 1.2
Date: Apr 3, 10:02 am 2013

Hi,

njconnect v.1.2 coming out , I want the world to know, got to let it show , it coming out ;-)

Well .. njconnect is ncurses jack connection manager, you can get it from here:
https://sourceforge.net/projects/njconnect/

.. but it is also available in Arch AUR, and for sure in Slitaz distro where package is maintained personally by me ;-)

Changes since 1.0:
- Show DSP load and is jack in RT mode
- Fix for quit , when jack is not running (thanks for report G.raud Meyer)
- small GUI optimizations
- Make note in README about jslist.h (thanks for report from Clever Pereira)
- Expand port name to 128 (onace again thanks to Peter Nelson for report)
- Fix 4 getting connections (thanks for report and sugession from Peter Nelson)
- fix for clear line in help/message line (thanks me for report ;-)

... OFC thanks to Nile Rodgers for great music that accompanied me while I wrote this ;-)

Best Regards
Pawel



_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] [ALPHA] ladspa.m.*

laa - 25 min 29 sec ago
From: Florian Paul Schmidt <mista.tapas@...>
Subject: [LAA] [ALPHA] ladspa.m.*
Date: Apr 3, 10:02 am 2013


Hi,

after a somewhat productive weekend I'm happy to announce some alpha
quality software (i.e. bug ridden, not feature complete) for your
consideration and feedback :)

But: release early, release often XD

I went a little overboard with modularization and separation of
concerns, so in the end it became four packages (with possibly one more
in the future - a LV2 plugin to load the synths/instruments).
Documentation is also very much lacking, but each package contains at
lease a single example file to illustrate the usage.



* ladspa.m - https://github.com/fps/ladspa.m

ladspa.m is a header only c++ library to build and run general synthesis
graphs made up out of LADSPA plugins. The interface is kept deliberately
kept simple and unsafe, as it is expected that one uses higher level
tools to build these synthesis graphs (e.g. using a library on top op
ladspa.m.swig or ladspa.m.proto).




* ladspa.m.swig - https://github.com/fps/ladspa.m.swig

ladspa.m.swig are SWIG generated python bindings for ladspa.m. This
allows building and running general synthesis graphs made up of LADSPA
plugins from within python. This requires ladspa.m. NOTE: I just saw
that the swig interface definition lacks the ability to connect outside
buffers onto plugin ports. This will be fixed in the next few days..




* ladspa.m.proto - https://github.com/fps/ladspa.m.proto

ladspa.m.proto contains google protobuf definitions for general
synthesis graphs made up of LADSPA plugins. It also contains a
definition for an instrument file format. This library does not depend
on either of the two above. It becomes useful with the last package
(ladspa.m.jack) and possibly in the future with an LV2 plugin to load
and run these (to be announced when done). The python bindings generated
for ladspa.m.proto can be used to generate synth and instrument files
that can be loaded by ladspa.m.jack. The instrument file definition
allows for polyphony while at the same time putting no constraints on
the inner structure of the instrument (each voice is made up out of
plugins, they can be identical or not between all voices)..

An example is included which defines a simple sawtooth instrument with
exponential envelopes and with 5 identical voices except for a different
delay setting on each voice.

https://github.com/fps/ladspa.m.proto/blob/master/example_instrument.py

Pipe its output into a file called e.g. instrument.pb. This you can then
load into ladspa.m.jack.instrument.

Here's a little example of the generated instrument file loaded into
ladspa.m.jack.instrument and playing a little 120bpm loop (from ardour3)
with it:

https://soundcloud.com/fps-2/t-m

This also highlights the need for a higher level interface on top of it
to ease the process..




* ladspa.m.jack - https://github.com/fps/ladspa.m.jack

ladspa.m.jack is a library which allows loading ladspa.m.proto synth and
instrument definition files into jack hosts that are provided as example
clients.

ladspa.m.jack.synth allows loading a synth definition file and run it in
the jack graph.

ladspa.m.jack.instrument allows loading an instrument definition file
and provides a midi in port which allows playing the synth.




But like I said this is all ALPHA software and I just announce it
because someone else might have fun with it. Please report all issues
that you find either per email to me, on LAD or LAU or on the issue
trackers of the github projects..

Have fun,
Flo

--
Florian Paul Schmidt
http://fps.io

_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] Rivendell v2.5.0

laa - Thu, 2013-05-16 08:50
From: Fred Gleason <fredg@...>
Subject: [LAA] Rivendell v2.5.0
Date: Apr 2, 12:14 am 2013

On behalf of the entire Rivendell development team, I'm pleased to announce the availability of Rivendell v2.5.0. Rivendell is a full-featured radio automation system targeted for use in professional broadcast environments. It is available under the GNU General Public License.

>From the NEWS file:
*** snip snip ***
If upgrading from a v1.x version of Rivendell, be sure to read the
'UPGRADING' file before proceeding for important information.

Changes:
LiveWire Virtual GPIO Driver. Added a fully native virtual GPIO
LiveWire driver for situations where the proprietary software
LiveWire/ALSA driver is not available (e.g. when using an ASI6x85
adapter). See 'SWITCHERS.txt' for details.

Console Channel Control. Added the capability to automate
console channel ON/OFF control bidirectionally from RDAirPlay.
(Configured in RDAdmin->ManageHosts->RDAirPlay).

Multiple bug fixes. See the ChangeLog for details.

Database Update:
This version of Rivendell uses database schema version 220, and will
automatically upgrade any earlier versions. To see the current schema
version prior to upgrade, see RDAdmin->SystemInfo.

As always, be sure to run RDAdmin immediately after upgrading to allow
any necessary changes to the database schema to be applied.
*** snip snip ***

Further information, screenshots and download links are available at:

http://www.rivendellaudio.org/

Cheers!


|-------------------------------------------------------------------------|
| Frederick F. Gleason, Jr. | Chief Developer |
| | Paravel Systems |
|-------------------------------------------------------------------------|
| Obstacles are what you see when you take your eyes off the road. |
| -- Anonymous |
|-------------------------------------------------------------------------|

_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] QjackCtl 0.3.10 - The singing swan rehearsals...

laa - Thu, 2013-05-16 08:50
From: Rui Nuno Capela <rncbc@...>
Subject: [LAA] QjackCtl 0.3.10 - The singing swan rehearsals...
Date: Apr 2, 12:14 am 2013

Who would tell or whisper such a thing?

Is this an april fool's announcement?

nope.

QjackCtl 0.3.10 is out!

Website:

http://qjackctl.sourceforge.net

Project page:

http://sourceforge.net/projects/qjackctl

Downloads:

- source tarball:
http://downloads.sourceforge.net/qjackctl/qjackctl-0.3.10.tar.gz

- source package (openSUSE 12.3):

http://downloads.sourceforge.net/qjackctl/qjackctl-0.3.10-2.rncbc.suse123.src.rpm

- binary packages (openSUSE 12.3):

http://downloads.sourceforge.net/qjackctl/qjackctl-0.3.10-2.rncbc.suse123.i586.rpm

http://downloads.sourceforge.net/qjackctl/qjackctl-0.3.10-2.rncbc.suse123.x86_64.rpm

Weblog (upstream support):
http://www.rncbc.org

License:

QjackCtl is free, open-source software, distributed under the terms
of the GNU General Public License (GPL) version 2 or later.

Change-log:

- Session infra-client management finally being added.
- Preparations for Qt5 migration.
- Transport tempo (BPM) precision display fixed to 4 digits.
- Color-candy (dang old ANSI terminal?) escape sequences are now
silently stripped from jackdbus messages captured log (one-liner from
original patch by Brendan Jones, thanks).
- List ALSA device card id. string instead of device number, while on
setup dialog.
- Japanese (ja) translation added (by Takashi Sakamoto).

See also:
http://www.rncbc.org/drupal/node/628

Enjoy && Have fun!
--
rncbc aka Rui Nuno Capela
rncbc@rncbc.org
_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] MusE 2.1.2 released

laa - Thu, 2013-05-16 08:50
From: Robert Jonsson <spamatica@...>
Subject: [LAA] MusE 2.1.2 released
Date: Mar 30, 9:37 pm 2013

--047d7b5d8d5f3da6c704d911e595
Content-Type: text/plain; charset=ISO-8859-1

Hi all,

Time for another update for general consumption, minor changes done but
quite a few of them!

Nearly arbitrary list of changes from the changelog:
- Allow reading old drummaps for new style drumtracks
- Added metronome icon in main window
- Fixed moving events with keyboard in Drum editor
- Added theme support, Light, Dark and Ardour so far
- Added missing line draw shortcut (F) to drum editor.
- Added new french translation from Yann Collette
- Added: Pan and Zoom tools to editors. P + Z shortcuts. Added a Settings
item for alternate behaviour.
- Fixed: Pianoroll and Drum Editor 'Snap' boxes not remembering 1st or 3rd
columns.
- Fixed: Arranger 'Snap' was not stored or remembered.
- Fixed: Accelerator buttons shift/ctrl/alt for moving/copying/cloning /
restricting movement.
- Fixed: Shift key restricting movement: Ignore snap setting now.
- Fixed: Resize shift key ignore snap setting now.
- Fixed: Draw new item shift key ignore snap setting now.
- Fixed: Shift key was not snapping to vertical.
- Fixed: ALL 'Speaker' related playing of notes. Works with new notes,
moving notes, piano press etc.
- Fixed: ALL 'Speaker' related notes now send true note-offs instead of
zero-velocity note-ons.
- Fixed: Drum 'Cursor' mode was playing double notes.
- Fixed: New Drums 'Cursor' mode and instrument up/down movement was
broken, jumping all over the place.
- Added prebuilt PDF of manual (work in progress)
- Improved: Shortcut listings: Added Wave/Score categories. Re-categorized
several keys. Updated README.shortcuts
- Improved: Right-click menus expanded. Now also shows 'Tools' menu when
clicked on parts.
- Added choice of new metronome with different sounds and adjustable volume.
- Fixed gain adjustment with 'Other' choice in wave editor, it was reversed

For more information and additional changes see the full changelog:
http://lmuse.svn.sourceforge.net/viewvc/lmuse/trunk/muse2/ChangeLog?revision=1729

Find the download at:
https://sourceforge.net/projects/lmuse/files/

MusE on!
The MusE Team

--047d7b5d8d5f3da6c704d911e595
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

Hi all,
v class=3D"gmail_quote">
Time for anoth=
er update for general consumption, minor changes done but quite a few of th=
em!

Nearly arbitrary list of changes from the changelog:iv>

- Allow reading old drummaps for new style drumtracks=A0
>- Added metronome icon in main window=A0- Fixed moving events w=
ith keyboard in Drum editor=A0- Added theme support, Light, Dark=
and Ardour so far


- Added missing line draw shortcut (F) to drum editor.- Add=
ed new french translation from Yann Collette=A0- Added: Pan and =
Zoom tools to editors. P + Z shortcuts. Added a Settings item for alternate=
behaviour.


- Fixed: Pianoroll and Drum Editor 'Snap' boxes not rememberin=
g 1st or 3rd columns.- Fixed: Arranger 'Snap' was not st=
ored or remembered.- Fixed: Accelerator buttons shift/ctrl/alt f=
or moving/copying/cloning / restricting movement.


- Fixed: Shift key restricting movement: Ignore snap setting now.>- Fixed: Resize shift key ignore snap setting now.- Fixed:=
Draw new item shift key ignore snap setting now.- Fixed: Shift =
key was not snapping to ve [message continues]

read more

Categories: laa

[LAA] Beast 0.8.0 Release

laa - Mon, 2013-05-13 15:40
From: Tim Janik <timj@...>
Subject: [LAA] Beast 0.8.0 Release
Date: Mar 25, 9:56 am 2013

CALL FOR MUSICIANS
==================
If you are a musician and interested in Free Software, the Beast project
needs your input. You can contribute with testing, feature feedback,
demos and tutorials. Please see our website: http://beast.testbit.eu/

BEAST RELEASE
=============
BEAST version 0.8.0 is available for download at:
http://beast.testbit.eu/beast-ftp/v0.8/

This release opens a new development branch which focuses on improving
interoperability and feature integration. A new dependency on Rapicorn
is introduced, which can be found here:
http://dist.testbit.eu/rapicorn/

This is a development version of BEAST/BSE, the Better Audio System
and the Better Sound Engine. BEAST is a powerful music composition
and modular synthesis application released as Free Software under the
GNU LGPL that runs under Unix. The "Better" portion of the name
refers to the complexity and many iterations involved in implementing
such a "BEAST" (pun intended). The About page covers more details:
http://beast.testbit.eu/about

Contact information about mailing lists, IRC, Bugzilla and more is at:
http://beast.testbit.eu/Beast_Contact

GUI skins, example sounds and instrumets for BEAST/BSE as well as
screenshots can be found at:
http://beast.testbit.eu/Beast_Sound_Gallery
http://beast.testbit.eu/Beast_Screenshots

TRANSLATORS: Please help us to improve the BEAST translation, just
download the tarball, edit po/.po and email it to us or
submit translations directly via transifex:
https://www.transifex.net/projects/p/gnome-org-beast/resource/messagespot/

Overview of Changes in BEAST/BSE 0.8.0: (2013-03-25)

* Added use of the Rapicorn library, require version 13.0.0.
* Adapted IDL types to other projects.
* Adapted code to make use of C++11 and STL threads.
* Various performance improvements through EventFD, Spinlocks, lambdas, etc.
* Major documentation improvements, see: http://dev.testbit.eu/beast/latest/
* Fixed printf format-security issues (#665097). [Alessio Treglia]
* Lots of code cleanups, licensing cleanups.

--
Yours sincerely,
Tim Janik

---
http://timj.testbit.eu/ - Free software Author

_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] jackmixdesk-0.3-r3

laa - Mon, 2013-05-13 15:40
From: Ulrich-Lorenz Schlueter <audiomobster@...>
Subject: [LAA] jackmixdesk-0.3-r3
Date: Mar 24, 10:56 am 2013

Hello list,

after a long long time I removed some ugly bugs from JackMixDesk.
Latest source package is available from:

http://sourceforge.net/projects/jackmixdesk/files/jackmixdesk/jackmixdesk-0.3-r3.tar.gz/download

Regards,

Uli
_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] Qtractor 0.5.8 - The India Romeo is out, singing a serenade...

laa - Sat, 2013-05-11 07:30
From: Rui Nuno Capela <rncbc@...>
Subject: [LAA] Qtractor 0.5.8 - The India Romeo is out, singing a serenade...
Date: Mar 20, 11:34 am 2013

Spring is nigh.

Qtractor 0.5.8 (india romeo) is out, singing a serenade...

Nothing but the change-log (see below:))

Enjoy && lots of fun.

Website:

http://qtractor.sourceforge.net

Project page:

http://sourceforge.net/projects/qtractor

Downloads:

- source tarball:
http://downloads.sourceforge.net/qtractor/qtractor-0.5.8.tar.gz

- source package (openSUSE 12.3):

http://downloads.sourceforge.net/qtractor/qtractor-0.5.8-5.rncbc.suse123.src.rpm

- binary packages (openSUSE 12.3):

http://downloads.sourceforge.net/qtractor/qtractor-0.5.8-5.rncbc.suse123.i586.rpm

http://downloads.sourceforge.net/qtractor/qtractor-0.5.8-5.rncbc.suse123.x86_64.rpm

- quick start guide & user manual:
http://downloads.sourceforge.net/qtractor/qtractor-0.5.x-user-manual.pdf

Weblog (upstream support):

http://www.rncbc.org

License:

Qtractor is free, open-source software, distributed under the terms
of the GNU General Public License (GPL) version 2 or later.

Change-log:

- Dropped old audio ramping spin-locks as its glitching reduction
weren't that effective anymore.
- Audio bus and track gain may now be set for amplification again, from
+0dB up to +6dB, while using the Mixer strip sliders/faders (an old
function found missing ever since pre-TYOQA).
- Basic LV2 X11 UI support has been added through libSUIL but only
really effective if plugins doesn't support the LV2 External UI
extension in addition which takes precedence on any case.
- Improved precision tolerance on the Tempo Map / Markers dialog.
- Reinstated and fixed (old) warning and impending re-conversion on
loading session files which the original sample-rate differs from
current audio device engine (aka. JACK).
- LV2 Plugin State/Preset name discrimination fix (after a ticket by
Jiri Prochaszka aka. Anchakor, thanks:)
- Linked/ref-counted audio clips must not overlap and now must have a
buffer-size worth of a gap between each other.
- Something fishy has been detected in the SSE (not so) optimized code
from SoundTouch's-inspired WSOLA time-stretching.
- Splitting clips apart is now easier than ever: a brand new entry
enters the main menu scene: Edit/Split (Ctrl+Y) splits up clips
according to current range/rectangular selection.
- Audio clip offsets are now properly corrected when time-stretching is
applied via Shift/Ctrl+dragging any of the clip edges.
- One semi-colon typo was hiding proper descrimination of peak files
used to draw distinct waveforms of time-stretched audio clips.
- Track automation curves are now also affected by Edit/Insert/Range
commands.
- Finally, some visual feedback is shown while audio track export is
running, in he form of a main status progress bar.
- New user option: save backup versions of existing session files.
- Default session directory now set to regular file's path on load.
- A convenient minimum slack duration has been fixed for MIDI SysEx
messages.
- LV2 Time/position information is now asynchronously fed back into
their parameter (control input) ports when designated.
- LV2 State is now properly restored for plugins inserted on buses,
probably solving the Calf Fluidsynth SoundFont information missing on
buses ticket, reported by Albert Graef, thanks.
- Fixed an immediate null pointer crash on creating a parentless new
group while on the files organizer widget.
- Preparations for future Qt5 migration.


Cheers!
--
rncbc aka Rui Nuno Capela
rncbc@rncbc.org
_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] Laborejo Release 0.6 - Beta phase has started

laa - Sat, 2013-05-11 07:30
From: Nils Gey <ich@...>
Subject: [LAA] Laborejo Release 0.6 - Beta phase has started
Date: Mar 16, 10:31 am 2013

Laborejo, Esperanto for "Workshop", is used to craft music through notation. It is a Lilypond GUI front-end, a MIDI creator and finally a tool collection to inspire and help you compose.

Laborejo 0.6 is released.

It now has an internal soundfont (and sfz) engine, comes with a lightweight General Midi sample set and supports jack midi outputs.
New Midi-In implementation.
Parameters and values for both engines are separated. You can use the same file for big orchestrated playback with gigabytes over gigabytes of sampled instruments and external synthesizers and maintain a parallel General Midi version which can be played back even if the samples are not there or running (laptop, work in a train, "just compose for 10 minutes", send it to friends for a preview etc.)

This marks the end of the Alpha phase and beginning of the Beta phase. That means the current features are enough to make and handle a reasonable range of music and notation and also that the save format is now stable. If you manage to save a file you will be able to load it in later versions.

Versions from now up to 1.0 will be only bug fixes and improvements:
Stability, Performance, Documentation, Convenience as well as Look&Feel.
(There are a few new features I would like to see in 1.0, but these are convenience features that do not disturb the save format or internal data format. Read-Only)
Documentation and Translation can now be based on a somewhat stable program. Yes, there will be documentation.
Cross Platform versions, stand-alone/portable packages and collaboration with distribution package maintainers is now on the Roadmap.


Further information and instructions

Connect to Laborejos Facebook, Twitter or Google Plus!
https://www.facebook.com/Laborejo
https://twitter.com/#!/Laborejo
https://plus.google.com/b/116744898976321238325/

Screenshot: http://www.laborejo.org/images/screenshots/latestscreenshot.png

Download: https://github.com/nilsgey/Laborejo/tarball/0.6
Dependencies and Compilation instrunctions: http://www.laborejo.org/Download

Start the GUI Editor with:

./laborejo-qt

For commandline parameters:
./laborejo-qt --help

and the Collection Editor with:

./laborejo-collection-editor

Then use the number- and cursor keys for immediate success!
Check Help->Manual for navigational and note/rest entry keys. Everything else is in the menus.


Greetings,

Nils
http://www.laborejo.org
_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] Ardour 3.0 is released

laa - Fri, 2013-05-10 08:10
From: Paul Davis <paul@...>
Subject: [LAA] Ardour 3.0 is released
Date: Mar 11, 9:39 am 2013

--bcaec554dbbe4a04c204d79cd2b8
Content-Type: text/plain; charset=ISO-8859-1

The Ardour team is happy to announce the release of Ardour 3.0 for Linux
systems (OS X releases will follow in a few weeks)

This is the first release of Ardour that features support for MIDI
recording, playback and editing. It also features a huge number of
changes to audio workflow, which for many users may be more
significant than the MIDI support. For an overview of the changes,
please read the What's New page at http://ardour.org/whatsnew.html

Please Plan On Updating
-------------------------------

You should visit expect subsequent releases of 3.0 to follow at a
rapid rate. We plan to release a new version every 2-4 weeks. Since
3.0 has many areas that need to be improved in addition to actual
bugs, please plan on upgrading and keeping track of the program as it
develops. There is every chance that the problem you encounter today
will be solved in a short time.

No Need To Remove Other Versions
---------------------------------------------
This release can be installed on your system at the same time as any
previous or future version of Ardour. They will not interfere with
each other in anyway, except for possibly sharing your Ardour
preferences.

Working with 2.X Sessions
--------------------------------
Although Ardour 3.0 will open most sessions created with Ardour 2.X,
we recommend NOT working on such sessions with Ardour 3.0. Ardour 2.X
will continue to be available and may even see occasional maintainance
updates from time to time. If you have old sessions, continue to work
on them with Ardour 2.

If you insist on opening existing Ardour 2.X sessions with 3.0, be aware
that...

- a backup copy of the 2.X version of the session file will be created
- panning information will be lost
- crossfades may not precisely match their 2.X counterparts
- once you save a session in Ardour 3.0, Ardour 2.X will not be able
to open the main session file again. It will, however, be able to
use the backup that 3.0 created

Download
------------
As usual, you can get Ardour 3.0 from our Download page at

http://ardour.org/download

--bcaec554dbbe4a04c204d79cd2b8
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

The Ardour team is happy to announce the release of Ardour 3.0 for Linux
>systems (OS X releases will follow in a few weeks)

This is the firs=
t release of Ardour that features support for MIDI
recording, playback a=
nd editing. It also features a huge number of

changes to audio workflow, which for many users may be more
significant =
than the MIDI support. For an overview of the changes,
please read the W=
hat's New page at http://ar=
dour.org/whatsnew.html



Please Plan On Updating
-------------------------------

You s=
hould visit expect subsequent releases of 3.0 to follow at a
rapid rate.=
We plan to release a new version every 2-4 weeks. Since
3.0 has many ar=
eas that need to be improved in addition to actual

bugs, please plan on upgrading and keeping track of the program as it
de=
velops. There is every chance that the problem you encounter today
will =
be solved in a short time.

No Need To Remove Other Versions
-----=
----------------------------------------

This release can be installed on your system at the same time as any
pre=
vious or future version of Ardour. They will not interfere with
each oth=
er in anyway, except for possibly sharing your Ardour
preferences.


Working with 2.X Sessi [message continues]

read more

Categories: laa

[LAA] GeoSonix 0.93 Released - Linux 32 and 64 bit

laa - Thu, 2013-05-09 08:00
From: Chris Graham <chrisgr99@...>
Subject: [LAA] GeoSonix 0.93 Released - Linux 32 and 64 bit
Date: Mar 6, 11:21 am 2013

GeoSonix, a graphical composition environment for Linux, Mac and
Windows has been released.

For details see http://www.geosonix.com/top

New features include image sonification, enhanced rhythm and harmony
processors, and much more.

Free and open source.
_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] Vee One Suite 0.3.2 - One third bug-fix release

laa - Thu, 2013-05-09 08:00
From: Rui Nuno Capela <rncbc@...>
Subject: [LAA] Vee One Suite 0.3.2 - One third bug-fix release
Date: Mar 3, 5:23 pm 2013

hi again,

as they use to say--'round here at least--there's no second without a
third. So there it goes, yet another batch for the Vee One Suite of
old-school software instruments being thrown out to the wild. Usual
suspects include synthv1 [1], a polyphonic synthesizer, samplv1 [2], a
polyphonic sampler and drumkv1 [3], a drum-kit sampler.

same as before, they come in a duality of forms:

- a pure stand-alone JACK client with JACK-session and both JACK MIDI
and ALSA MIDI input support;
- a LV2 instrument plugin.

now, the (boring) bill of changes follows:

- pitch-bend, modwheel and LFO pitch range internal fixes.
- LV2 state save flags now forced to be portable POD.
- sustain/damper pedal switch (MIDI CC#64) support added. (synthv1, samplv1)
- color palette hack on Qt5 dark themes. (TESTING)

all free, open-source Linux Audio software, distributed under the terms
of the GNU General Public License (GPL) version 2 or later.

enjoy && have fun!


[1] synthv1 - an old-school polyphonic synthesizer

synthv1 is an old-school all-digital 4-oscillator subtractive
polyphonic synthesizer with stereo fx.

LV2 URI: http://synthv1.sourceforge.net/lv2

website:
http://synthv1.sourceforge.net

downloads:
http://sourceforge.net/projects/synthv1/files

- source tarball:
http://download.sourceforge.net/synthv1/synthv1-0.3.2.tar.gz

- source package:

http://download.sourceforge.net/synthv1/synthv1-0.3.2-9.rncbc.suse122.src.rpm

- binary packages:

http://download.sourceforge.net/synthv1/synthv1-0.3.2-9.rncbc.suse122.i586.rpm

http://download.sourceforge.net/synthv1/synthv1-0.3.2-9.rncbc.suse122.x86_84.rpm


[2] samplv1 - an old-school polyphonic sampler

samplv1 is an(other) old-school all-digital polyphonic sampler
synthesizer with stereo fx.

LV2 URI: http://samplv1.sourceforge.net/lv2

website:
http://samplv1.sourceforge.net

downloads:
http://sourceforge.net/projects/samplv1/files

- source tarball:
http://download.sourceforge.net/samplv1/samplv1-0.3.2.tar.gz

- source package:

http://download.sourceforge.net/samplv1/samplv1-0.3.2-9.rncbc.suse122.src.rpm

- binary packages:

http://download.sourceforge.net/samplv1/samplv1-0.3.2-9.rncbc.suse122.i586.rpm

http://download.sourceforge.net/samplv1/samplv1-0.2.2-9.rncbc.suse122.x86_84.rpm


[3] drumkv1 - an old-school drum-kit sampler.

drumkv1 is (yet) an(other) s an old-school all-digital drum-kit
sampler synthesizer with stereo fx.

LV2 URI: http://drumkv1.sourceforge.net/lv2

website:
http://drumkv1.sourceforge.net

downloads:
http://sourceforge.net/projects/drumkv1/files

- source tarball:
http://download.sourceforge.net/drumkv1/drumkv1-0.3.2.tar.gz

- source package:

http://download.sourceforge.net/drumkv1/drumkv1-0.3.2-5.rncbc.suse122.src.rpm

- binary packages:

http://download.sourceforge.net/drumkv1/drumkv1-0.3.2-5.rncbc.suse122.i586.rpm

http://download.sourceforge.net/drumkv1/drumkv1-0.3.2-5.rncbc.suse122.x86_84.rpm


see also:
http://www.rncbc.org/drupal/node/617


cheers!
--
rncbc aka Rui Nuno Capela

_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] Laborejo 0.5: Container, Collection, Parts

laa - Sat, 2013-04-27 07:10
From: Nils Gey <ich@...>
Subject: [LAA] Laborejo 0.5: Container, Collection, Parts
Date: Feb 27, 9:23 am 2013

Laborejo, Esperanto for "Workshop", is used to craft music through notation.
It is a Lilypond GUI frontend, a MIDI creator and finally a tool collection to inspire and help you compose.
It works by reducing music-redundancy and by seperating layout and data.

Before you read the details make sure to connect to Laborejos Facebook, Twitter or Google Plus!
https://www.facebook.com/Laborejo
https://twitter.com/#!/Laborejo
https://plus.google.com/b/116744898976321238325/

Screenshot: http://www.laborejo.org/latestscreenshot.png
and: http://laborejo.org/Screenshots

This marks the release of version 0.5
Download: https://github.com/nilsgey/Laborejo/tarball/0.5
Dependencies: http://www.laborejo.org/Download

Linux Instructions: Unpack, cd into the created directoy, start the GUI Editor with:
./laborejo-qt
and the Collection Editor with:
./laborejo-collection-editor

Then use the number- and cursor keys for immediate success!
Check Help->Manual for navigational and note/rest entry keys. Everything else is in the menus.

Important New Features:
* Laborejo Collections: A new file format (.lbj), editable by the new GUI tool "Laborejo Collection Editor" or with a text-editor, because it is very easy.
* Combine several score files (.lbjs) into a bigger one during export: Multi-movement symphonies, songbooks, collections of your band songs in one pdf etc.
* Doesn't touch your actual music data but reformats for the new format and can add extra information like piece-numbering, transposition of the whole music and more.
* Load a lbj file in the standard Score editor to open all used .lbjs files.
* Can also combine several .lbjs scores into one, seamlessly. If you like to write long, progressive rock pieces with no breaks (in the music or pdf) you can still edit and keep them in separate pieces. Just keep the names of the tracks the same in each lbjs file.
* Can use different templates (Lilypond, Ardour3 etc. layout and style files) and override the original score file template.
* Part Extraction / Voice Extraction (aka. Custom Export):
* Create multiple PDFs or MIDI files from one .lbjs. Does not touch your music, all automated. Simply choose a parameter as extract basis (Track, Group, Instrument, a special Extract parameter for complete individual control [recommended]) and hit "Export".
* Can be combined with Collections! Combine your songs into a song collection and then export parts, one songbook/PDF for the guitarist, one songbook for the bassist. The singer and the drummer can't read notes, though.
* Collapse/Shrink Tracks to save space.
* Reverse Selections by 1.simply reverse order 2.reverse only pitch 3. reverse only rhythm
* Non-Transparent Containers. Can contain any objects, represented by a colored "block" in the GUI. Editable in its own windows. Screenshot: http://www.laborejo.org/dl3&display
* Edit any container (including transparent containers, whole tracks and substitutions) in its own tab.
* Mini Lilypond Parser so you can insert notes by a script, using Lilypond syntax (just the music, no ornaments, no scheme functions)
* And of course the usual GUI improvements, bug fixes and stability improvements.

Greetings,
Nils Gey
http://www.laborejo.org
_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] Pd-l2Ork v.20130223 now available

laa - Sat, 2013-04-27 07:10
From: Ivica Ico Bukvic <ico@...>
Subject: [LAA] Pd-l2Ork v.20130223 now available
Date: Feb 25, 8:59 pm 2013

Apologies for x-posting.

Pd-L2Ork v. 20130223 is now available with following fixes/updates/new
features:

*further refinements to the zoom algorithm involving gop subpatchers
*made scrolling algorithm more robust
*cleaned up sequencer help file
*improved/sped-up gop redrawing when using non-accelerated objects
*improved compatibility with 0.43 and 0.44 branch API
*removed flatgui due to its buggy nature
*improved modularity of the dev installer
*bug fix http://sourceforge.net/tracker/?func=detail&aid=3605384
*bug fix http://sourceforge.net/tracker/?func=detail&aid=3605379
*updated TODO list
*updated pdp_opencv to make it compile with latest version of libs
*bug fix/improvement of the select object
*improved fftw3 support
*bugfix (http://sourceforge.net/tracker/?func=detail&aid=3605257
*added fftw flag
*tree clean-up
*first step towards supporting wiimote plus (does not work yet)
*minor version bump to distinguish it from pd-extended
*added Jonathan Wilkes' canvasinfo and pdinfo externals
*added additional dependency to the control file for the proper pdp build
*improved deb control file and minimized conflicts with other pd
distributions
*2nd part of pdp/pidip update (new files)
*updated sigpack and fixed freqshift~ bug
*1st step in syncing latest pdp and pidip with fixes/changes to make it
compile on Ubuntu 12.04
*added support for tcl/tk8.6
*improved building of gem2pdp on Arch Linux

For more info see:
http://l2ork.music.vt.edu/main/?page_id=56
http://puredata.info/downloads/Pd-L2Ork

Please note that due to L2Ork's migration to 64-bit platform we may not
provide 32-bit builds as often until we set up Launchpad or some other
auto-building system. Until then, current release is available only as
64-bit. The source is buildable into deb as well as binary script-based
installer using a single command provided all dependencies are satisfied.
See http://l2ork.music.vt.edu/main/?page_id=56 for more info.

Best wishes,

Ivica Ico Bukvic, D.M.A.
Composition, Music Technology
Director, DISIS Interactive Sound & Intermedia Studio
Director, L2Ork Linux Laptop Orchestra
Head, ICAT IMPACT Studio
Virginia Tech
Dept. of Music - 0240
Blacksburg, VA 24061
(540) 231-6139
(540) 231-5034 (fax)
ico@vt.edu
http://www.music.vt.edu/faculty/bukvic/



_______________________________________________
Linux-audio-announce mailing list
Linux-audio-announce@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-announce

read more

Categories: laa

[LAA] Jalv 1.4.0

laa - Tue, 2013-04-23 08:10
From: David Robillard <d@...>
Subject: [LAA] Jalv 1.4.0
Date: Feb 23, 8:49 am 2013


--=-xQDTOSjD6geTlw4K2R4X
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Jalv 1.4.0 is out. Jalv is a simple but fully featured LV2 host for
Jack. It runs LV2 plugins and exposes their ports as Jack ports,
essentially making any LV2 plugin function as a Jack application.

Download: http://download.drobilla.net/jalv-1.4.0.tar.bz2
More about Jalv: http://drobilla.net/software/jalv

This version contains many significant improvements, upgrading is highly
recommended.

Changes:

* Send time information to plugin when Jack tempo changes
* Group controls under headings if port group information is available
* Add spinbuttons for precisely setting control values
* Use a more efficient dense layout for controls
* Make URI map thread-safe, fixing occasional crashes for
plugins with UIs
* Add menu bar and pass parent widget in Qt version for
true UI embedding
* Support state:loadDefaultState
* Update to waf 1.7.8 and autowaf r90

Enjoy,

-dr

--=-xQDTOSjD6geTlw4K2R4X
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: This is a digitally signed message part
Content-Transfer-Encoding: 7bit

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAABCAAGBQJRKE0EAAoJEDZyeCqb82jzgjMP/0pdYKI4f0Bgfyt3eH4RgMQH
E2BtqaE3TOKFrm9pRvBqa/CWwa+n4q+Ns9PSZ91W+BecGEOhgwUdVNdnFoZBx2ed
OFOJfumvsF6JzyGOk1FnEfmE8XMyq2t0XHNETGASJZRxkA2xg2k/z6s2AzCsY9+a
II38lfX0EIhwGhYqmtK6ls6wJI9LLkiP7Yt/qW4zdCiWroADoHXk6vNdPe89VAsl
ERspd7mcYGJwf5OswybXsYXnuYlxLlkdA3xazJI9+ulZbfsl1hiwDBROsFIDn+WS
RScfEgcEYI5IdB25Y7HuwECFzXTrbi1Bd18/malGkFw4zlD3X55OVmtHC6SQwqaF
FzNhLD2+pJh1T3aYFlhH9OX9gKHC+CwQj2EpU2kE1P5A7GNVPUN/U/sRN9AbJF4o
rdPtZ0QXq2dbaw7/HuebXV9b90fqfcHX87RDByUim1MkhbiWt5uhZli84nM4S2kL
f81Yq069CKXvEpwJpdG3OeQMRGrvnmBbXfWyhdnrA8mBEYy4OLG3Z9Ac3rEH0JK1
L2itMP921VyOFwTiR6j5uK57UGcmjU//Ua13ngDsmxs/O1ATWwB+9i9T3RrAa+r8
dvpDea8O0ZjoUnRohSX7FAm5h+QLpVwXv4etDPm/rcZXZYi5qixYxjO1l758mEGw
zUtXPEb51YN3AuYaCtKg
=1CFI
-----END PGP SIGNATURE-----

--=-xQDTOSjD6geTlw4K2R4X--

read more

Categories: laa

[LAA] Suil 0.6.12

laa - Tue, 2013-04-23 08:10
From: David Robillard <d@...>
Subject: [LAA] Suil 0.6.12
Date: Feb 23, 8:49 am 2013


--=-H19tU1PurJK2+nqokzQN
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Suil 0.6.12 is out. Suil is a lightweight C library for loading and
wrapping LV2 plugin UIs. Suil transparently presents UIs written in
any toolkit as the desired widget type of host programs, so hosts do
not have to depend on foreign toolkits.

Download: http://download.drobilla.net/suil-0.6.12.tar.bz2
More about Suil: http://drobilla.net/software/suil

Changes:

* Fix key events for X11 in Gtk without using a
troublesome event filter
* Fix crash when a broken UI returns a NULL descriptor
* Fix compilation on BSD

Enjoy,

-dr

--=-H19tU1PurJK2+nqokzQN
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: This is a digitally signed message part
Content-Transfer-Encoding: 7bit

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAABCAAGBQJRKExnAAoJEDZyeCqb82jz5BAP/11T+HlwtPybE0vdzBtkjNuS
I5+Awm3nTWtjj4B6k+GWCFTOrEUjVTNjN4njboHTHiGUzMRZOthnhNq6gZ4NRDrI
BzdRfQIvrKzzSOUHArkLEAohHmFtdHppqRlg/5l7/ho0MNlkOfMEqM5cFFH35suX
ID8ALEFbfZiaiCUE0tFhCegJKO+g6/j+yFkyk2NjGRCTpWd+ucicvpWTDP5gXIrb
lpOJ/9UBOltdpJP9fbQ6S+KSyd7zjt1W3kwDZuiCBv07s/5nf6+oF+WBhgUquEcC
3rDJXoGfJjjljDSx9aAI4F2hahrvLF0i1HNYO7gwFXFiAtsQTN9dg9p7LOTybmQZ
KlxJNPvm+BpKZbyRSn//ckT8MsEVnG/5t2fZYxXHKRSYN4KY8pIMVSUh04+qSJdl
fqmZdvlu2WzW4fL7NtUpWMyy/KHhHE9LbeLdaOUxfcNmL9xH3Am5p/nWSYKLc6Wj
mpDeTHUXUPp1bv4ir5iewetepBNTqmiyTlzhtmVrYF1m5nOunfY7OyEdS9Kiw2Dw
+u6fQmsayJpZIqs4quiQGoXxBNk1aVCvl+d6U0/rN3HMcnJngVeikw8kOoDBRtHD
GJEfE8xFmPwBhAfMBkeYNtEgYEkgC2Y2QRpUbFUPk9CipsBhTqo2FaLzrQ06Kprb
X/jsfmW64E23lEuIcVKV
=untD
-----END PGP SIGNATURE-----

--=-H19tU1PurJK2+nqokzQN--

read more

Categories: laa

[LAA] International Computer Music Conference extended deadline

laa - Sun, 2013-04-21 07:40
From: Andrew Varano <conference@...>
Subject: [LAA] International Computer Music Conference extended deadline
Date: Feb 20, 12:47 pm 2013

This is a multi-part message in MIME format.

------=_NextPart_000_0802_01CE0EA8.E597ABA0
Content-Type: text/plain;
charset="utf-8"
Content-Transfer-Encoding: quoted-printable

INTERNATIONAL COMPUTER MUSIC CONFERENCE 2013=20

EXTENDED DEADLINE FOR SUBMISSION OF PAPERS AND WORKS UNTIL 28th FEBRUARY



The Submission deadline for papers, works and for registration for ICMC =
2013 has been extended until the 28th of February 2013.



Updated Timeline:



10/12/2012 Initial Call for Papers and Works

10/1/2013 Full Call and Open for Submissions

28/2/13 Submission Deadline=E2=80=A8

28/2/2013 Registrations Open=E2=80=A8

28/4/2013 Papers and Works Confirmed



The International Computer Music Conference (ICMC) has been the major =
international medium for the presentation of technical and musical =
research, both musical and theoretical, interrelated to the use of =
computers in music. ICMC travels the globe annually, and will be held in =
Australia for the first time this year.

There are eight ways to submit to ICMC 2013:



- short paper
- long paper
- poster
- demonstration
- studio report
- creative work
- piece and paper
- round table proposal



The conference theme for 2013 is IDEA =E2=80=93 International =
Developments in ElectroAcoustics. We encourage the submission of papers =
examining any topic related to computer music and digital audio, =
including: aesthetic, compositional, educational, musicological, =
perceptual, scientific and technical aspects. Only completed papers and =
creative works will be considered.

Producer of the conference this year is Tura New Music, in association =
with The International Computer Music Association, Edith Cowan =
University and The Australasian Computer Music Association.



The Conference will be based in the Perth Cultural Centre in venues =
including The Perth Institute of Contemporary Arts, The State Library of =
WA and The Western Australian Museum.



For more information on the ICMC 2013 please go to =
http://www.icmc2013.com.au/

All Enquiries to: Andrew Varano conference@tura.com.au



------=_NextPart_000_0802_01CE0EA8.E597ABA0
Content-Type: text/html;
charset="utf-8"
Content-Transfer-Encoding: quoted-printable





mso-line-height-alt: 13.0pt"=20
class=3DMsoNormal>style=3D"mso-ascii-font-family: calibri; mso-ascii-theme-font: =
minor-latin; mso-hansi-font-family: calibri; mso-hansi-theme-font: =
minor-latin"=20
lang=3DEN-GB>INTERNATIONAL COMPUTER =
MUSIC CONFERENCE=20
2013


mso-line-height-alt: 13.0pt"=20
class=3DMsoNormal>style=3D"mso-ascii-font-family: calibri; mso-ascii-theme-font: =
minor-latin; mso-hansi-font-family: calibri; mso-hansi-theme-font: =
minor-latin"=20
lang=3DEN-GB>EXTENDED DEADLINE FOR =
SUBMISSION OF=20
PAPERS AND WORKS UNTIL 28th FEBRUARY
lang=3DEN-GB>


mso-line-height-alt: 13.0pt"=20
class= [message continues]

read more

Categories: laa