Re: [ubuntu-studio-users] Pulse and Jack

2014-05-10 Thread Mac
On Tue, May 6, 2014 at 4:50 PM, Kaj Ailomaa  wrote:

>
>
> On Tue, May 6, 2014, at 05:01 PM, Mac wrote:
> > (I think) Previously (AV Linux & UBS 12) the Pulse sink and source was
> > there but not connected.
> > Then my script connected them where I wanted them to go. The script still
> > does this, but
> > the pulse output is already connected to the AF12 ch1 & 2 and then my
> > script connects them
> > to ch1 & 2 again. So I want Pulse source & sink, I just don't want it to
> > be
> > auto connected.
> >
>
> I'm pretty sure the behavior has been the same all along. Did some
> googling, and found that there in deed is an option for stopping the
> sink and source from auto-connecting, by adding the option:
> connect=false
>
> http://lists.freedesktop.org/archives/pulseaudio-discuss/2007-July/000420.html
>
> So, if you want to have the sink and source loaded automatically, but
> not auto-connect, change the line in /etc/pulse/default.pa to:
>
> load-module module-jackdbus-detect channels=2 connect=false
>
>
Modified default.pa as above and it works.
I now get 2 pulse sink and 2 pulse source, but nothing connected.


Thanks for the help.
Mac
-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Pulse and Jack

2014-05-06 Thread Kaj Ailomaa


On Tue, May 6, 2014, at 05:01 PM, Mac wrote:
> (I think) Previously (AV Linux & UBS 12) the Pulse sink and source was
> there but not connected.
> Then my script connected them where I wanted them to go. The script still
> does this, but
> the pulse output is already connected to the AF12 ch1 & 2 and then my
> script connects them
> to ch1 & 2 again. So I want Pulse source & sink, I just don't want it to
> be
> auto connected.
> 

I'm pretty sure the behavior has been the same all along. Did some
googling, and found that there in deed is an option for stopping the
sink and source from auto-connecting, by adding the option:
connect=false
http://lists.freedesktop.org/archives/pulseaudio-discuss/2007-July/000420.html

So, if you want to have the sink and source loaded automatically, but
not auto-connect, change the line in /etc/pulse/default.pa to:

load-module module-jackdbus-detect channels=2 connect=false

Or, if loading sink and source manually:

pactl load-module module-jack-sink channels=2 connect=false
pactl load-module module-jack-source channels=2 connect=false

> It might be a couple days before I get to actually work on this again.
> 
> Thanks for the help.
> 
> Mac
> -- 
> ubuntu-studio-users mailing list
> ubuntu-studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users

-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Pulse and Jack

2014-05-06 Thread Mac
On Tue, May 6, 2014 at 10:25 AM, Kaj Ailomaa  wrote:

>
> > >
> > Well I did try commenting that out. But, the connect didn't go
> > away...but,
> > I didn't restart pulse either.
> >
> > Also, I want the Pulse channels, I just don't want them auto connected; I
> > want to control the connection in my script.
> > --
> > ubuntu-studio-users mailing list
> > ubuntu-studio-users@lists.ubuntu.com
> > Modify settings or unsubscribe at:
> > https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>
> You'll need to restart pulseaudio (as you suspected) to have changes
> take effect. Just do: pulseaudio -k
>
> I think in order to not have the sink and source autoconnect, the code
> will need to be changed, or perhaps there is an option for that (like
> channels=2).
>
> To load the sink and source manually (not using dbus-detect), do:
>
> pactl load-module module-jack-sink channels=
> pactl load-module module-jack-source channels=
>
>
(I think) Previously (AV Linux & UBS 12) the Pulse sink and source was
there but not connected.
Then my script connected them where I wanted them to go. The script still
does this, but
the pulse output is already connected to the AF12 ch1 & 2 and then my
script connects them
to ch1 & 2 again. So I want Pulse source & sink, I just don't want it to be
auto connected.

It might be a couple days before I get to actually work on this again.

Thanks for the help.

Mac
-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Pulse and Jack

2014-05-06 Thread Kaj Ailomaa

> >
> Well I did try commenting that out. But, the connect didn't go
> away...but,
> I didn't restart pulse either.
> 
> Also, I want the Pulse channels, I just don't want them auto connected; I
> want to control the connection in my script.
> -- 
> ubuntu-studio-users mailing list
> ubuntu-studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users

You'll need to restart pulseaudio (as you suspected) to have changes
take effect. Just do: pulseaudio -k

I think in order to not have the sink and source autoconnect, the code
will need to be changed, or perhaps there is an option for that (like
channels=2).

To load the sink and source manually (not using dbus-detect), do:

pactl load-module module-jack-sink channels=
pactl load-module module-jack-source channels=


-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Pulse and Jack

2014-05-06 Thread Mac
On Tue, May 6, 2014 at 7:41 AM, Kaj Ailomaa  wrote:

>
>
> On Tue, May 6, 2014, at 01:28 PM, Mac wrote:
> > I have a script that does a bunch of connections when I start Jack via
> > Qjackctl.
> >
> > It connects various things like calf plugins, zita meters/xovers, etc.
> > and
> > my AF12 into a tri-amp system.
> >
> > I figured this out under AV Studio, then moved it to UDS 12.04.
> >
> > The other day I built a system with UBS 14.04.
> >
> > The script still works, but...
> >
> > By default when Qjackctl starts jack it auto-magically connects the Pulse
> > output to the first two channels on my AF12.
> >
> > Then my script adds my desired connections, except I don't want to two
> > connections mentioned above.
> >
> > I don't remember if I actually figured out how to stop the connection
> > previously.
> > Or, if it does it differently in 14.04
> >
>
> One difference should be that before PA would autoconnect to all the
> outputs of the audio IF. Now, it only connects to two by default.
> In /etc/pulse/default.pa:
>
> load-module module-jackdbus-detect channels=2
>
> If you'd rather not have the sink and source loaded by default (and
> automatically connect), you can just comment out that whole section,
> like so:
>
> # .ifexists module-jackdbus-detect.so
> # .nofail
> # load-module module-jackdbus-detect channels=2
> # .fail
> # .endif
>
>
Well I did try commenting that out. But, the connect didn't go away...but,
I didn't restart pulse either.

Also, I want the Pulse channels, I just don't want them auto connected; I
want to control the connection in my script.
-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Pulse and Jack

2014-05-06 Thread Kaj Ailomaa


On Tue, May 6, 2014, at 01:28 PM, Mac wrote:
> I have a script that does a bunch of connections when I start Jack via
> Qjackctl.
> 
> It connects various things like calf plugins, zita meters/xovers, etc.
> and
> my AF12 into a tri-amp system.
> 
> I figured this out under AV Studio, then moved it to UDS 12.04.
> 
> The other day I built a system with UBS 14.04.
> 
> The script still works, but...
> 
> By default when Qjackctl starts jack it auto-magically connects the Pulse
> output to the first two channels on my AF12.
> 
> Then my script adds my desired connections, except I don't want to two
> connections mentioned above.
> 
> I don't remember if I actually figured out how to stop the connection
> previously.
> Or, if it does it differently in 14.04
> 

One difference should be that before PA would autoconnect to all the
outputs of the audio IF. Now, it only connects to two by default.
In /etc/pulse/default.pa:

load-module module-jackdbus-detect channels=2

If you'd rather not have the sink and source loaded by default (and
automatically connect), you can just comment out that whole section,
like so:

# .ifexists module-jackdbus-detect.so
# .nofail
# load-module module-jackdbus-detect channels=2
# .fail
# .endif

> In any case I have also not been able to find enough info on the web to
> get
> me to the point where I can even find where the auto-magic connection is
> happening (and thus figure out how to stop it).
> 
> Help an addled old mind. Thanks. ;)
> 
> Regards,
> Mac
> -- 
> ubuntu-studio-users mailing list
> ubuntu-studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users

-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


[ubuntu-studio-users] Pulse and Jack

2014-05-06 Thread Mac
I have a script that does a bunch of connections when I start Jack via
Qjackctl.

It connects various things like calf plugins, zita meters/xovers, etc. and
my AF12 into a tri-amp system.

I figured this out under AV Studio, then moved it to UDS 12.04.

The other day I built a system with UBS 14.04.

The script still works, but...

By default when Qjackctl starts jack it auto-magically connects the Pulse
output to the first two channels on my AF12.

Then my script adds my desired connections, except I don't want to two
connections mentioned above.

I don't remember if I actually figured out how to stop the connection
previously.
Or, if it does it differently in 14.04

In any case I have also not been able to find enough info on the web to get
me to the point where I can even find where the auto-magic connection is
happening (and thus figure out how to stop it).

Help an addled old mind. Thanks. ;)

Regards,
Mac
-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Pulse Audio? Where is alsamixer?

2013-12-25 Thread Mike Holstein
On Wed, Dec 25, 2013 at 7:38 PM, Henry W. Peters wrote:

>  Alright, got Ubuntu Studio 13.10 installed on my ext. usb drive, on my HP
> Pavillion desktop, now trying to configure for functionality.
>
> Wondering, first of all, if Pulse audio can be safely turned off...?  & if
> so, what is the best way to do this?
>

its not a safety issue in any way. if i didnt want pulse, i would just
remove it, but there is really no reason to remove it, unless you just
prefer not having it, and if i were a person who wanted to not have pulse,
i would start with lubuntu, which doesnt ship pulse (AFAIK) and add what
packages i want, such as JACK and ardour... the "best" way will always be a
matter of preference and use case. if you dont want pulse, remove it, but i
would consider troubleshooting the issues you are having. JACK can be setup
not to use the pulse dbus, if you want JACK only... in the qjackctl gui
under the "misc" tab, untick dbus


>
> Second, though alsa appears to be installed, when I call up 'alsamixer'
> from terminal... I get:
>
> "cannot open mixer: No such file or directory"
>
> I installed a gui alsa mixer (gnome alsamixer)... but it crashes after I
> start it
>
> Third, having trouble getting sound IN from my Native Instruments Komplete
> Audio 6 usb 3.0 device... (presently, using s/pidf connect from my Yamaha
> 01v mixer). I can get sound from *in* the CPU, i.e., radio streams, audio
> cd's, etc.. & I figured out how to get midi IN & OUT... so any one with
> such experience, & insite, your suggestions would be more than welcome.
>
>
sounds like you are trying to troubleshoot many things i once. i would try
and isolate a few things. try using whatever mixer controls you want with
the internal audio device only, and wait til you get sound working and you
understand the tools a bit better before moving on to even plugging in the
Komplete USB device.

these references may help..

https://help.ubuntu.com/community/SoundTroubleshooting
https://help.ubuntu.com/community/UbuntuStudio/ProAudioIntro

cheers


> Thanks,
> Henry
>
> --
> ubuntu-studio-users mailing list
> ubuntu-studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>
>


-- 
MH

mikeholstein.info <http://www.mikeholstein.info/>
-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


[ubuntu-studio-users] Pulse Audio? Where is alsamixer?

2013-12-25 Thread Henry W. Peters
Alright, got Ubuntu Studio 13.10 installed on my ext. usb drive, on my 
HP Pavillion desktop, now trying to configure for functionality.


Wondering, first of all, if Pulse audio can be safely turned off...?  & 
if so, what is the best way to do this?


Second, though alsa appears to be installed, when I call up 'alsamixer' 
from terminal... I get:


"cannot open mixer: No such file or directory"

I installed a gui alsa mixer (gnome alsamixer)... but it crashes after I 
start it


Third, having trouble getting sound IN from my Native Instruments 
Komplete Audio 6 usb 3.0 device... (presently, using s/pidf connect from 
my Yamaha 01v mixer). I can get sound from /in/ the CPU, i.e., radio 
streams, audio cd's, etc.. & I figured out how to get midi IN & OUT... 
so any one with such experience, & insite, your suggestions would be 
more than welcome.


Thanks,
Henry
-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Jack and pulse?

2013-02-12 Thread Ralf Mardorf
 Forwarded Message 
From: Ralf Mardorf 
To: ubuntu-studio-users@lists.ubuntu.com
Subject: Re: Jack and pulse?
Date: Tue, 12 Feb 2013 21:37:59 +0100

On Tue, 2013-02-12 at 15:18 -0500, Mac wrote:
> Is flash going away?

"NOTE: Adobe Flash Player 11.2 will be the last version to target Linux
as a supported platform. Adobe will continue to provide security
backports to Flash Player 11.2 for Linux." -
http://get.adobe.com/flashplayer/

Security updates won't help, when the Internet ask us for up to date
versions. Solutions are already foreseeable, but it still will be a
proprietary way.





-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Jack and pulse?

2013-02-12 Thread Set Hallstrom
My 2 poetic breadcrumbs:

freeDOM is not a channel, it's a common language. That's what i like
about linux.


On 02/12/2013 10:25 PM, Ralf Mardorf wrote:> For
Debian/Ubuntu/Fedora/openSUSE
> https://www.google.com/intl/en/chrome/browser/
>
> For Arch Linux it's available by the ´Arch User Repository´, but not by
> the Arch Linux repositories.
>
> I've got Chromium only installed, perhaps I'll install Chrome in the
> future.
>
>

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Jack and pulse?

2013-02-12 Thread Kaj Ailomaa

On Tue, 12 Feb 2013 20:57:18 +0100, Mac  wrote:


On 12.x when jack is started by qjackctrl, the local pulse audio
devices show up as sources and sinks.

I have not dug around and figured that out in depth. That's on my todo  
list.




pulseaudio-module-jack is what does it. It's possible to have PA create  
sink and source for jack manually too, but the module does it  
automatically, whenever you start jackdbus (qjackctl is set to start  
jackdbus by default (Setup -> Misc -> Enable D-Bus Interface).




In my case I also have an AF12 plugged into the firewire port, so in
addition to the pulse sinks/sources, 12 sinks and sources show up as
well.


Think of the PA sink and source as an application connecting to jack.



In addition, I have some scripts that execute when qjack starts that
add and patch some other apps.

If I boot the pc and start qjack, then start a browser with audio
content, it comes through the PA source and goes to the rest. This
works just fine most of the time.

There two situations that cause me some grief:

1.) If I start the browser content, then start qjackctrl, from that
point on no audio from the jack side of the house. (The PA side still
shows, in volume control that it's getting to PA.) I can avoid this by
having a better memory and remembering to start qjack.


There are one or more bugs causing the exchange between PA and jack not  
work flawlessly, as of yet.




2.) If for some reason the stream from the browser dies, for example a
video goes into buffering for too long, the browser and jack appear to
be hung. (I've seen ffado go south in this case and I don't know how
to recover it live either.) In this case, my memory won't help...can't
predict network sluggishness.

