From: Colby on
I am using matlab 2010a linux 64 bit on ubuntu 10.04 The audio for the linux system itself does work and I can play music files using a native player. I had the audio working originally, but it stopped after matlab crashed. I have restarted my machine since then.

Is there a debug output I can use so I can further diagnose the problem.

Thanks
From: Wayne King on
"Colby " <csboyer(a)u.washington.edu> wrote in message <huetmu$e5q$1(a)fred.mathworks.com>...
> I am using matlab 2010a linux 64 bit on ubuntu 10.04 The audio for the linux system itself does work and I can play music files using a native player. I had the audio working originally, but it stopped after matlab crashed. I have restarted my machine since then.
>
> Is there a debug output I can use so I can further diagnose the problem.
>
> Thanks

Hi,

Does audioplayer work for you?

load handel;
p = audioplayer(y, Fs);
play(p, [1 (get(p, 'SampleRate') * 3)]);

Wayne
From: Colby on
Yes, I tried that method. I have traced the problem to java. It seems that I am unable to play audio from any java app!

Has anyone had any luck with with 64bit java and ubuntu 10.04?

Thanks!

"Wayne King" <wmkingty(a)gmail.com> wrote in message <hufquf$oft$1(a)fred.mathworks.com>...
> "Colby " <csboyer(a)u.washington.edu> wrote in message <huetmu$e5q$1(a)fred.mathworks.com>...
> > I am using matlab 2010a linux 64 bit on ubuntu 10.04 The audio for the linux system itself does work and I can play music files using a native player. I had the audio working originally, but it stopped after matlab crashed. I have restarted my machine since then.
> >
> > Is there a debug output I can use so I can further diagnose the problem.
> >
> > Thanks
>
> Hi,
>
> Does audioplayer work for you?
>
> load handel;
> p = audioplayer(y, Fs);
> play(p, [1 (get(p, 'SampleRate') * 3)]);
>
> Wayne