New packages / Fedora Audio
by Brendan Jones
Hi all,
I have recently gone through the pain of relocating countries, setting
up new workstations etc. and would love to have all the packages I use
sitting in Fedora. As a result I've packaged a few things which I use
What is the status of the Fedora Audio SIG? After going through this
myself I am keen to resurrect the idea of a Fedora Studio. We could even
make it a feature of Fedora 17.
We would probably need to coordinate from planetccrma what desperately
needs to be in mainline Fedora and any other packages which are missing.
If there is anything you would like packaged which is not let me know.
In the meantime there is a new packages that have hit Fedora 16 (at
.least) in the last month or so.
zita-at1 - Fons' auto-tuner
zita-rev1 - Reverb from Fons
phat - GTK toolkit for audio software, was in planetccrma, depandancy of
specimen. New project coming soon to Fedora petri-foo, which
replaces/inherits specimen (currently FTBS in planet)
clxclient - dependancy of zita*, previously in planetccrma*
I also have a couple of lv2 plugins awaiting review here [1].
Also thinking of packaging Neil, although this will probably need to
reside in rpmfusion
regards,
Brendan
[1]
https://bugzilla.redhat.com/buglist.cgi?query_format=advanced&classificat...
FAS: bsjones
Freenode: bsjones (not often but will lurk in #fedora-audio,
#opensourcemusicians for a bit)
11 years, 7 months
Re: [Fedora-music-list] Open Octave Midi
by Brendan Jones
On 01/11/2012 11:32 AM, Thomas Volkmann wrote:
> Hi all,
>
>
> I stumbled over this some weeks ago: http://www.openoctave.org/ . I
> think it looks very interesting and I definitely need to give it a try,
> but I failed miserably at building it.
>
> I contacted Thomas Moschny to ask if maybe he could do a package for it,
> but he has no time for it and suggested that I could try this list.
>
> Is there anyone who build it already and give me some instructions, or
> even provide a package?
>
> That would be so awesome!
>
>
> cheers,
>
> Thomas
>
Hi Thomas
Open Octave uses the new LV2 stack (Lilv, sord, suil, and serd), none of
which have been packaged yet (I'm doing them at the moment and shouldn't
be too far off). When these are complete I can have a look at Open Octave.
You probably already know that this is a fork of Rosegarden which we do
have in the repos.
regards,
Brendan
11 years, 8 months
Open Octave Midi
by Thomas Volkmann
Hi all,
I stumbled over this some weeks ago: http://www.openoctave.org/ . I think it
looks very interesting and I definitely need to give it a try, but I failed
miserably at building it.
I contacted Thomas Moschny to ask if maybe he could do a package for it, but he
has no time for it and suggested that I could try this list.
Is there anyone who build it already and give me some instructions, or even
provide a package?
That would be so awesome!
cheers,
Thomas
11 years, 8 months
POLL: most used audio packages / yum audio production group
by Brendan Jones
Some of you may have seen my recent posts about my desire to actualise
some kind of Fedora Audio spin.
I think the first step in this process is to determine what software
Fedora Audio users are using on a regular basis.
Once we have this we can determine a usable subset of audio packages
that can form the basis of a yum group. Whilst we can garner a lot of
the information from .desktop files and the work of the multimedia menus
package, I think it is important to find the lowest common subset of
packages.
So what I propose is a poll!
Firstly, list your name , DE, (XFCE/KDEGNOME/LXDE/OpenBox/..etc) then
with a list of packages that you regularly use, in descending order of
importance. Please specify where you obtained the package if not in
fedora repositories.
For example:
Brendan Jones:KDE
jack
lash
qtractor (rpmfusion)
zynaddsubfx
zynjacku
qmidiarp
seq24
rosegarden4
hydrogen
dssi-vst
yoshimI (source)
ingen (source)
sylenth (vst)
Don't be afraid to repeat what others have posted, that way I can gauge
numbers.
This data can then be used to come up with a minimal subset of Fedora
audio packages that we can lump together in a yum group.
So, Merry Xmas! And I look forward to seeing everyone's replies!
Brendan
11 years, 8 months
Re: [Fedora-music-list] [PlanetCCRMA] pulseaudio-1.1-3
by Brendan Jones
On 11/26/2011 01:25 PM, Simon Lewis wrote:
> Just one of those aha experiences - not sure if anyone is interested but
> here it is anyway...
>
> On my fc15 x86_64 installation I built and installed pulseaudio-1.1 from
> the pulseaudio-1.1-3.fc17.src.rpm as found on
> "http://koji.fedoraproject.org/koji/".
>
> The main reason for doing this is the better emulation of alsa in
> pulseaudio-1.1 compared to pulseaudio-0.9.2x.
>
> Not only does pulseaudio run perfectly on top of jackd, but it is
> possible to route alsa only apps like sunvox into qtractor/ardour.
>
> To do this I needed the four scripts listed at the bottom of this e-mail.
>
> I used Qjackctl to run the scripts with the following entries in the
> options tab of the settings dialogue:
>
> Execute script on Startup:
> /home//username//.scripts/pulse-jack-pre-start.sh &
>
> Execute script after Startup:
> /home//username//.scripts/pulse-jack-post-start.sh & a2jmidid -e &
>
> Execute script on Shutdown:
> /home//username//.scripts/pulse-jack-pre-stop.sh & killall a2jmidid &
>
> Execute script after Shutdown:
> /home//username//.scripts/pulse-jack-post-stop.sh &
>
> If anyone has a better way to start and stop a2jmidid, I would be
> interested.
>
> Regards, Simon
>
>
> pulse-jack-pre-start.sh
> _____________________
> #!/bin/bash
> pacmd suspend true
>
>
> pulse-jack-post-start.sh
> ______________________
> #!/bin/bash
> pactl load-module module-jack-sink channels=2
> pactl load-module module-jack-source channels=2
> pacmd set-default-sink jack_out
> pacmd set-default-source jack_in
>
>
> pulse-jack-pre-stop.sh
> _____________________
> #!/bin/bash
> SINKID=$(pactl list | grep -B 1 "Name: module-jack-sink" | grep Module |
> sed 's/[^0-9]//g')
> SOURCEID=$(pactl list | grep -B 1 "Name: module-jack-source" | grep
> Module | sed 's/[^0-9]//g')
> pactl unload-module $SINKID
> pactl unload-module $SOURCEID
> sleep 5
>
>
> pulse-jack-post-stop.sh
> ______________________
> #!/bin/bash
> pacmd suspend false
>
>
>
> _______________________________________________
> PlanetCCRMA mailing list
> PlanetCCRMA(a)ccrma.stanford.edu
> http://ccrma-mail.stanford.edu/mailman/listinfo/planetccrma
Hi Simon,
Thanks for the info - awesome stuff.
Just a few questions. 1. There's no reason why these scripts cannot run
with 0.9.2 right?
2. what version of jackd are you using - from the repos? or have you
compiled your own with DBUS support? (jackdbus only just hit f16
recently and you are using f15)
As for your question about a2jmidid I just pkill it also.
Another script I use in f16 that I put in my path is this: (the $1
parameter is either start or stop. pre|post in yr examples). I'm a
developer so most people won't be using a lot of these services anyway,
but you can tailor it for your needs:
fedora16:~ $ cat ~/bin/audio_services
#!/bin/bash
beesu systemctl $1 nfs-idmap.service nfs-lock.service ksm.service
ksmtuned.service abrtd.service cups.socket cups.service
sm-client.service sendmail.service ntpd.service mysqld.service
httpd.service libvirtd.service crond.service sshd.service smb.service
if [ $1 == "stop" ]
then beesu modprobe -r ath9k
else beesu modprobe ath9k;
fi
Cross posting to Fedora-music also as I think this is of keen interest
there (apologies)
Brendan
11 years, 9 months
LAC Deadline Extension - now January 22, 2012
by Fernando Lopez-Lezcano
-------- Original Message --------
From: Bruno Ruviaro <ruviaro(a)stanford.edu>
Dear All,
The Linux Audio Conference submissions deadline has been extended! It is
now January 22nd, 2012.
So, if you were considering submitting a paper but couldn't make up your
mind yet, here is your chance to become active! Never forget that this
conference lives through the people participating in it.
January 22nd is the new deadline for all submission types: papers,
music, installations, workshop proposals.
Notifications of acceptance will still be sent out on February 6th, 2012.
Check out the link below more info:
http://lac.linuxaudio.org/2012/participation
Please spread this information to anyone who might be interested.
Questions? Drop us a line at lac(a)linuxaudio.org
We are looking forward to seeing you at Stanford in April!
Thanks,
The LAC 2012 organization team
11 years, 9 months