In both situations, I've found no way to recover short of reboot.

Is there a way to recover in either case?


Try killing jack with: killall -9 jackdbus

If that doesn't help, make sure to kill jack and also restart PA, by  
killing it.




Regards,
Mac


--
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Jack and pulse?

2013-02-12 Thread Ralf Mardorf
For Debian/Ubuntu/Fedora/openSUSE
https://www.google.com/intl/en/chrome/browser/

For Arch Linux it's available by the ´Arch User Repository´, but not by
the Arch Linux repositories.

I've got Chromium only installed, perhaps I'll install Chrome in the
future.


-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Jack and pulse?

2013-02-12 Thread Mike Holstein
On Feb 12, 2013 3:55 PM, "Ralf Mardorf"  wrote:
>
> PS: The Google browsers seems to be risky, regarding to security flaws.

Getting online is "risky" regardless of the browser in use.. the facts are,
if you want current flash, chrome is providing it. Chrome is not supplied
in ubuntu (and likely other distros) because of licensing issues with
things such as flash. My favorites are not mentioned here, since that is
irrelevant.

>
>
> --
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Jack and pulse?

2013-02-12 Thread Ralf Mardorf
PS: The Google browsers seems to be risky, regarding to security flaws.


-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Jack and pulse?

2013-02-12 Thread Ralf Mardorf
On Tue, 2013-02-12 at 15:27 -0500, Mike Holstein wrote:


> chrome gets its own flash

Correct!

For some usage HTML5 might replace flash, but as far as I know only
Chrome is able to do everything or at least most of the things flash is
needed for.

No reason for a flame war. I wish distros would provide more Chrome
instead of Chromium. The issue for me isn't a policy, but I prefer
browsers providing another GUI, IOW a different workflow.

My favorite still is Firefox, followed by Opera, but current versions of
Opera already follow this Windows8-Unity-TabletPC style.

OT: The homepage of my provider already is unusable for me. There were
always issues when using Linux, but now not only Linux does cause
issues, but I'm unable to even find the location to download the bill.
It's an idiotic design, similar to Unity, much more evil than iOS.
There's no chance anymore to simply click something and to reach the
download link for the bill's PDF. Animated icons, an insane chaos.

The modern DE design has influences to the web design, it's a PITA. It
clearly does show that most people not really use the computer as a
tool, it seems to be a toy for most users. 



-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Jack and pulse?

2013-02-12 Thread Mike Holstein
http://www.adobe.com/software/flash/about/

you can read there..

" (Flash Player 11.2 is the last supported Flash Player version for Linux.
Adobe will continue to provide security updates.) "

what do i do? i run the chrome browser in 32bit linux.. chrome gets its own
flash.. again from the link..

" Chrome (Pepper-based Flash Player) 11.6.602.167 "

please, no comments or flames about chrome.. im not saying you should use
it, or that it is "good" or "better".. just stating the fact that if you
want current flash, chrome is providing that in linux, and from what i
read, that is 32bit chrome only.

i havent *ever* had issue with flash audio in ubuntu, ubuntustudio,,
pulseaudio, alsa only... cheers!


On Tue, Feb 12, 2013 at 3:18 PM, Mac  wrote:

> On Tue, Feb 12, 2013 at 3:10 PM, Ralf Mardorf
>  wrote:
> > On Tue, 2013-02-12 at 14:57 -0500, Mac wrote:
> >> 1.) If I start the browser content, then start qjackctrl, from that
> >> point on no audio from the jack side of the house. (The PA side still
> >> shows, in volume control that it's getting to PA.) I can avoid this by
> >> having a better memory and remembering to start qjack.
> >
> > This is also an issue without PA. I often used distros that fixed it by
> > default, today I don't care about this issue. It's possible to get rid
> > of the problem, but I don't know how, perhaps just following the flash
> > and gstreamer instruction does help: http://jackaudio.org/faq
>
> In the past I've toyed with the gstreamer solution. Works ok for one
> audio play. For example, when the song starts the divice shows up in
> qjack and can be patched to output. But, when the song ends, the
> device goes away and a new device appears for the next song. This
> appeared to be the default way most apps were using gstreamer to jack.
> I found no way around this behavior.
>
> >
> > However, at least flash won't work anymore for Linux in the near
> > future ;).
>
> Is flash going away?
>
> --
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>



-- 
MH

mikeholstein.info 
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Jack and pulse?

2013-02-12 Thread Mac
On Tue, Feb 12, 2013 at 3:10 PM, Ralf Mardorf
 wrote:
> On Tue, 2013-02-12 at 14:57 -0500, Mac wrote:
>> 1.) If I start the browser content, then start qjackctrl, from that
>> point on no audio from the jack side of the house. (The PA side still
>> shows, in volume control that it's getting to PA.) I can avoid this by
>> having a better memory and remembering to start qjack.
>
> This is also an issue without PA. I often used distros that fixed it by
> default, today I don't care about this issue. It's possible to get rid
> of the problem, but I don't know how, perhaps just following the flash
> and gstreamer instruction does help: http://jackaudio.org/faq

In the past I've toyed with the gstreamer solution. Works ok for one
audio play. For example, when the song starts the divice shows up in
qjack and can be patched to output. But, when the song ends, the
device goes away and a new device appears for the next song. This
appeared to be the default way most apps were using gstreamer to jack.
I found no way around this behavior.

>
> However, at least flash won't work anymore for Linux in the near
> future ;).

Is flash going away?

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Jack and pulse?

2013-02-12 Thread Ralf Mardorf
On Tue, 2013-02-12 at 14:57 -0500, Mac wrote:
> 1.) If I start the browser content, then start qjackctrl, from that
> point on no audio from the jack side of the house. (The PA side still
> shows, in volume control that it's getting to PA.) I can avoid this by
> having a better memory and remembering to start qjack.

This is also an issue without PA. I often used distros that fixed it by
default, today I don't care about this issue. It's possible to get rid
of the problem, but I don't know how, perhaps just following the flash
and gstreamer instruction does help: http://jackaudio.org/faq

However, at least flash won't work anymore for Linux in the near
future ;).

IIRC I once edited gstreamer, perhaps the method was a little bit
different, than it is described by the current FAQs.


-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Jack and pulse?

2013-02-12 Thread Mac
On 12.x when jack is started by qjackctrl, the local pulse audio
devices show up as sources and sinks.

I have not dug around and figured that out in depth. That's on my todo list.

In my case I also have an AF12 plugged into the firewire port, so in
addition to the pulse sinks/sources, 12 sinks and sources show up as
well.

In addition, I have some scripts that execute when qjack starts that
add and patch some other apps.

If I boot the pc and start qjack, then start a browser with audio
content, it comes through the PA source and goes to the rest. This
works just fine most of the time.

There two situations that cause me some grief:

1.) If I start the browser content, then start qjackctrl, from that
point on no audio from the jack side of the house. (The PA side still
shows, in volume control that it's getting to PA.) I can avoid this by
having a better memory and remembering to start qjack.

2.) If for some reason the stream from the browser dies, for example a
video goes into buffering for too long, the browser and jack appear to
be hung. (I've seen ffado go south in this case and I don't know how
to recover it live either.) In this case, my memory won't help...can't
predict network sluggishness.

In both situations, I've found no way to recover short of reboot.

Is there a way to recover in either case?

Regards,
Mac

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: pulse audio & jack

2012-11-17 Thread kaj . ailomaa


On Thu, Nov 15, 2012, at 01:43 PM, Mac wrote:
> On Wed, Nov 14, 2012 at 12:20 PM, Kaj Ailomaa 
> wrote:
>  The way it's automatically done, is by the combination of qjackctl
> using
> > dbus support with jackd2 (i.e. starting jackdbus), and having
> > pulseaudio-module-jack installed.
> > You can check out the source for pulseaudio-module-jack for specifics.
> >

This is the way it works on Ubuntu Studio, by default, but if you are
looking to do this manually, you might be better off looking at other
sources.

I don't know how it works (as I've never needed to). Found this
https://wiki.archlinux.org/index.php/PulseAudio/Examples#PulseAudio_through_JACK_the_new_new_way.
Hope it gives some insight.

> 
> I spent some time last evening looking at a variety of links on the
> web and looking through scripts in the /etc/pulse directory and others
> and was not able to connect the dots.
> 
> I will get the source for pulse and have a look at that. But, I
> suspect that will clarify how pulse itself works, I'm not sure if it
> will help me with the how the whole thing gets lashed together.
> 
> For instance, I found no specific in any of the scripts I looked at
> that indicated how, when the qjackctl Start button is clicked, the
> Pulse_sink/sources that appear (in my case, left/right front/rear, lf,
> aux1/2/3 front/rear, etc.) are specified. And why they are there, but,
> the mic in front/rear don't show up. Also, how all 12 ins/outs of the
> firewire device also show up, but the qjackctl setup calls this out,
> so I'm not surprised it is there.
> 
> -- 
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: pulse audio & jack

2012-11-15 Thread Mac
On Wed, Nov 14, 2012 at 12:20 PM, Kaj Ailomaa  wrote:
 The way it's automatically done, is by the combination of qjackctl using
> dbus support with jackd2 (i.e. starting jackdbus), and having
> pulseaudio-module-jack installed.
> You can check out the source for pulseaudio-module-jack for specifics.
>

I spent some time last evening looking at a variety of links on the
web and looking through scripts in the /etc/pulse directory and others
and was not able to connect the dots.

I will get the source for pulse and have a look at that. But, I
suspect that will clarify how pulse itself works, I'm not sure if it
will help me with the how the whole thing gets lashed together.

For instance, I found no specific in any of the scripts I looked at
that indicated how, when the qjackctl Start button is clicked, the
Pulse_sink/sources that appear (in my case, left/right front/rear, lf,
aux1/2/3 front/rear, etc.) are specified. And why they are there, but,
the mic in front/rear don't show up. Also, how all 12 ins/outs of the
firewire device also show up, but the qjackctl setup calls this out,
so I'm not surprised it is there.

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: pulse audio & jack

2012-11-14 Thread Mac
On Wed, Nov 14, 2012 at 1:47 PM, Ralf Mardorf
 wrote:
> On Wed, 2012-11-14 at 19:41 +0100, Josep Pujadas i Jubany wrote:
>> You need to stop/start/stop PulseAudio when using JACK.
>>
>> http://translate.google.com/translate?hl=en&sl=ca&tl=en&u=http%3A%2F%
>> 2Fwww.bellera.cat%2Fjosep%2Fumm%2Fconfiguraci_de_jack.html
>>
>> Like this if you have applications only compiled for using with
>> PulseAudio they will work also with JACK.
>>
>> Be careful with que scripts code. One of them is "Language system
>> sensitive.
>>
>> Tested/proved for Ubuntu Desktop 10.04 and also for 12.04.
>>
>> Regards,
>>
>> Josep Pujadas-Jubany
>
> The OP seems to like pulseaudio, however, if he shouldn't need it, I
> recommend to remove it. I removed pulseaudio from Precise and Quantal.
>

Actually, I have no feelings either way. When I started using Ubuntu
back at 8.x pulse combined with alsa seemed to be the source of lots
of issues.

When I installed UBStudio12.04 and the pulse sources/sinks just showed
up (along with my firewire devices) and just worked (with no
intervention by me) I was fine with that.

In fact, I never understood, why one would not want all the devices on
the PC to be available for connection in jack. For instance, if I have
12 chans of I/O on a firewire device, two mic inputs on the mobo, 5
chans of ouput on the mobo, and 2 chans of I/O on a usb device, why
wouldn't I want them to show up in jack?

I may never want to use the mobo mic input, but, I'd rather just
choose not to, rather than having to rip out this, that, and the other
thing before I can get to where I can add the mobo mic inputs.

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: pulse audio & jack

2012-11-14 Thread Bruno Tucunduva Ruviaro
On Wed, Nov 14, 2012 at 10:42 AM,
 wrote:

>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Ubuntu-Studio-users digest..."
>
>
> Today's Topics:
>
>1. Problem burning to DVDs (David King)
>2. Re: Problem burning to DVDs (Mac)
>3. Re: Problem burning to DVDs (Ralf Mardorf)
>4. Re: Problem burning to DVDs (Carl Raeside)
>5. pulse audio & jack (Mac)
>6. Re: pulse audio & jack (Ralf Mardorf)
>7. Re: pulse audio & jack (Kaj Ailomaa)
>8. Re: pulse audio & jack (Josep Pujadas i Jubany)
>
>
> --
>
> --
>
> Message: 5
> Date: Wed, 14 Nov 2012 10:27:09 -0500
> From: Mac 
> To: Ubuntu Studio Users Help and Discussion
> 
> Subject: pulse audio & jack
> Message-ID:
> 
> Content-Type: text/plain; charset=ISO-8859-1
>
> When I installed 12.04 UbStudio I was pleased to see pulse audio
> played nice with jack. (i.e. when qjackctl starts pulse sinks/sources
> show up by default).
>
> Is there any documentation or overview of how this is accomplished?
> I'd like to understand and possibly modify what shows up, etc.
>
> Or, can anyone post some ideas on where to start? (I googled a bit
> with little success.)
>
> On a related note: if I run/start qjackctl things work fine. If I then
> tell qjackctl to stop and choose yes/continue when it prompts about
> clients still connected it can't connect when I attempt to start it
> again. The message says it can't connect(or start) to the server.
>
> I'm guessing there are stale processes that are not allowing the
> restart, but, I'm not real sure where to begin to determine how to
> correctly stop jack so it doesn't get it's knickers in twist.
>
> Regards,
> Mac
>
>
>
> --
>
> Message: 6
> Date: Wed, 14 Nov 2012 18:11:33 +0100
> From: Ralf Mardorf 
> To: ubuntu-studio-users@lists.ubuntu.com
> Subject: Re: pulse audio & jack
> Message-ID: <1352913093.2050.67.camel@precise>
> Content-Type: text/plain; charset="UTF-8"
>
> On Wed, 2012-11-14 at 10:27 -0500, Mac wrote:
>> When I installed 12.04 UbStudio I was pleased to see pulse audio
>> played nice with jack. (i.e. when qjackctl starts pulse sinks/sources
>> show up by default).
>>
>> Is there any documentation or overview of how this is accomplished?
>> I'd like to understand and possibly modify what shows up, etc.
>>
>> Or, can anyone post some ideas on where to start? (I googled a bit
>> with little success.)
>>
>> On a related note: if I run/start qjackctl things work fine. If I then
>> tell qjackctl to stop and choose yes/continue when it prompts about
>> clients still connected it can't connect when I attempt to start it
>> again. The message says it can't connect(or start) to the server.
>>
>> I'm guessing there are stale processes that are not allowing the
>> restart, but, I'm not real sure where to begin to determine how to
>> correctly stop jack so it doesn't get it's knickers in twist.
>>
>> Regards,
>> Mac
>>
>
> Perhaps a DBUS thingy? If you start qjackctl, it will launch the script
> in /usr/bin, this script will turn off pulseaudio and than run
> qjackctl.real, the actually/real qjackctl. So when using qjackctl,
> pulseaudio shouldn't cause issues. DBUS might cause issues.
>
> Regards,
> Ralf
>
>
>
>
> --
>
> Message: 7
> Date: Wed, 14 Nov 2012 18:20:59 +0100
> From: "Kaj Ailomaa" 
> To: "Ubuntu Studio Users Help and Discussion"
> 
> Subject: Re: pulse audio & jack
> Message-ID: 
> Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes
>
> On Wed, 14 Nov 2012 16:27:09 +0100, Mac  wrote:
>
>> When I installed 12.04 UbStudio I was pleased to see pulse audio
>> played nice with jack. (i.e. when qjackctl starts pulse sinks/sources
>> show up by default).
>>
>> Is there any documentation or overview of how this is accomplished?
>> I'd like to understand and possibly modify what shows up, etc.
>>
>
> The way it's automatically done, is by the combination of qjackctl using
> dbus support with jackd2 (i.e. starting jackdbus), and having
> pulseaudio-module-jack installed.
> You can check out the source for pulseaudio-module-jack for specifics.
>
>> Or, can anyone post some ideas on where to start? (I

Re: pulse audio & jack

2012-11-14 Thread Ralf Mardorf
On Wed, 2012-11-14 at 19:41 +0100, Josep Pujadas i Jubany wrote:
> You need to stop/start/stop PulseAudio when using JACK.
> 
> http://translate.google.com/translate?hl=en&sl=ca&tl=en&u=http%3A%2F%
> 2Fwww.bellera.cat%2Fjosep%2Fumm%2Fconfiguraci_de_jack.html
> 
> Like this if you have applications only compiled for using with
> PulseAudio they will work also with JACK.
> 
> Be careful with que scripts code. One of them is "Language system
> sensitive.
> 
> Tested/proved for Ubuntu Desktop 10.04 and also for 12.04.
> 
> Regards,
> 
> Josep Pujadas-Jubany

The OP seems to like pulseaudio, however, if he shouldn't need it, I
recommend to remove it. I removed pulseaudio from Precise and Quantal.



-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: pulse audio & jack

2012-11-14 Thread Josep Pujadas i Jubany
You need to stop/start/stop PulseAudio when using JACK.

http://translate.google.com/translate?hl=en&sl=ca&tl=en&u=http%3A%2F%2Fwww.bellera.cat%2Fjosep%2Fumm%2Fconfiguraci_de_jack.html

Like this if you have applications only compiled for using with PulseAudio
they will work also with JACK.

Be careful with que scripts code. One of them is "Language system sensitive.

Tested/proved for Ubuntu Desktop 10.04 and also for 12.04.

Regards,

Josep Pujadas-Jubany


2012/11/14 Kaj Ailomaa 

> On Wed, 14 Nov 2012 16:27:09 +0100, Mac  wrote:
>
>  When I installed 12.04 UbStudio I was pleased to see pulse audio
>> played nice with jack. (i.e. when qjackctl starts pulse sinks/sources
>> show up by default).
>>
>> Is there any documentation or overview of how this is accomplished?
>> I'd like to understand and possibly modify what shows up, etc.
>>
>>
> The way it's automatically done, is by the combination of qjackctl using
> dbus support with jackd2 (i.e. starting jackdbus), and having
> pulseaudio-module-jack installed.
> You can check out the source for pulseaudio-module-jack for specifics.
>
>  Or, can anyone post some ideas on where to start? (I googled a bit
>> with little success.)
>>
>> On a related note: if I run/start qjackctl things work fine. If I then
>> tell qjackctl to stop and choose yes/continue when it prompts about
>> clients still connected it can't connect when I attempt to start it
>> again. The message says it can't connect(or start) to the server.
>>
>> I'm guessing there are stale processes that are not allowing the
>> restart, but, I'm not real sure where to begin to determine how to
>> correctly stop jack so it doesn't get it's knickers in twist.
>>
>>
> This is a bug, that hopefully will be fixed in both 12.04 and 12.10 soon.
>
>  Regards,
>> Mac
>>
>
> --
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.**ubuntu.com
> Modify settings or unsubscribe at: https://lists.ubuntu.com/**
> mailman/listinfo/ubuntu-**studio-users<https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users>
>
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: pulse audio & jack

2012-11-14 Thread Kaj Ailomaa

On Wed, 14 Nov 2012 16:27:09 +0100, Mac  wrote:


When I installed 12.04 UbStudio I was pleased to see pulse audio
played nice with jack. (i.e. when qjackctl starts pulse sinks/sources
show up by default).

Is there any documentation or overview of how this is accomplished?
I'd like to understand and possibly modify what shows up, etc.



The way it's automatically done, is by the combination of qjackctl using  
dbus support with jackd2 (i.e. starting jackdbus), and having  
pulseaudio-module-jack installed.

You can check out the source for pulseaudio-module-jack for specifics.


Or, can anyone post some ideas on where to start? (I googled a bit
with little success.)

On a related note: if I run/start qjackctl things work fine. If I then
tell qjackctl to stop and choose yes/continue when it prompts about
clients still connected it can't connect when I attempt to start it
again. The message says it can't connect(or start) to the server.

I'm guessing there are stale processes that are not allowing the
restart, but, I'm not real sure where to begin to determine how to
correctly stop jack so it doesn't get it's knickers in twist.



This is a bug, that hopefully will be fixed in both 12.04 and 12.10 soon.


Regards,
Mac


--
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: pulse audio & jack

2012-11-14 Thread Ralf Mardorf
On Wed, 2012-11-14 at 10:27 -0500, Mac wrote:
> When I installed 12.04 UbStudio I was pleased to see pulse audio
> played nice with jack. (i.e. when qjackctl starts pulse sinks/sources
> show up by default).
> 
> Is there any documentation or overview of how this is accomplished?
> I'd like to understand and possibly modify what shows up, etc.
> 
> Or, can anyone post some ideas on where to start? (I googled a bit
> with little success.)
> 
> On a related note: if I run/start qjackctl things work fine. If I then
> tell qjackctl to stop and choose yes/continue when it prompts about
> clients still connected it can't connect when I attempt to start it
> again. The message says it can't connect(or start) to the server.
> 
> I'm guessing there are stale processes that are not allowing the
> restart, but, I'm not real sure where to begin to determine how to
> correctly stop jack so it doesn't get it's knickers in twist.
> 
> Regards,
> Mac
> 

Perhaps a DBUS thingy? If you start qjackctl, it will launch the script
in /usr/bin, this script will turn off pulseaudio and than run
qjackctl.real, the actually/real qjackctl. So when using qjackctl,
pulseaudio shouldn't cause issues. DBUS might cause issues.

Regards,
Ralf


-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


pulse audio & jack

2012-11-14 Thread Mac
When I installed 12.04 UbStudio I was pleased to see pulse audio
played nice with jack. (i.e. when qjackctl starts pulse sinks/sources
show up by default).

Is there any documentation or overview of how this is accomplished?
I'd like to understand and possibly modify what shows up, etc.

Or, can anyone post some ideas on where to start? (I googled a bit
with little success.)

On a related note: if I run/start qjackctl things work fine. If I then
tell qjackctl to stop and choose yes/continue when it prompts about
clients still connected it can't connect when I attempt to start it
again. The message says it can't connect(or start) to the server.

I'm guessing there are stale processes that are not allowing the
restart, but, I'm not real sure where to begin to determine how to
correctly stop jack so it doesn't get it's knickers in twist.

Regards,
Mac

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse Audio and Jack in Maverick

2010-09-03 Thread Mike Holstein
i like it... so does anyone plan on taking out, or disabling the internal
sound in their box and using a firewire interface for all sound? i have
a separate studio box, but i'm interested in other how other folks might use
this... the pulse networking is a great idea..

On Fri, Sep 3, 2010 at 11:17 PM, Takashi Sakamoto
wrote:

> (2010/09/04 11:20), Mike Holstein wrote:
> > what are you guys finding useful about integrating pulse into JACK??
>
> 0. Ubuntu's default sound system is PulseAudio and ALSA. If you can
> connect PulseAudio to JACK, you can use JACK and FFADO like default
> sound system.
>
> 1. Then firewire sound device user can use web services like ustream,
> youtube (with flash script) or pulseaudio applications like skype.
>
> 2. So You can use the sounds from JACK application for ustream or skype.
>
> 3. And You can utilize PulseAudio's networking with JACK.
>
> have any useful ideas, guys?
>
>
> Takashi Sakamoto
> o-taka...@sakamocchi.jp
>
> --
> Ubuntu-Studio-devel mailing list
> ubuntu-studio-de...@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-devel
>



-- 
MH
http://www.myspace.com/mikeholstein

http://opensourcemusician.libsyn.com/
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse Audio and Jack in Maverick

2010-09-03 Thread Takashi Sakamoto
(2010/09/04 11:20), Mike Holstein wrote:
> what are you guys finding useful about integrating pulse into JACK??

0. Ubuntu's default sound system is PulseAudio and ALSA. If you can
connect PulseAudio to JACK, you can use JACK and FFADO like default
sound system.

1. Then firewire sound device user can use web services like ustream,
youtube (with flash script) or pulseaudio applications like skype.

2. So You can use the sounds from JACK application for ustream or skype.

3. And You can utilize PulseAudio's networking with JACK.

have any useful ideas, guys?


Takashi Sakamoto
o-taka...@sakamocchi.jp

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse Audio and Jack in Maverick

2010-09-03 Thread Mike Holstein
what are you guys finding useful about integrating pulse into JACK??

On Fri, Sep 3, 2010 at 10:16 PM, Takashi Sakamoto
wrote:

> You can see this integration on http://ubuntustudio.org/LucidLynx as
> "Pulse Audio built against Jack is available".
>
> This integration is for lucid or later because "pulseaudio-module-jack"
> package is not released for karmic or latter refering to this URL,
> http://packages.ubuntu.com/lucid/pulseaudio-module-jack
>
> I'm a Japanese user of Ubuntu Studio and make some documents in Japanese
> community. Last week I make a document about this PulseAudio integration.
>
> https://wiki.ubuntulinux.jp/UbuntuStudioTips/Application/JACK-PulseAudio
>
> In this document. I suggest to use qjackctl option "Execute script after
> Setup" instead of config file. If you check this option and input two
> commands, you can get "PulseAudio against JACK", load this module just
> after JACK runnning.
>
> If you are interested, read it with web translation service like google
> or yahoo with plain text.
>
> Thks
>
>
> Takashi Sakamoto
> o-taka...@sakamocchi.jp
>
>
> (2010/09/04 08:15), tto...@ttoine.net wrote:
> >
> >
> > Le 03/09/2010 23:11, Marc R.J. Brevoort a écrit :
> >> On Fri, 3 Sep 2010, tto...@ttoine.net wrote:
> >>
> >>
> >>> I just saw in the Maverick beta wiki pages that in Ubuntu Studio
> >>> Maverick, some work has been done for better integration between
> >>> PulseAudio and Jackd. Is it available for vanilla Ubuntu too ?
> >>> If not, does this need to install a specific package, or is there a
> >>> tweak we can document for non "Studio" users? I ask that because I am
> >>> downloading Maverick beta at the moment, but not the Studio, the
> >>> standard one, with the aim to test and document that important point!
> >>>
> >> I've just set up a system that plays back pulseaudio over jack over
> >> ALSA on Lucid.
> >> The following are not step-by-step instructions but may help you
> >> get started.
> >>
> >> You'll need pulseaudio-module-jack, the regular set of
> >> jack util packages;
> >>
> >> ~/.asoundrc containing this:
> >> pcm.pulse {
> >>   type pulse
> >> }
> >> ctl.pulse {
> >>   type pulse
> >> }
> >> pcm.!default {
> >>   type pulse
> >> }
> >> ctl.!default {
> >>   type pulse
> >> }
> >>
> >> follow the recommendations that qjackctl gives you when trying to start
> >> it and failing;
> >>
> >> create two files,
> >>
> >> 1. ~/bin/jack.pa containing the following:
> >>
> >> #!/bin/bash
> >> # (two following lines matter most)
> >> pactl load-module module-jack-sink
> >> pactl load-module module-jack-source
> >>
> >> pactl load-module module-native-protocol-unix
> >> pactl load-module module-volume-restore
> >> pactl load-module module-default-device-restore
> >> pactl load-module module-rescue-streams
> >> pactl load-module module-suspend-on-idle
> >>
> >> 2. a file ~/bin/startjack containing this:
> >> #!/bin/bash
> >> /usr/bin/jackd -dalsa -dhw:0 -r44100 -p1024 -n2
> >>
> >> (which is the line shown by qjackctl after successful startup)
> >>
> >> give both file execute permissions;
> >>
> >> chmod +x ~/bin/*
> >>
> >> and add them as startup programs.
> >>
> >> re-login, in sound preferences set "Jack sink" as
> >> default audio device.
> >>
> >> Thus you'll have a system that (in theory) directs all its audio
> >> through JACK.
> >>
> >> One minor thing is that when starting qjackctl, pulseaudio is
> >> suspended, which is not ideal. As you're running the jack
> >> daemon as startup program, You'll also want to tell qjackctl
> >> not to terminate jack on exiting.
> >>
> >> I hope this is of some use to you even though terribly
> >> incomplete and written up from memory too so probably full
> >> of errors.
> >>
> >> Best,
> >> Marc
> >>
> >>
> > What would be better, would be to see in the audio/sound preferences a
> > "jackd" sound card, and manually choose it if necessary. This is not
> > always good to have all applications on jackd. And Pulse Audio will
> > remember this choice every time jackd is launched, as it does when you
> > plug an usb sound card.
> >
> > Will try that this week-end, or next week, and let you know. This is one
> > of the most important stuff, with firewire, for Maverick, imho.
> >
> > Toine
>
> --
> Ubuntu-Studio-devel mailing list
> ubuntu-studio-de...@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-devel
>



-- 
MH
http://www.myspace.com/mikeholstein

http://opensourcemusician.libsyn.com/
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse Audio and Jack in Maverick

2010-09-03 Thread Takashi Sakamoto
You can see this integration on http://ubuntustudio.org/LucidLynx as
"Pulse Audio built against Jack is available".

This integration is for lucid or later because "pulseaudio-module-jack"
package is not released for karmic or latter refering to this URL,
http://packages.ubuntu.com/lucid/pulseaudio-module-jack

I'm a Japanese user of Ubuntu Studio and make some documents in Japanese
community. Last week I make a document about this PulseAudio integration.

https://wiki.ubuntulinux.jp/UbuntuStudioTips/Application/JACK-PulseAudio

In this document. I suggest to use qjackctl option "Execute script after
Setup" instead of config file. If you check this option and input two
commands, you can get "PulseAudio against JACK", load this module just
after JACK runnning.

If you are interested, read it with web translation service like google
or yahoo with plain text.

Thks


Takashi Sakamoto
o-taka...@sakamocchi.jp


(2010/09/04 08:15), tto...@ttoine.net wrote:
> 
> 
> Le 03/09/2010 23:11, Marc R.J. Brevoort a écrit :
>> On Fri, 3 Sep 2010, tto...@ttoine.net wrote:
>>
>>
>>> I just saw in the Maverick beta wiki pages that in Ubuntu Studio
>>> Maverick, some work has been done for better integration between
>>> PulseAudio and Jackd. Is it available for vanilla Ubuntu too ?
>>> If not, does this need to install a specific package, or is there a
>>> tweak we can document for non "Studio" users? I ask that because I am
>>> downloading Maverick beta at the moment, but not the Studio, the
>>> standard one, with the aim to test and document that important point!
>>>  
>> I've just set up a system that plays back pulseaudio over jack over
>> ALSA on Lucid.
>> The following are not step-by-step instructions but may help you
>> get started.
>>
>> You'll need pulseaudio-module-jack, the regular set of
>> jack util packages;
>>
>> ~/.asoundrc containing this:
>> pcm.pulse {
>>   type pulse
>> }
>> ctl.pulse {
>>   type pulse
>> }
>> pcm.!default {
>>   type pulse
>> }
>> ctl.!default {
>>   type pulse
>> }
>>
>> follow the recommendations that qjackctl gives you when trying to start
>> it and failing;
>>
>> create two files,
>>
>> 1. ~/bin/jack.pa containing the following:
>>
>> #!/bin/bash
>> # (two following lines matter most)
>> pactl load-module module-jack-sink
>> pactl load-module module-jack-source
>>
>> pactl load-module module-native-protocol-unix
>> pactl load-module module-volume-restore
>> pactl load-module module-default-device-restore
>> pactl load-module module-rescue-streams
>> pactl load-module module-suspend-on-idle
>>
>> 2. a file ~/bin/startjack containing this:
>> #!/bin/bash
>> /usr/bin/jackd -dalsa -dhw:0 -r44100 -p1024 -n2
>>
>> (which is the line shown by qjackctl after successful startup)
>>
>> give both file execute permissions;
>>
>> chmod +x ~/bin/*
>>
>> and add them as startup programs.
>>
>> re-login, in sound preferences set "Jack sink" as
>> default audio device.
>>
>> Thus you'll have a system that (in theory) directs all its audio
>> through JACK.
>>
>> One minor thing is that when starting qjackctl, pulseaudio is
>> suspended, which is not ideal. As you're running the jack
>> daemon as startup program, You'll also want to tell qjackctl
>> not to terminate jack on exiting.
>>
>> I hope this is of some use to you even though terribly
>> incomplete and written up from memory too so probably full
>> of errors.
>>
>> Best,
>> Marc
>>
>>
> What would be better, would be to see in the audio/sound preferences a 
> "jackd" sound card, and manually choose it if necessary. This is not 
> always good to have all applications on jackd. And Pulse Audio will 
> remember this choice every time jackd is launched, as it does when you 
> plug an usb sound card.
> 
> Will try that this week-end, or next week, and let you know. This is one 
> of the most important stuff, with firewire, for Maverick, imho.
> 
> Toine

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


JACK/Pulse Audio Integration in Maverick

2010-06-29 Thread Scott Lavender
Greetings,

I did some testing of the JACK and Pulse Audio integration with D-BUS in
Maverick along with some of what was required to arrive at that juncture.

For those who are curious you can read about it at:
http://dullass.blogspot.com/

I hope you enjoy it.

Regards,
ScottL
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: disabling pulse audio in 9.10?

2009-12-08 Thread Oleg Ivanenko
Hi, Iain!

I tried both way simultaneously, so can't affirm for certain, but,
yes, I believe that xfce is not using pulseadio. May be somebody
correct me.


2009/12/8 Iain Duncan :
> Thanks, I was going to switch to xfce actually, thought I'll keep gnome on
> there too for ohter purposes. Does the pulse daemon just plain not get used
> by xfce?
> thanks
> Iain
>
> On Tue, Dec 8, 2009 at 10:59 AM, Oleg Ivanenko  wrote:
>>
>> Hi, Iain!
>>
>> My setup
>>
>> 1. Switch off /apps/gnome_settings_daemon/plugins/sound/active in
>> gconf-editor
>>
>> 2. Switch off Gnome sounding at all in gnome-volume-control(I believe so)
>>
>> 3. Create file ~/.pulse/client.conf consists of
>> autospawn=no
>>
>> 4. killall -KILL pulseaudio
>>
>> 5. start jackd with qjackctl
>>
>> Alternative way: install xubuntu over ubuntustudio and use xfce
>> instead Gnome :)))
>>
>>
>> 2009/12/8 Iain Duncan :
>> > Hey folks, wondering if anyone knows what would be different for
>> > disabling
>> > pulseaudio for 9.10. I've managed to get it so it doesn't restart,
>> > following
>> > these:
>> >
>> >
>> > http://idyllictux.wordpress.com/2009/04/21/ubuntu-904-jaunty-keeping-the-beast-pulseaudio-at-bay/
>> > http://ubuntuforums.org/showthread.php?t=1348604
>> >
>> > But it's still running on startup even though I removed all the
>> > runlevels
>> > using sysv-rc-conf
>> >
>> > Not sure if I'm doing something wrong or the above are just out of date,
>> > any
>> > help appreciated. I'd like it be a strictly jack on alsa setup.
>> >
>> > Thanks!
>> > Iain
>> >
>> > --
>> > Ubuntu-Studio-users mailing list
>> > Ubuntu-Studio-users@lists.ubuntu.com
>> > Modify settings or unsubscribe at:
>> > https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>> >
>> >
>>
>>
>>
>> --
>> Truly yours, Oleg Ivanenko aka Ash
>> [if it wasn't so sad, it would be funny]
>>
>> --
>> Ubuntu-Studio-users mailing list
>> Ubuntu-Studio-users@lists.ubuntu.com
>> Modify settings or unsubscribe at:
>> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>
>
> --
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>
>



-- 
Truly yours, Oleg Ivanenko aka Ash
[if it wasn't so sad, it would be funny]

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: disabling pulse audio in 9.10?

2009-12-08 Thread Iain Duncan
Thanks, I was going to switch to xfce actually, thought I'll keep gnome on
there too for ohter purposes. Does the pulse daemon just plain not get used
by xfce?

thanks
Iain

On Tue, Dec 8, 2009 at 10:59 AM, Oleg Ivanenko  wrote:

> Hi, Iain!
>
> My setup
>
> 1. Switch off /apps/gnome_settings_daemon/plugins/sound/active in
> gconf-editor
>
> 2. Switch off Gnome sounding at all in gnome-volume-control(I believe so)
>
> 3. Create file ~/.pulse/client.conf consists of
> autospawn=no
>
> 4. killall -KILL pulseaudio
>
> 5. start jackd with qjackctl
>
> Alternative way: install xubuntu over ubuntustudio and use xfce
> instead Gnome :)))
>
>
> 2009/12/8 Iain Duncan :
> > Hey folks, wondering if anyone knows what would be different for
> disabling
> > pulseaudio for 9.10. I've managed to get it so it doesn't restart,
> following
> > these:
> >
> >
> http://idyllictux.wordpress.com/2009/04/21/ubuntu-904-jaunty-keeping-the-beast-pulseaudio-at-bay/
> > http://ubuntuforums.org/showthread.php?t=1348604
> >
> > But it's still running on startup even though I removed all the runlevels
> > using sysv-rc-conf
> >
> > Not sure if I'm doing something wrong or the above are just out of date,
> any
> > help appreciated. I'd like it be a strictly jack on alsa setup.
> >
> > Thanks!
> > Iain
> >
> > --
> > Ubuntu-Studio-users mailing list
> > Ubuntu-Studio-users@lists.ubuntu.com
> > Modify settings or unsubscribe at:
> > https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
> >
> >
>
>
>
> --
> Truly yours, Oleg Ivanenko aka Ash
> [if it wasn't so sad, it would be funny]
>
> --
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: disabling pulse audio in 9.10?

2009-12-08 Thread Oleg Ivanenko
Hi, Iain!

My setup

1. Switch off /apps/gnome_settings_daemon/plugins/sound/active in gconf-editor

2. Switch off Gnome sounding at all in gnome-volume-control(I believe so)

3. Create file ~/.pulse/client.conf consists of
autospawn=no

4. killall -KILL pulseaudio

5. start jackd with qjackctl

Alternative way: install xubuntu over ubuntustudio and use xfce
instead Gnome :)))


2009/12/8 Iain Duncan :
> Hey folks, wondering if anyone knows what would be different for disabling
> pulseaudio for 9.10. I've managed to get it so it doesn't restart, following
> these:
>
> http://idyllictux.wordpress.com/2009/04/21/ubuntu-904-jaunty-keeping-the-beast-pulseaudio-at-bay/
> http://ubuntuforums.org/showthread.php?t=1348604
>
> But it's still running on startup even though I removed all the runlevels
> using sysv-rc-conf
>
> Not sure if I'm doing something wrong or the above are just out of date, any
> help appreciated. I'd like it be a strictly jack on alsa setup.
>
> Thanks!
> Iain
>
> --
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>
>



-- 
Truly yours, Oleg Ivanenko aka Ash
[if it wasn't so sad, it would be funny]

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: disabling pulse audio in 9.10?

2009-12-08 Thread sandie
Iain Duncan wrote:
> Hey folks, wondering if anyone knows what would be different for 
> disabling pulseaudio for 9.10. I've managed to get it so it doesn't 
> restart, following these:
>
> http://idyllictux.wordpress.com/2009/04/21/ubuntu-904-jaunty-keeping-the-beast-pulseaudio-at-bay/
> http://ubuntuforums.org/showthread.php?t=1348604
>
> But it's still running on startup even though I removed all the 
> runlevels using sysv-rc-conf
>
> Not sure if I'm doing something wrong or the above are just out of 
> date, any help appreciated. I'd like it be a strictly jack on alsa setup.
>
> Thanks!
> Iain
I use this : http://www.sandgreen.dk/index.php?side=python_uat to remove 
Pulse completely. It's a work in progress but it works for me (YMMV).

If you have any problems, please let me know so I can improve it.

Sandie

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


disabling pulse audio in 9.10?

2009-12-07 Thread Iain Duncan
Hey folks, wondering if anyone knows what would be different for disabling
pulseaudio for 9.10. I've managed to get it so it doesn't restart, following
these:

http://idyllictux.wordpress.com/2009/04/21/ubuntu-904-jaunty-keeping-the-beast-pulseaudio-at-bay/
http://ubuntuforums.org/showthread.php?t=1348604

But it's still running on startup even though I removed all the runlevels
using sysv-rc-conf

Not sure if I'm doing something wrong or the above are just out of date, any
help appreciated. I'd like it be a strictly jack on alsa setup.

Thanks!
Iain
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Linux DAW on powerpc (was "pulse?")

2009-01-28 Thread Sean Edwards
If you are not afraid of the command line, ecasound would work just fine on 
this.



- Original Message 
> With the apps available today, I would say yes it is too slow. You'd probably 
> want a minimum of a G4 
> 1.42Ghz. A dual CPU G4 as low as 800MHz may work well enough if you were to 
> use a minimal desktop 
> environment, shut down unneeded services, etc.

-=Sean Edwards=-



  

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-27 Thread Luke Yelavich
On Sun, Jan 25, 2009 at 07:29:02PM EST, alex stone wrote:
> You're completely off the mark with Ubuntu ppc. It's already done, and
> works, maintained as a community project. Package selection is large (as
> large as any other ubuntu from what i can see), and one can install from
> source without a hassle. I have RG 1.7.3svn running on my G4 a.k.a. UBUNTU
> HARDY PPC, as well as ardour 2, AND ardour 3. All installed from source
> without any extra pain or hassle. (Only missing the RT kernel)

There is a chance that we may have an RT kernel for jaunty. It may not be in 
the repositories, but I would like to at least make an RT kernel available to 
play with for PowerPC users, since we seem 
to have a few more around here these days, which IMO is great. :)

Luke


signature.asc
Description: Digital signature
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Linux DAW on powerpc (was "pulse?")

2009-01-27 Thread Luke Yelavich
On Sun, Jan 25, 2009 at 11:59:52PM EST, Khashayar Naderehvandi wrote:
> >
> > You're completely off the mark with Ubuntu ppc. It's already done, and
> > works, maintained as a community project. Package selection is large (as
> > large as any other ubuntu from what i can see), and one can install from
> > source without a hassle. I have RG 1.7.3svn running on my G4 a.k.a. UBUNTU
> > HARDY PPC, as well as ardour 2, AND ardour 3. All installed from source
> > without any extra pain or hassle. (Only missing the RT kernel)
> >
> This sounds interesting.
> I have an old iBook G4 with 768M of ram, running as a sort of server
> currently. Would you recommend that machine as a Linux DAW instead? I
> always thought it would be too slow for that sort of thing.

With the apps available today, I would say yes it is too slow. You'd probably 
want a minimum of a G4 1.42Ghz. A dual CPU G4 as low as 800MHz may work well 
enough if you were to use a minimal desktop 
environment, shut down unneeded services, etc.

Luke


signature.asc
Description: Digital signature
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-27 Thread sandie
Eric Hedekar wrote:
>
>
> Here's a nice Youtube tutorial for the beginner packager that I found 
> very helpful when starting out: 
> http://www.youtube.com/watch?v=zKLabbXTqMc
>

Thanks for the link. I had a look at the video, but I'm still not sure 
where to start.
I also spent most of the day fiddling with Python/Glade and it seams 
approachable, and have even made my wineasio-script as a 
phyton-gui-thingie :-) (a work in progress).

I realy like to help out, but being new to this I'm a little lost, what 
do I do now... should I join the dev-list or just go to irc and find 
someone to ask for directions ?

/Sandie

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread Cory K.
Eric Hedekar wrote:
> It should be noted that writing new programs (in C++, pascal, python,
> lolcode, or any other language) probably isn't the best way to help
> UbuntuStudio (keep in mind, I'm not a dev, but this is what I've been told
> from MMA).

_MMA_ is me on IRC. ;) And *generally* I agree. But is there's simple
things we can add to Ubuntu Studio Controls (done in Python) that would
help people after install I'm all for it.

> Packaging and maintaining packages is probably more benificial
> to the project, and it's signifcantly less work than writing new programs.

Keeping packages up-to-date is probably our #1 request (with the whole
JACK/Pulse thing a close 1.5). We have a *little* more help now on the
packaging front but it would be great to get 1 more like Khashayar.


-Cory K.


-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread Eric Hedekar
On Mon, Jan 26, 2009 at 2:04 PM, sandie  wrote:

> Cory K. wrote:
> >
> > Pulse already shuts off so JACK can start now. As for the WINE part, I
> > have no clue. I don't use it.
> >
> >
> I do :-) and I seriously dont think I'm the only one ?
> > In the end, there are *MANY* things that can be done so that things run
> > smoother for all. Even is they are done by the user later, we can make
> > it easier. Getting involved with Ubuntu Studio Controls
> > (https://launchpad.net/ubuntustudio-controls) is one place. Our
> > resources are so finite it's crazy. You guys just don't know how thin we
> > are stretched. For things to really get better we need more users to
> > turn developers. Nobody wants to hear it but it's true. I was one.
> > Khashayar is our most recent.
> >
> >
> I have nothing but respect for UbuntuStudio, it has been my main os
> since Feisty. I try out other distros once in a while, just to learn
> something new, and none of them comes close to the level of perfection
> that UbuntuStudio has.
>
> I wish I could do more to help, but theres a long way from making a
> simple script to actualy develop something usefull. I know a little
> Pascal, and have tried to learn things like C+, but my head hurts when I
> try to wrap my brain around it, even compiling a new kernel leaves me
> baffled :-)
>
> As I mentioned before, I don't hate Pulse, I just cant use it in its
> current state, and althou it might be a "quick fix", I see a
> Pulse-on/off script/program as a temporarely solution so more will be
> able to use UbuntuStudio.
>
> /Sandie
>

It should be noted that writing new programs (in C++, pascal, python,
lolcode, or any other language) probably isn't the best way to help
UbuntuStudio (keep in mind, I'm not a dev, but this is what I've been told
from MMA).  Packaging and maintaining packages is probably more benificial
to the project, and it's signifcantly less work than writing new programs.

Here's a nice Youtube tutorial for the beginner packager that I found very
helpful when starting out: http://www.youtube.com/watch?v=zKLabbXTqMc

-Eric



-- 
___
http://greyrockstudio.blogspot.com
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread Larry David
Ok noob trying to get up to speed here - respond or not as patience  
and inclination dictate...

I looked up Pulse and it sounds great.  And it sounds like it doesn't  
work entirely - based on wikipedia and this thread.  In a nutshell  
(or a c shell, hardy har har - oh "hardy", there's another one, I  
kill myself...) what is possible with Pulse that is not possible  
without it?  Just trying to decide if I would really need it or not...

ld
(not *that* Larry David; actually far cooler and better looking - and  
younger!)

On Jan 26, 2009, at 5:04 PM, sandie wrote:

> Cory K. wrote:
>>
>> Pulse already shuts off so JACK can start now. As for the WINE  
>> part, I
>> have no clue. I don't use it.
>>
>>
> I do :-) and I seriously dont think I'm the only one ?
>> In the end, there are *MANY* things that can be done so that  
>> things run
>> smoother for all. Even is they are done by the user later, we can  
>> make
>> it easier. Getting involved with Ubuntu Studio Controls
>> (https://launchpad.net/ubuntustudio-controls) is one place. Our
>> resources are so finite it's crazy. You guys just don't know how  
>> thin we
>> are stretched. For things to really get better we need more users to
>> turn developers. Nobody wants to hear it but it's true. I was one.
>> Khashayar is our most recent.
>>
>>
> I have nothing but respect for UbuntuStudio, it has been my main os
> since Feisty. I try out other distros once in a while, just to learn
> something new, and none of them comes close to the level of perfection
> that UbuntuStudio has.
>
> I wish I could do more to help, but theres a long way from making a
> simple script to actualy develop something usefull. I know a little
> Pascal, and have tried to learn things like C+, but my head hurts  
> when I
> try to wrap my brain around it, even compiling a new kernel leaves me
> baffled :-)
>
> As I mentioned before, I don't hate Pulse, I just cant use it in its
> current state, and althou it might be a "quick fix", I see a
> Pulse-on/off script/program as a temporarely solution so more will be
> able to use UbuntuStudio.
>
> /Sandie
>
> -- 
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/ 
> listinfo/ubuntu-studio-users


-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread sandie
Cory K. wrote:
>
> Pulse already shuts off so JACK can start now. As for the WINE part, I
> have no clue. I don't use it.
>
>   
I do :-) and I seriously dont think I'm the only one ?
> In the end, there are *MANY* things that can be done so that things run
> smoother for all. Even is they are done by the user later, we can make
> it easier. Getting involved with Ubuntu Studio Controls
> (https://launchpad.net/ubuntustudio-controls) is one place. Our
> resources are so finite it's crazy. You guys just don't know how thin we
> are stretched. For things to really get better we need more users to
> turn developers. Nobody wants to hear it but it's true. I was one.
> Khashayar is our most recent.
>
>   
I have nothing but respect for UbuntuStudio, it has been my main os 
since Feisty. I try out other distros once in a while, just to learn 
something new, and none of them comes close to the level of perfection 
that UbuntuStudio has.

I wish I could do more to help, but theres a long way from making a 
simple script to actualy develop something usefull. I know a little 
Pascal, and have tried to learn things like C+, but my head hurts when I 
try to wrap my brain around it, even compiling a new kernel leaves me 
baffled :-)

As I mentioned before, I don't hate Pulse, I just cant use it in its 
current state, and althou it might be a "quick fix", I see a 
Pulse-on/off script/program as a temporarely solution so more will be 
able to use UbuntuStudio.

/Sandie

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread Cory K.
sandie wrote:
> I can understand the reason not to make a non-pulse Ubustu dist, at 
> least from a developers point of view, but as a mucissian who just want 
> to make music, I need a stable working enviroment

A "JACK" only Ubuntu Studio has certainly been thrown around. (and is
still not out of the realm of possibility) It's a much tougher decision
to make than you know. While music folk are for sure our largest user
base I have many emails from teachers/artists and the like talking about
using Studio. Mostly from the "I didn't know about these apps." standpoint.

*Countless* bugs and ML posts would ensue from people wondering "Why
doesn't app "X" work in Studio? It works in Ubuntu!" I'm just not ready
to go there. (yet) Breaking (in other users eyes) other apps so things
are better for JACK users.


> and until wine and jackd can "speak pulse", I defenitly think that the need 
> for a simple script/program that can make the switch from pulse to Alsa (and 
> back again).

Pulse already shuts off so JACK can start now. As for the WINE part, I
have no clue. I don't use it.


In the end, there are *MANY* things that can be done so that things run
smoother for all. Even is they are done by the user later, we can make
it easier. Getting involved with Ubuntu Studio Controls
(https://launchpad.net/ubuntustudio-controls) is one place. Our
resources are so finite it's crazy. You guys just don't know how thin we
are stretched. For things to really get better we need more users to
turn developers. Nobody wants to hear it but it's true. I was one.
Khashayar is our most recent.

So we do what we can within a given release. Our only other alternative
is to board up shop. Close it down. And I feel that would be a shame as
the Ubuntu brand has brought alot of light to our corner of the world.
Shame to lose it.

This have improved *greatly* since the Feisty days. Progress is slower
than most would like but without the same resources as Canonical ,
Microsoft or Apple, it is what it is.


-Cory K.

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread sandie
Hartmut Noack wrote:
> Ubuntu should have jackd-support for pulse and xinelib to be installed
> point and klick !!!
>
>   
Jackd-support for pulse is only part of the problem, I have also had 
problems with wine/wineasio in a pulse enviroment. It might be a wine 
issue, but since it works with Alsa, that is what I use.

I can understand the reason not to make a non-pulse Ubustu dist, at 
least from a developers point of view, but as a mucissian who just want 
to make music, I need a stable working enviroment, and untill wine and 
jackd can "speak pulse", I defenitly think that the need for a simple 
script/program that can make the switch from pulse to Alsa (and back again).

Some time ago I made a wineasio-script and placed it on my website : 
http://www.sandgreen.dk/index.php?side=linux_wineasio
This month alone, it have been downloaded 726 times, so I know theres a 
need for simple solutions for those who doesnt want to copy paste 20 
lines of code one by one and fiddle with system preferences when they 
install a new system.
As my site also mentions "I am a musissian, NOT a programmer", so thou I 
might be able to make a bash-script and host it, I'm not sure that my 
way of doing it is the best way.
Someone resently told me that these simple three lines is enough :

% sudo apt-get purge pulseaudio
% asoundconf list (Names of available sound cards: M2496)
% asoundconf set-default-card M2496

Is that realy all ?
What about system sounds ?

Any input would be welcome, and please remember that I didnt start this 
thread to start a Pulse-Alsa war, I just want to make my life easy when 
I reinstall, and maybe help a fellow non-geek musissian.
Pulse might be the future for Linux audio, but I cant wait till then :-)

/Sandie

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread Eric Hedekar
On Mon, Jan 26, 2009 at 11:25 AM, Hartmut Noack wrote:

> Now loud and everybody say after me:
>
> Ubuntu should have jackd-support for pulse and xinelib to be installed
> point and klick !!!
>
> Because it is needed,
> because it is easy to do,
> because there is NO sane reason not to do it.
>
> best regs
> HZN
>

I couldn't agree more!  But unfortunately it depends on jack being in main -
which the UBS devs are working on.  If jackd isn't in main, then the pulse
and xinelib packages can't have libjack-dev as a build-dependency, and thus
no jackd-support without a manual compile by elite users.

Though I did manage to find this (for pulse):
https://code.launchpad.net/~adam-lofts/pulseaudio/hardy-jack
and this (for xine):
https://bugs.launchpad.net/ubuntu/+source/xine-lib/+bug/152487
...and you know what they say about squeaky wheels and grease!  It's
probably best to push for this through official development channels rather
than ranting on a users mailing list.

-Eric

-- 
___
http://greyrockstudio.blogspot.com
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread Hartmut Noack
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

sue...@empire.net schrieb:
> 

>> solution is simple: get the pulse sources and compile with jackd-support.
>> The same with xinelib - install jack-dev, then compile xinelib from
>> source and amarok plays sound via jackd the same as xine/gxine etc...
>>
> 
> I see the "it's simple, just compile this or that" for all kinds of things
> in Linux land.
> 
> I submit that it is simple for those who are comfortable with compiling and
> want to do so.

Sorry again: this time I tried to be ironic...

Now loud and everybody say after me:

Ubuntu should have jackd-support for pulse and xinelib to be installed
point and klick !!!

Because it is needed,
because it is easy to do,
because there is NO sane reason not to do it.

best regs
HZN
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)
Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org

iEYEARECAAYFAkl+DkYACgkQ1Aecwva1SWMszQCfYdAz/Fe+jvP8HL14F8FZRNu3
8MIAn3uTx2xTGeHIxkvIOya2sTFXYo3R
=SkYC
-END PGP SIGNATURE-

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread sue...@empire.net


>Original Message:
>-
>From: Hartmut Noack zettber...@linuxuse.de
>Date: Mon, 26 Jan 2009 19:43:37 +0100
>To: ubuntu-studio-users@lists.ubuntu.com
>Subject: Re: Pulse ?
>
>
>-BEGIN PGP SIGNED MESSAGE-
>Hash: SHA1
>
>Scott schrieb:
>> sue...@empire.net wrote:
>
>> I had this same issue and resorted to using my external mixer to hear
audio-return. 
>> Keep this discussion going, I'd love to hear a solution.
>> 

Actually, I wrote the message he was responding to, not the above comment.

>
>solution is simple: get the pulse sources and compile with jackd-support.
>The same with xinelib - install jack-dev, then compile xinelib from
>source and amarok plays sound via jackd the same as xine/gxine etc...
>

I see the "it's simple, just compile this or that" for all kinds of things
in Linux land.

I submit that it is simple for those who are comfortable with compiling and
want to do so.

But, I don't think the majority of users ARE comfortable in that realm and
for them it just isn't simple...if it was the forums would be way smaller.

And it could be argued that they will create more headaches for themselves
if they just live with it until it is available with a few clicks from a
repository.

>It would be nice though, if we could get the needed plugins from
>universe with a few clicks in synaptic...

Mac


mail2web.com – What can On Demand Business Solutions do for you?
http://link.mail2web.com/Business/SharePoint



-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread Hartmut Noack
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Scott schrieb:
> sue...@empire.net wrote:

> I had this same issue and resorted to using my external mixer to hear 
> audio-return. 
> Keep this discussion going, I'd love to hear a solution.
> 

solution is simple: get the pulse sources and compile with jackd-support.
The same with xinelib - install jack-dev, then compile xinelib from
source and amarok plays sound via jackd the same as xine/gxine etc...

It would be nice though, if we could get the needed plugins from
universe with a few clicks in synaptic...
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)
Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org

iEYEARECAAYFAkl+BFgACgkQ1Aecwva1SWNjWQCfR3tvEXVTuertV+EOP3g0mCnB
W8MAnA/d8GqAiNUcxYdcz77VBRNCPvvK
=dIIM
-END PGP SIGNATURE-

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread sue...@empire.net


>Original Message:
>-
>From: Scott ubuntustu...@troutpocket.org
>Date: Mon, 26 Jan 2009 08:31:44 -0800
>To: ubuntu-studio-users@lists.ubuntu.com
>Subject: Re: Pulse ?
>
>
>sue...@empire.net wrote:
>> A bit tangent to the disscussion...
>> Latency issues aside, I've been experimenting, to no avail, to be able to
>> receive audio from my firewire device and output it to my onboard audio.
>> 
>> I have not been able to get pulse or alsa to show up as an output in
Jack.
>
>I had this same issue and resorted to using my external mixer to hear
audio-return. 
>Keep this discussion going, I'd love to hear a solution.
>

Well, I chased this a bit and was led to believe there is something called
alsa_in and alsa_out included with Jack 119.

These programs, again as I understand, when run from the terminal window
create an alsa sink or source that should show up in jack.

The back port came a few days after I attempted to compile Jack 119 on my
UBS hardy install.

The result was a jack that was no longer stable. And, no executable being
present for alsa_in/out. They are in the tools folder created from the jack
tar ball, configure/make script appear to do a recursive, and no apparant
errors in the build log files.

So, since the back ports for Jack, Ardour, and ffado are now available I am
planning on re-doing things later this week and hoping for better results.

Mac


mail2web.com – Enhanced email for the mobile individual based on Microsoft®
Exchange - http://link.mail2web.com/Personal/EnhancedEmail



-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread Scott
sue...@empire.net wrote:
> A bit tangent to the disscussion...
> Latency issues aside, I've been experimenting, to no avail, to be able to
> receive audio from my firewire device and output it to my onboard audio.
> 
> I have not been able to get pulse or alsa to show up as an output in Jack.

I had this same issue and resorted to using my external mixer to hear 
audio-return. 
Keep this discussion going, I'd love to hear a solution.

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread Hartmut Noack
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Cory K. schrieb:
> Hartmut Noack wrote:
>> Cory has pointed out later on in this thread, that the core-devs do not
>> want the jackd-plugin in pulse, because jackd is not in main - they
>> don't want to cope with that, *because they do not care for audio-users,*
>> I'd say. The UBS-team should not accept such politics lightly...
> 
> Not /really/ accurate. I never said anything about the core-devs. :)
> JACK was in Main at one point but was demoted. 
...

> 
> -Cory K.
> 

Cory is correct: he never mentioned the core-devs - I made a possibly
misleading interpolation sorry for that :-)

I was just aroused by the fact, that no desktop-sound system under
Ubuntu works with jackd, though this is feasible as pulse and xinelib
both support jackd if only this is compiled into them...

BTW: Ardour has jackd-support even though it is officially a part of UBS
(and thus a part of a UBUNTU-Flavour as "official" as KUBUNTU or
XUBUNTU...) so would it be possible, to have xinelib/pulse plus
jackd-plugins as a part of UBS?

best regards

HZN


-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)
Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org

iEYEARECAAYFAkl926oACgkQ1Aecwva1SWOm3wCeNr8feINo5i1DJMDAheqqbBve
LPIAn2P191jy6QFEewEcyFh40agRyCHc
=Xfke
-END PGP SIGNATURE-

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-26 Thread sue...@empire.net
A bit tangent to the disscussion...
Latency issues aside, I've been experimenting, to no avail, to be able to
receive audio from my firewire device and output it to my onboard audio.

I have not been able to get pulse or alsa to show up as an output in Jack.

In this case latency is not an issue, I just want to avoid having to switch
physical cabling back and forth.

Mac

Original Message:
-
From: Cory K. coryis...@ubuntu.com
Date: Sun, 25 Jan 2009 20:14:50 -0500
To: ubuntu-studio-users@lists.ubuntu.com
Subject: Re: Pulse ?


Hartmut Noack wrote:
> Cory has pointed out later on in this thread, that the core-devs do not
> want the jackd-plugin in pulse, because jackd is not in main - they
> don't want to cope with that, *because they do not care for audio-users,*
> I'd say. The UBS-team should not accept such politics lightly...

Not /really/ accurate. I never said anything about the core-devs. :)
JACK was in Main at one point but was demoted. (I'll try to get the
exact reason later) But there are lots of people (besides audio users)
that would like to see JACK back in Main. It's just gonna take some work
but is on our radar for this (Jaunty) release.

It should also be noted that using the Pulse-JACK plugin just adds
latency and that hard-core users will just use JACK. The plugin will
help new/casual users and people who want PA/JACK apps to talk to each
other.


-Cory K.


-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


mail2web.com - Microsoft® Exchange solutions from a leading provider -
http://link.mail2web.com/Business/Exchange



-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-25 Thread Cory K.
Hartmut Noack wrote:
> Cory has pointed out later on in this thread, that the core-devs do not
> want the jackd-plugin in pulse, because jackd is not in main - they
> don't want to cope with that, *because they do not care for audio-users,*
> I'd say. The UBS-team should not accept such politics lightly...

Not /really/ accurate. I never said anything about the core-devs. :)
JACK was in Main at one point but was demoted. (I'll try to get the
exact reason later) But there are lots of people (besides audio users)
that would like to see JACK back in Main. It's just gonna take some work
but is on our radar for this (Jaunty) release.

It should also be noted that using the Pulse-JACK plugin just adds
latency and that hard-core users will just use JACK. The plugin will
help new/casual users and people who want PA/JACK apps to talk to each
other.


-Cory K.


-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-25 Thread Billy C
On Sun, Jan 25, 2009 at 5:38 PM, Hartmut Noack  wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Billy C schrieb:
>
>
>> A more effective color management system would be needed prior to
>> making the claim that EVERYTHING needed for graphics was present.
>
> Yeah - right. But this is linked to licensing-issues, so I would not
> blame a Linux-Distro for being imperfect in that...
>
>
>
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v2.0.9 (GNU/Linux)
> Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org
>
> iEYEARECAAYFAkl8+BMACgkQ1Aecwva1SWNuBwCdGadEWcnsHeqg1ArQRT59jtnD
> qosAniecyTv6oCndB/EvxIkestvVuLOk
> =ZhV5
> -END PGP SIGNATURE-
>
> --
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at: 
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>

The pieces are already present, were they packaged for easier
installation/included in the distro, that would make the
"all-inclusive multimedia package" a more valid claim, as color
management is ESSENTIAL to billable hours for graphic arts or
photography concerns.
As one of the audio users mentioned earlier, some of us would rather
spend the time with billable hours projects than tweaking and
debugging software.

BC

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-25 Thread Hartmut Noack
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Billy C schrieb:


> A more effective color management system would be needed prior to
> making the claim that EVERYTHING needed for graphics was present.

Yeah - right. But this is linked to licensing-issues, so I would not
blame a Linux-Distro for being imperfect in that...



-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)
Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org

iEYEARECAAYFAkl8+BMACgkQ1Aecwva1SWNuBwCdGadEWcnsHeqg1ArQRT59jtnD
qosAniecyTv6oCndB/EvxIkestvVuLOk
=ZhV5
-END PGP SIGNATURE-

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-25 Thread Billy C
On Sun, Jan 25, 2009 at 5:13 PM, Hartmut Noack  wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Eric Hedekar schrieb:
>> On Sat, Jan 24, 2009 at 12:32 PM, alex stone  wrote:
>>
>>> Why can't we make pulse optional in UBStudio?
>>>
>>> I understand UBS as an audio specific distro that focuses on
>>> audio/multimedia production. We use RT, Jack, etc, knowing precisely what
>>> UBS is designed for.
>>>
>
>>> Alex.
>>>
>
>> Next, I think it's good to point out in this argument, that UBStudio is NOT
>> an audio specific distribution - it's a multimedia specific distribution.
>> Audio users may make up a large portion of the user base,  but they're not
>> the only cats in town.  Graphics and Video people benefit greatly from
>> Pulse.
>
> Everything, I repeat: everything Video/Graphics people can possibly want
> from a Linux Distro, is in the standard (K)(X)UBUNTU. It would be
> marketing at best to provide a whatsoever "special" distro for people,
> that only want to cut some movies and design graphics.
> The one and only relevant reason for a special distro like UBS, CCRMA or
>  JAD is in fact the RT-capability including am optimized Kernel and a
> proper automagic to configure the system to work with it (limits.conf,
> timer resolution and firewire-setup).
> If the latter is not a must-have, UBS would be nothing but a theme(many
> people dislike) and a set of preinstalled apps (everybody can install
> with a few clicks in synaptic).
>
>> Graphics and Video people benefit greatly from
>> Pulse.
>
> If this is so (I doubt it is...) may it be: there are a lot of UBS-users
> like me, that prefer XFCE or KDE, Fluxbox etc. instead of GNOME and we
> all still accept, that GNOME is the standard-desktop for UBS. We simply
> install whatever DE we like and use the apps and have the benefit of the
> RT-optimisation as well.
> But pulse interferes with audio and so it should be removed from UBS, it
> would be OK with me, if it is installed but I would like to have a
> simple way to get rid of it. Ubuntu Studio Control should have a switch
> for that: disable pulseaudio, click, done
>
> The situation could be different if only the available jackd-plugin for
> pulse would be installable, the same situation for xinelib.
>
> There is NO sane reason not to have these plugins in universe and there
> is absolutely not the slightest reason not to install these plugins with
> UBS.
> Cory has pointed out later on in this thread, that the core-devs do not
> want  the jackd-plugin in pulse, because jackd is not in main - they
> don't want to cope with that, because they do not care for audio-users,
> I'd say. The UBS-team should not accept such politics lightly...
>
> Anyway I have a Suse11.1 up and running now and thanks to jengelh with
> the best RT-support I have seen since 64Studio 2.0. I run jackd all the
> time with 8ms latency, no xruns on a machine on which the recent UBS
> does not run jackd with less then 40ms.
> And yes: of course you can install pulse and xinelib with proper
> jackd-support with a few mouseclicks in Suse.
> So I will see, how 9.04 improves the situation...
>
> best regs
> HZN
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v2.0.9 (GNU/Linux)
> Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org
>
> iEYEARECAAYFAkl88h8ACgkQ1Aecwva1SWMc/ACgkCgkU3v7WXwtWpwKBcQPdxa0
> TpsAnA9TGrwnN6svvnHW/z+NETUBgdgg
> =pd53
> -END PGP SIGNATURE-
>
> --
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at: 
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>

A more effective color management system would be needed prior to
making the claim that EVERYTHING needed for graphics was present.

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-25 Thread Hartmut Noack
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Eric Hedekar schrieb:
> On Sat, Jan 24, 2009 at 12:32 PM, alex stone  wrote:
> 
>> Why can't we make pulse optional in UBStudio?
>>
>> I understand UBS as an audio specific distro that focuses on
>> audio/multimedia production. We use RT, Jack, etc, knowing precisely what
>> UBS is designed for.
>>

>> Alex.
>>

> Next, I think it's good to point out in this argument, that UBStudio is NOT
> an audio specific distribution - it's a multimedia specific distribution.
> Audio users may make up a large portion of the user base,  but they're not
> the only cats in town.  Graphics and Video people benefit greatly from
> Pulse.

Everything, I repeat: everything Video/Graphics people can possibly want
from a Linux Distro, is in the standard (K)(X)UBUNTU. It would be
marketing at best to provide a whatsoever "special" distro for people,
that only want to cut some movies and design graphics.
The one and only relevant reason for a special distro like UBS, CCRMA or
 JAD is in fact the RT-capability including am optimized Kernel and a
proper automagic to configure the system to work with it (limits.conf,
timer resolution and firewire-setup).
If the latter is not a must-have, UBS would be nothing but a theme(many
people dislike) and a set of preinstalled apps (everybody can install
with a few clicks in synaptic).

> Graphics and Video people benefit greatly from
> Pulse.

If this is so (I doubt it is...) may it be: there are a lot of UBS-users
like me, that prefer XFCE or KDE, Fluxbox etc. instead of GNOME and we
all still accept, that GNOME is the standard-desktop for UBS. We simply
install whatever DE we like and use the apps and have the benefit of the
RT-optimisation as well.
But pulse interferes with audio and so it should be removed from UBS, it
would be OK with me, if it is installed but I would like to have a
simple way to get rid of it. Ubuntu Studio Control should have a switch
for that: disable pulseaudio, click, done

The situation could be different if only the available jackd-plugin for
pulse would be installable, the same situation for xinelib.

There is NO sane reason not to have these plugins in universe and there
is absolutely not the slightest reason not to install these plugins with
UBS.
Cory has pointed out later on in this thread, that the core-devs do not
want  the jackd-plugin in pulse, because jackd is not in main - they
don't want to cope with that, because they do not care for audio-users,
I'd say. The UBS-team should not accept such politics lightly...

Anyway I have a Suse11.1 up and running now and thanks to jengelh with
the best RT-support I have seen since 64Studio 2.0. I run jackd all the
time with 8ms latency, no xruns on a machine on which the recent UBS
does not run jackd with less then 40ms.
And yes: of course you can install pulse and xinelib with proper
jackd-support with a few mouseclicks in Suse.
So I will see, how 9.04 improves the situation...

best regs
HZN
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)
Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org

iEYEARECAAYFAkl88h8ACgkQ1Aecwva1SWMc/ACgkCgkU3v7WXwtWpwKBcQPdxa0
TpsAnA9TGrwnN6svvnHW/z+NETUBgdgg
=pd53
-END PGP SIGNATURE-

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Linux DAW on powerpc (was "pulse?")

2009-01-25 Thread alex stone
On Sun, Jan 25, 2009 at 3:59 PM, Khashayar Naderehvandi <
khashayar.li...@gmail.com> wrote:

> >
> > You're completely off the mark with Ubuntu ppc. It's already done, and
> > works, maintained as a community project. Package selection is large (as
> > large as any other ubuntu from what i can see), and one can install from
> > source without a hassle. I have RG 1.7.3svn running on my G4 a.k.a.
> UBUNTU
> > HARDY PPC, as well as ardour 2, AND ardour 3. All installed from source
> > without any extra pain or hassle. (Only missing the RT kernel)
> >
> This sounds interesting.
> I have an old iBook G4 with 768M of ram, running as a sort of server
> currently. Would you recommend that machine as a Linux DAW instead? I
> always thought it would be too slow for that sort of thing.
>
> Regards,
> Khashayar
>
> --
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>

Khashayar,

I can't actually answer this completely, as we don't have an RT environment
with which to make a comparison. But i will say, from my own humble
experience, that Linux runs faster on my little laptop, than mac ever did.

I'll make a correction here too. I'm using KUBUNTU HARDY, as i don't know if
that makes any difference for a "Ubuntu vs ?" comparison.
I also have enough foolhardy bravura/courage/pick one... in me to install
and try up to date packages from source/svn/etc... and so far i've either
been clever, or extremely lucky. I built a tiny linuxsampler template of
modest gig files as a sound engine, that runs ok for playback/recording (the
G4 is 867mhz, 512mb ram, titanium version), and rosegarden ticks along
without complaint, or stalling.

One thing is for sure from my personal experience. The G4 has a new lease of
life, and when i'm traveling, it serves well as a modest musical notepad for
that moment of sudden inspiration. :)

It would be fair to say that with any sizable arrangement, this size laptop
might struggle, but that would be true (and indeed was) running mac as well.
I've got further with the linux distro install, if that gives you some
indication of the worth of such a change.

Alex.
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-25 Thread alex stone
On Sun, Jan 25, 2009 at 4:59 PM, Cory K.  wrote:

> alex stone wrote:
> > I can run with Video people possibly benefiting from using Pulse (any
> more
> > or less than alsa/jack? I write music to image, and jack does fine here),
> > but i'm a bit lost as to how Graphics people might prefer pulse over jack
> or
> > alsa or oss or anything else.
> >
>
> Graphics folks benefit from *not* having to worry about JACK. ;)
>
> > I don't understand your answer to the pulse latency question. You were
> quick
> > enough to tell me i'm wrong, but then cited ESD as 'worse' than pulse,
> > without any sort of clue as to actual latency in pulse or not. Seems like
> a
> > bit of a red herring.
> >
>
> As far as latency with Pulse *generally* goes, I've spoken with Lennart
> himself and it cannot (and maybe will not) go where JACK does. If JACK
> were in the main repo we could get the Pulse/JACK plugin compiled but
> that adds latency as well.
>
> I'm actually a little confused by the confusion. Starting JACK with
> JACKcontrol, Pulse should be stopped for as long as JACKcontrol is
> going. I forget but it *might* even be tied to jackd itself. Luke can
> chime in here.
>
> > You're completely off the mark with Ubuntu ppc. It's already done, and
> > works, maintained as a community project. Package selection is large (as
> > large as any other ubuntu from what i can see), and one can install from
> > source without a hassle. I have RG 1.7.3svn running on my G4 a.k.a.
> UBUNTU
> > HARDY PPC, as well as ardour 2, AND ardour 3. All installed from source
> > without any extra pain or hassle. (Only missing the RT kernel)
>
> If we got someone to get together the -RT kernel and testing we would
> for sure put out a PPC Studio. We've just lacked the man-power.
>
>
> -Cory K.
>
> --
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>






Cory, I've only got an older G4 laptop, but you can count me in for testing.
(Sadly, i can't code)

Alex.

32bit Ubuntustudio Hardy 8.0.4 (2.6.24-23 RT)
64bit Ubuntustudio Hardy 8.0.4 (2.6.24-23 RT)
PPC Kubuntu Hardy 8.0.4 (2.6.24-23 generic)

All major audio stuff, including Alsa and Jack2, installed from up to date
source.
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-25 Thread Cory K.
alex stone wrote:
> I can run with Video people possibly benefiting from using Pulse (any more
> or less than alsa/jack? I write music to image, and jack does fine here),
> but i'm a bit lost as to how Graphics people might prefer pulse over jack or
> alsa or oss or anything else.
>   

Graphics folks benefit from *not* having to worry about JACK. ;)

> I don't understand your answer to the pulse latency question. You were quick
> enough to tell me i'm wrong, but then cited ESD as 'worse' than pulse,
> without any sort of clue as to actual latency in pulse or not. Seems like a
> bit of a red herring.
>   

As far as latency with Pulse *generally* goes, I've spoken with Lennart
himself and it cannot (and maybe will not) go where JACK does. If JACK
were in the main repo we could get the Pulse/JACK plugin compiled but
that adds latency as well.

I'm actually a little confused by the confusion. Starting JACK with
JACKcontrol, Pulse should be stopped for as long as JACKcontrol is
going. I forget but it *might* even be tied to jackd itself. Luke can
chime in here.

> You're completely off the mark with Ubuntu ppc. It's already done, and
> works, maintained as a community project. Package selection is large (as
> large as any other ubuntu from what i can see), and one can install from
> source without a hassle. I have RG 1.7.3svn running on my G4 a.k.a. UBUNTU
> HARDY PPC, as well as ardour 2, AND ardour 3. All installed from source
> without any extra pain or hassle. (Only missing the RT kernel)

If we got someone to get together the -RT kernel and testing we would
for sure put out a PPC Studio. We've just lacked the man-power.


-Cory K.

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Linux DAW on powerpc (was "pulse?")

2009-01-25 Thread Khashayar Naderehvandi
>
> You're completely off the mark with Ubuntu ppc. It's already done, and
> works, maintained as a community project. Package selection is large (as
> large as any other ubuntu from what i can see), and one can install from
> source without a hassle. I have RG 1.7.3svn running on my G4 a.k.a. UBUNTU
> HARDY PPC, as well as ardour 2, AND ardour 3. All installed from source
> without any extra pain or hassle. (Only missing the RT kernel)
>
This sounds interesting.
I have an old iBook G4 with 768M of ram, running as a sort of server
currently. Would you recommend that machine as a Linux DAW instead? I
always thought it would be too slow for that sort of thing.

Regards,
Khashayar

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-25 Thread alex stone
Eric,



I can run with Video people possibly benefiting from using Pulse (any more
or less than alsa/jack? I write music to image, and jack does fine here),
but i'm a bit lost as to how Graphics people might prefer pulse over jack or
alsa or oss or anything else.

I don't understand your answer to the pulse latency question. You were quick
enough to tell me i'm wrong, but then cited ESD as 'worse' than pulse,
without any sort of clue as to actual latency in pulse or not. Seems like a
bit of a red herring.

You're completely off the mark with Ubuntu ppc. It's already done, and
works, maintained as a community project. Package selection is large (as
large as any other ubuntu from what i can see), and one can install from
source without a hassle. I have RG 1.7.3svn running on my G4 a.k.a. UBUNTU
HARDY PPC, as well as ardour 2, AND ardour 3. All installed from source
without any extra pain or hassle. (Only missing the RT kernel)

A quick google would reveal all this to you, of course..

Alex.






>
>
>
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-24 Thread Eric Hedekar
On Sat, Jan 24, 2009 at 12:32 PM, alex stone  wrote:

> Why can't we make pulse optional in UBStudio?
>
> I understand UBS as an audio specific distro that focuses on
> audio/multimedia production. We use RT, Jack, etc, knowing precisely what
> UBS is designed for.
>
> The only version of pulse i have installed now is in the laptop that i use
> for admin (Ubuntu Hardy). In that environment it serves me well, and
> objectively, i don't think it will be long before pulse becomes the generic
> audio choice for most distros, as it provides a common framework for devs to
> work with, something we could do with more of on the linux planet.
>
> However UBStudio, and other audio specific distros, are designed for a
> purpose, that, in most cases, requires a RT, or near realtime specific
> environment in which we gain the most advantage. As i understand it, pulse
> already introduces a degree of latency in it's operation that is
> counterproductive to realtime audio work. (Correct me if i have the bear by
> the wrong ear here.)
>
> In reference to my note about the laptop, i'd find it more useful if the
> UBS team could devote a little time in consideration of building an RT
> kernel for powerpc owners, be it laptops like mine (G4, circa 1800) to the
> powerful beasts that came out before apple went intel.
>
> I'm confident there's more than one user who has a spare ppc computer
> gathering dust that's crying out for use as a second box, driving
> linuxsampler, or plugins, etc...
>
> My little laptop with UB hardy ppc runs a good deal faster than it ever did
> with mac, and i'd dearly like to see it do the gazelle thing, speaking
> audiosyncratically, of course.
>
> So UBS pulse out, and ppc UB RT in here.
>
>
>
> Alex.
>


First and foremost, I'd like to remind everyone not to 'top post' as it
throws off the natural reading of a conversation.

Next, I think it's good to point out in this argument, that UBStudio is NOT
an audio specific distribution - it's a multimedia specific distribution.
Audio users may make up a large portion of the user base,  but they're not
the only cats in town.  Graphics and Video people benefit greatly from
Pulse.

Also, you're wrong (from what I know on the subject) about the Pulse latency
issue.  ESD - the software that pulse replaces - has a much higher latency
time than Pulse.  Not to mention, much less features, and no jack
compatibility or links (very useful for ffado people who want to play system
audio over jack).

Lastly, the powerpc is really not feasible in a sub-distro of Ubuntu -
unless Ubuntu (main) starts supporting powerpc.  It's not just the kernel
that would need to be built; every single binary package would need
recompiling for that architecture.  Debian, however, does do powerpc.  I'd
recomend you look into rolling your own RT kernel for debian if you need
powerpc support, as it's very similar to Ubuntu.

-Eric



-- 
___
http://greyrockstudio.blogspot.com
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-24 Thread sandie
Beldon Dominello wrote:
> Hi Sandie
>
> I'm relatively new to UbuntuStudio and would very much like to see your
> checklist for purging Pulse from the system.
>
> Cheers!
>
>  -=Beldon
>   
Hi Beldon

I'm proberly not the most qualified to tell you this :-) This might not 
work on your system, it's just what I have found to work on my own Hardy.

***

% sudo apt-get install alsa-oss
% sudo apt-get install libasound2
% sudo apt-get install libasound2-plugins
% sudo apt-get install sysv-rc-conf
% sudo mv /etc/X11/Xsession.d/70pulseaudio ~/
% gconftool-2 -s -t bool 
/apps/gnome_settings_daemon/plugins/sound/active false
% asoundconf unset-pulseaudio

% sudo sysv-rc-conf
Page down till you see “pulseaudio” entry, then untick all the box []. 
Save and exit.

% asoundconf list
Names of available sound cards, mine is M2496 so I use this line :
% asoundconf set-default-card M2496

Make sure libao.conf is set to ALSA
% sudo gedit /etc/libao.conf
defaul_driver=alsa

Navigate from the menu: System - Preferences - Sound, make sure your 
only use ALSA
Under Sounds - disable system sounds

***

This might be total overkill, but it works for me :-)
Someone resently told me that these simple three lines is enough :

% sudo apt-get purge pulseaudio
% asoundconf list (Names of available sound cards: M2496)
% asoundconf set-default-card M2496

And just to clarify... I don't hate Pulse, I just don't use it :-)

btw. If someone can tell me a correct way to do this, I'd be happy to 
make a script and host it on my site.

/Sandie

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-24 Thread alex stone
Why can't we make pulse optional in UBStudio?

I understand UBS as an audio specific distro that focuses on
audio/multimedia production. We use RT, Jack, etc, knowing precisely what
UBS is designed for.

The only version of pulse i have installed now is in the laptop that i use
for admin (Ubuntu Hardy). In that environment it serves me well, and
objectively, i don't think it will be long before pulse becomes the generic
audio choice for most distros, as it provides a common framework for devs to
work with, something we could do with more of on the linux planet.

However UBStudio, and other audio specific distros, are designed for a
purpose, that, in most cases, requires a RT, or near realtime specific
environment in which we gain the most advantage. As i understand it, pulse
already introduces a degree of latency in it's operation that is
counterproductive to realtime audio work. (Correct me if i have the bear by
the wrong ear here.)

In reference to my note about the laptop, i'd find it more useful if the UBS
team could devote a little time in consideration of building an RT kernel
for powerpc owners, be it laptops like mine (G4, circa 1800) to the powerful
beasts that came out before apple went intel.

I'm confident there's more than one user who has a spare ppc computer
gathering dust that's crying out for use as a second box, driving
linuxsampler, or plugins, etc...

My little laptop with UB hardy ppc runs a good deal faster than it ever did
with mac, and i'd dearly like to see it do the gazelle thing, speaking
audiosyncratically, of course.

So UBS pulse out, and ppc UB RT in here.



Alex.


On Sat, Jan 24, 2009 at 9:40 PM, Eric Hedekar wrote:

>
>
> On Sat, Jan 24, 2009 at 2:46 AM, sandie  wrote:
>
>> Hi all
>>
>> One of the first things I do when installing a new UbuntuStudio, is
>> purging the system of Pulse and setting the system to use Alsa. I have
>> done it so many times by now, and have even thought of making a script
>> that automates the process.
>> I know I'm not the only one who doesnt use Pulse in UbuntuSudio, in
>> fact, I don't think I have ever heard of anyone using their pc
>> UbuntuStudio machine for audio/midi-production who uses Pulse :-)
>> Can't we have an option to NOT use Pulse in the install ?
>>
>> With kind regards and respect to the UbuntuStudio devs
>> Sandie
>> //
>
>
>
> Well I certainly regularly use and enjoy the features, and ease-of-use,
> that Pulse brings to my laptop.  Furthermore, as it's the desired central
> hub for Ubuntu's (current and) future sound chain, it's unlikely that a
> disable option will be looked upon as a beneficial feature by the devs.
> Such an option would just allow application developers to forget about
> adding proper Pulse support.  It would also probably cause many more issues
> than it solves from uneducated people opting out of Pulse or having their
> system messed up by the script at some point (there'd also need to be a
> feature to re-install Pulse as default should one change their mind).
> Currently, the removal of Pulse is a 'remove at your own discretion'
> modification; changing that to an install-time operation would imply
> official support for non-Pulse systems (this is the biggest issue behind
> your idea) and would require a large number of devs to bug-check and
> maintain this branch of the sound-server setup.
>
> Essentially, the sound-server setup is complicated enough as it is; adding
> official non-Pulse support would just add to everyone's headaches (and yes
> this includes the end-user).
>
> The closest thing I could imagine to what you're asking for, is: if you (or
> some other Pulse-hater) wrote a program/script that uninstalled Pulse,
> released it, refined it, fixed it, added a GUI, and packaged it for
> inclusion into Ubuntu's Universe repository, then it might get accepted.
> But I doubt that even then would it be included as an installable option on
> startup.
>
>
> Just my point of view.
> -Eric Hedekar
>
>
> --
> ___
> http://greyrockstudio.blogspot.com
>
> --
> Ubuntu-Studio-users mailing list
> Ubuntu-Studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>
>
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-24 Thread Eric Hedekar
On Sat, Jan 24, 2009 at 2:46 AM, sandie  wrote:

> Hi all
>
> One of the first things I do when installing a new UbuntuStudio, is
> purging the system of Pulse and setting the system to use Alsa. I have
> done it so many times by now, and have even thought of making a script
> that automates the process.
> I know I'm not the only one who doesnt use Pulse in UbuntuSudio, in
> fact, I don't think I have ever heard of anyone using their pc
> UbuntuStudio machine for audio/midi-production who uses Pulse :-)
> Can't we have an option to NOT use Pulse in the install ?
>
> With kind regards and respect to the UbuntuStudio devs
> Sandie
> //



Well I certainly regularly use and enjoy the features, and ease-of-use, that
Pulse brings to my laptop.  Furthermore, as it's the desired central hub for
Ubuntu's (current and) future sound chain, it's unlikely that a disable
option will be looked upon as a beneficial feature by the devs.  Such an
option would just allow application developers to forget about adding proper
Pulse support.  It would also probably cause many more issues than it solves
from uneducated people opting out of Pulse or having their system messed up
by the script at some point (there'd also need to be a feature to re-install
Pulse as default should one change their mind).  Currently, the removal of
Pulse is a 'remove at your own discretion' modification; changing that to an
install-time operation would imply official support for non-Pulse systems
(this is the biggest issue behind your idea) and would require a large
number of devs to bug-check and maintain this branch of the sound-server
setup.

Essentially, the sound-server setup is complicated enough as it is; adding
official non-Pulse support would just add to everyone's headaches (and yes
this includes the end-user).

The closest thing I could imagine to what you're asking for, is: if you (or
some other Pulse-hater) wrote a program/script that uninstalled Pulse,
released it, refined it, fixed it, added a GUI, and packaged it for
inclusion into Ubuntu's Universe repository, then it might get accepted.
But I doubt that even then would it be included as an installable option on
startup.


Just my point of view.
-Eric Hedekar


-- 
___
http://greyrockstudio.blogspot.com
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-24 Thread wayne
ahoy all,

this may reveal my cluelessness, but why is Pulse such a problem for
recording audio/MIDI?  with the latest 8.04 real-time kernel, i have
noticed no problems with Pulse per se (more problems with Macbook
built-in audio ALSA driver/position_fix issues).

thanks for the edu in adv.


On Sat, 2009-01-24 at 12:36 -0500, Beldon Dominello wrote:

> On Sat, 2009-01-24 at 11:46 +0100, sandie wrote:
> > Hi all
> > 
> > One of the first things I do when installing a new UbuntuStudio, is 
> > purging the system of Pulse and setting the system to use Alsa. I have 
> > done it so many times by now, and have even thought of making a script 
> > that automates the process.
> > I know I'm not the only one who doesnt use Pulse in UbuntuSudio, in 
> > fact, I don't think I have ever heard of anyone using their pc 
> > UbuntuStudio machine for audio/midi-production who uses Pulse :-)
> > Can't we have an option to NOT use Pulse in the install ?
> > 
> > With kind regards and respect to the UbuntuStudio devs
> > Sandie
> > //
> > 
> 
> Hi Sandie
> 
> I'm relatively new to UbuntuStudio and would very much like to see your
> checklist for purging Pulse from the system.
> 
> Cheers!
> 
>  -=Beldon
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Pulse ?

2009-01-24 Thread Beldon Dominello
On Sat, 2009-01-24 at 11:46 +0100, sandie wrote:
> Hi all
> 
> One of the first things I do when installing a new UbuntuStudio, is 
> purging the system of Pulse and setting the system to use Alsa. I have 
> done it so many times by now, and have even thought of making a script 
> that automates the process.
> I know I'm not the only one who doesnt use Pulse in UbuntuSudio, in 
> fact, I don't think I have ever heard of anyone using their pc 
> UbuntuStudio machine for audio/midi-production who uses Pulse :-)
> Can't we have an option to NOT use Pulse in the install ?
> 
> With kind regards and respect to the UbuntuStudio devs
> Sandie
> //
> 

Hi Sandie

I'm relatively new to UbuntuStudio and would very much like to see your
checklist for purging Pulse from the system.

Cheers!

 -=Beldon


signature.asc
Description: This is a digitally signed message part
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Pulse ?

2009-01-24 Thread sandie
Hi all

One of the first things I do when installing a new UbuntuStudio, is 
purging the system of Pulse and setting the system to use Alsa. I have 
done it so many times by now, and have even thought of making a script 
that automates the process.
I know I'm not the only one who doesnt use Pulse in UbuntuSudio, in 
fact, I don't think I have ever heard of anyone using their pc 
UbuntuStudio machine for audio/midi-production who uses Pulse :-)
Can't we have an option to NOT use Pulse in the install ?

With kind regards and respect to the UbuntuStudio devs
Sandie
//

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Please please solve the system-sound no play - pulse audio troubles in Intrepid-Studio and other niggles

2008-10-25 Thread Steven Davies-Morris
[EMAIL PROTECTED] wrote:
> yes. the problem with virtual box... i thought its a problem of my 
> system, but it seems to be a general bug. it would be great, if 
> this would be solved.
> 
> 
> aYo Binitie wrote:
>> Please please, I beg that you solve the problems with the system 
>> soun updatsd and pulse audio - and the problems with Samba and 
>> VirtualBox. I brought lappy #2 out today to check for up dates 
>> and give it a run. Lappy2 runs Ubuntu Hardy. No problems there 
>> with system sounds at all. So its definitely the configuration 
>> used with UStudio.
>> 
>> a

What version of Virtualbox are you running? I'm on v2.0.4 (Hardy,
latest patch from two days ago) on top of Intrepid 8.10RC AMD64 with
the generic 2.6.27-7 kernel. That vBox runs fine even though it's not
officially yet on Intrepid. The audio works properly on the 8.10RC
with both pulseaudio (finally, after numerous false starts, yeah) and
OSS inside the vBox, and using pulseaudio, OSS and ALSA directly under
Intrepid.

For the longest time under vBox (on Hardy and the Intrepid Alpha &
Beta) I had to configure my sound setup for OSS. Regardless of what I
ran native. Now it seems to all be working (perfectly, fingers
crossed) as pulseaudio across the board. This is on my desktop and DAW
boxes that I've moved forward to Intrepid. All of which are recent AMD
motherboards using recent Nvidia chipsets. I have no idea how well any
of this might work on a laptop since mine is an 8 year old PIII that
dual boots Win2K and Darya Mint.

As for Samba, all I can tell you is that I used to have to reset my
shares every time I rebooted. Those are at least now holding in the
Intrepid 8.10RC and my sons (on WinXP) don't bitch at me because they
can't reach the sample libraries housed in a share on one of the
machines. My suggestion would be that if you have more than one
machine available, try taking one of them forward to the 8.10RC using
the generic kernel (since the rt is not there yet). And see what
happens. It will at least allow you to check out if things like Samba
and pulseaudio will work properly for you. YMMV.
-- 
Cheers, SDM -- a 21st Century Schizoid Man
Systems Theory internet music project: 
on MySpace: 
on Last FM: 
get "Codetalkers" *free* at 
NP: demos for the new Systems Theory album "overfulnoisecascade"

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: Please please solve the system-sound no play - pulse audio troubles in Intrepid-Studio and other niggles

2008-10-25 Thread [EMAIL PROTECTED]
yes. the problem with virtual box... i thought its a problem of my 
system, but it seems to be a general bug. it would be great, if this 
would be solved.


aYo Binitie wrote:
> Please please, I beg that you solve the problems with the system soun 
> updatsd and pulse audio - and the problems with Samba and VirtualBox. 
> I brought lappy #2 out today to check for up dates and give it a run. 
> Lappy2 runs Ubuntu Hardy. No problems there with system sounds at all. 
> So its definitely the configuration used with UStudio.
>
> a


-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Please please solve the system-sound no play - pulse audio troubles in Intrepid-Studio and other niggles

2008-10-25 Thread aYo Binitie
Please please, I beg that you solve the problems with the system soun
updatsd and pulse audio - and the problems with Samba and VirtualBox. I
brought lappy #2 out today to check for up dates and give it a run. Lappy2
runs Ubuntu Hardy. No problems there with system sounds at all. So its
definitely the configuration used with UStudio.

a
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: How will Pulse Audio change things for me?

2008-03-29 Thread hollunder
On Wed, 26 Mar 2008 17:23:54 +
"Toby Smithe" <[EMAIL PROTECTED]> wrote:

> On Wed, Mar 26, 2008 at 3:46 AM,  <[EMAIL PROTECTED]> wrote:
> >
> > On Tue, 25 Mar 2008 20:59:41 +
> >  "Toby Smithe" <[EMAIL PROTECTED]> wrote:
> >
> >  > On Tue, Mar 25, 2008 at 8:54 PM,  <[EMAIL PROTECTED]> wrote:
> >  > >  Pulseaudio should shut down the moment you start jack (if
> >  > > they use the same device) and thus it shouldn't affect you if
> >  > > you use jack.
> >  >
> >  > If you use qjackctl (JACK Control), it does, no?
> >  >
> >  I haven't tried it yet, I think it doesn't shut down if jack and
> > pulse audio are running on different interfaces. Maybe I should
> > have said interface instead of device previously.
> 
> Well, looking at the wrapper script at /usr/bin/qjackctl, if
> pulseaudio is running and pasuspender is installed,
> /usr/bin/qjackctl.bin is called via the latter, which will disable
> Pulse for the duration of the process, regardless of what Pulse is
> doing, which card it is accessing, etc. A very hacky solution, but
> functional(ish).
> 
Well, I tried it on my test system (upgraded from alpha4) with an pci
card for PA and an usb device for jack, and PA doesn't shut down. Maybe
it's an update-related-problem. It is no problem to me however.

I'll do a fresh install once hardy is released. We'll see if it's still
the same then.

Regards,
Philipp

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: How will Pulse Audio change things for me?

2008-03-26 Thread Toby Smithe
On Wed, Mar 26, 2008 at 3:46 AM,  <[EMAIL PROTECTED]> wrote:
>
> On Tue, 25 Mar 2008 20:59:41 +
>  "Toby Smithe" <[EMAIL PROTECTED]> wrote:
>
>  > On Tue, Mar 25, 2008 at 8:54 PM,  <[EMAIL PROTECTED]> wrote:
>  > >  Pulseaudio should shut down the moment you start jack (if they use
>  > > the same device) and thus it shouldn't affect you if you use jack.
>  >
>  > If you use qjackctl (JACK Control), it does, no?
>  >
>  I haven't tried it yet, I think it doesn't shut down if jack and pulse
>  audio are running on different interfaces. Maybe I should have said
>  interface instead of device previously.

Well, looking at the wrapper script at /usr/bin/qjackctl, if
pulseaudio is running and pasuspender is installed,
/usr/bin/qjackctl.bin is called via the latter, which will disable
Pulse for the duration of the process, regardless of what Pulse is
doing, which card it is accessing, etc. A very hacky solution, but
functional(ish).

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: How will Pulse Audio change things for me?

2008-03-25 Thread hollunder
On Tue, 25 Mar 2008 20:59:41 +
"Toby Smithe" <[EMAIL PROTECTED]> wrote:

> On Tue, Mar 25, 2008 at 8:54 PM,  <[EMAIL PROTECTED]> wrote:
> >  Pulseaudio should shut down the moment you start jack (if they use
> > the same device) and thus it shouldn't affect you if you use jack.
> 
> If you use qjackctl (JACK Control), it does, no?
> 
I haven't tried it yet, I think it doesn't shut down if jack and pulse
audio are running on different interfaces. Maybe I should have said
interface instead of device previously.


-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: How will Pulse Audio change things for me?

2008-03-25 Thread Toby Smithe
On Tue, Mar 25, 2008 at 8:54 PM,  <[EMAIL PROTECTED]> wrote:
>  Pulseaudio should shut down the moment you start jack (if they use the
>  same device) and thus it shouldn't affect you if you use jack.

If you use qjackctl (JACK Control), it does, no?

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: How will Pulse Audio change things for me?

2008-03-25 Thread hollunder
On Tue, 25 Mar 2008 22:35:55 +0200
Asmo Koskinen <[EMAIL PROTECTED]> wrote:

> [EMAIL PROTECTED] kirjoitti:
> > My question is, how will Pulse Audio, in actual practice, change
> > things for me as a Linux-based musician?
> >
> >   
> 
> I think - nothing. It just expand networked audio possibilities.
> LTSP5 use it on the Ubuntu's thin client system.
> 
> http://developer.novell.com/wiki/index.php/Feisty/HOWTO:_PulseAudio
> http://wiki.ltsp.org/twiki/bin/view/Ltsp/Sound#Which_sound_server_should_I_choo
> 
> Thin client on the Hardy Beta x86_64:
> 
> http://www.arkki.info/howto/Wiki/LTSP5_64/Beta_64/Sound_01.png
> 
> Here is same machine (LTSP5 Server) working as Studio:
> 
> http://www.arkki.info/howto/Wiki/LTSP5_64/Beta_64/QSynth_Jackd_01.png
> 
> I do not see Pulse Audio anywhere, I just use Jackd, that's the base.
> 
> Best Regards Asmo Koskinen.
> 

What does not work is pulseaudio and portaudio apps. So if you try to
use for example audacity with pulseaudios alsa-emulation you are out of
luck. In that case you would need to shut pulseaudio down and use alsa
natively.
Another thing is that the output level of stuff that goes through
pulseaudio is a lot lower than with just alsa.

Pulseaudio should shut down the moment you start jack (if they use the
same device) and thus it shouldn't affect you if you use jack.

Regards
Philipp

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: How will Pulse Audio change things for me?

2008-03-25 Thread Asmo Koskinen
[EMAIL PROTECTED] kirjoitti:
> My question is, how will Pulse Audio, in actual practice, change things for
> me as a Linux-based musician?
>
>   

I think - nothing. It just expand networked audio possibilities. LTSP5 
use it on the Ubuntu's thin client system.

http://developer.novell.com/wiki/index.php/Feisty/HOWTO:_PulseAudio
http://wiki.ltsp.org/twiki/bin/view/Ltsp/Sound#Which_sound_server_should_I_choo

Thin client on the Hardy Beta x86_64:

http://www.arkki.info/howto/Wiki/LTSP5_64/Beta_64/Sound_01.png

Here is same machine (LTSP5 Server) working as Studio:

http://www.arkki.info/howto/Wiki/LTSP5_64/Beta_64/QSynth_Jackd_01.png

I do not see Pulse Audio anywhere, I just use Jackd, that's the base.

Best Regards Asmo Koskinen.

-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


How will Pulse Audio change things for me?

2008-03-25 Thread [EMAIL PROTECTED]
I've been reading a bit up on Pulse Audio, slated to be included as the
default sound server in 8.04:

http://en.wikipedia.org/wiki/Pulse_audio

My question is, how will Pulse Audio, in actual practice, change things for
me as a Linux-based musician?

-- 
~cole
http://holotone.net/
-- 
Ubuntu-Studio-users mailing list
Ubuntu-Studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users