MP3 player?

MP3 player?

Post by AGi Staf » Sat, 02 Dec 2000 04:00:00



Just setup the multimedia on one of our machines here (drown on everyone
else with music ahhhhhh).  But so far I have been unsuccessful in
finding an MP3 layer for Tru64 4.0.

Anyone know of a good one out there?  ie: Port of xmms, xamp, xaudio
etc...

Thanks,
Jason

 
 
 

MP3 player?

Post by Jeremie Peti » Sat, 02 Dec 2000 04:00:00



> Just setup the multimedia on one of our machines here (drown on everyone
> else with music ahhhhhh).  But so far I have been unsuccessful in
> finding an MP3 layer for Tru64 4.0.

> Anyone know of a good one out there?  ie: Port of xmms, xamp, xaudio
> etc...

> Thanks,
> Jason

Hello,

  The forthcoming mpg123 player (console only) will support Tru64 MME. But
it's not out yet.

  By the way, I've compiled xmms 1.2.4 (a few tuning only had to be done to
the source) on a Tru64 5.1 machine, and I've been able to tweak the MME
mpg123 module into a xmms ouput plugin. It's a very quick'n dirty module,
full of leaks and errors. I just wanted to do the minimum to get a module.
I've submitted the module to xmms people but never received an answer, but
I'd gladly post it here.

  Again, don't expect too much from my module, it could happen to be not
working for you, but on the other hand, it could work, so it's probably
worth the try (I use it every day, along with cdda2wav for dumping WAV
files from audio CDs, and lame for encoding mp3s).

  Tell me if you're interested in the xmms module.

  Best regards,

    Jeremie Petit

 
 
 

MP3 player?

Post by Tim Moon » Sun, 03 Dec 2000 04:00:00





> > Just setup the multimedia on one of our machines here (drown on everyone
> > else with music ahhhhhh).  But so far I have been unsuccessful in
> > finding an MP3 layer for Tru64 4.0.

> > Anyone know of a good one out there?  ie: Port of xmms, xamp, xaudio
> > etc...

> > Thanks,
> > Jason

> Hello,

>   The forthcoming mpg123 player (console only) will support Tru64 MME. But
> it's not out yet.

I have a really old version of mpg123 that worked on Tru64, and I also
have a version of `amp' 0.7.6 that had some Tru64 hacks that allowed it
to work with MME/MMS.

The best player I've seen so far for Tru64 is xaudio/mxadio.  You can
download it at

        http://www.xaudio.com

The only downside is that it's not OpenSource, and my impression is that
the player is really meant more as a demo front-end for the development
libraries.

Quote:>   By the way, I've compiled xmms 1.2.4 (a few tuning only had to be done to
> the source) on a Tru64 5.1 machine, and I've been able to tweak the MME
> mpg123 module into a xmms ouput plugin. It's a very quick'n dirty module,
> full of leaks and errors. I just wanted to do the minimum to get a module.
> I've submitted the module to xmms people but never received an answer, but
> I'd gladly post it here.

I would certainly be interested in seeing it.  XMMS plus the necessary
output plug-in for Tru64 MME would be great!

Tim
--

Information Technology Services         (701) 231-1076 (Voice)
Room 242-J1, IACC Building              (701) 231-8541 (Fax)
North Dakota State University, Fargo, ND 58105-5164

 
 
 

MP3 player?

Post by AGi Staf » Sat, 16 Dec 2000 04:06:14




> > Just setup the multimedia on one of our machines here (drown on everyone
> > else with music ahhhhhh).  But so far I have been unsuccessful in
> > finding an MP3 layer for Tru64 4.0.

> > Anyone know of a good one out there?  ie: Port of xmms, xamp, xaudio
> > etc...

> > Thanks,
> > Jason

> Hello,

>   The forthcoming mpg123 player (console only) will support Tru64 MME. But
> it's not out yet.

>   By the way, I've compiled xmms 1.2.4 (a few tuning only had to be done to
> the source) on a Tru64 5.1 machine, and I've been able to tweak the MME
> mpg123 module into a xmms ouput plugin. It's a very quick'n dirty module,
> full of leaks and errors. I just wanted to do the minimum to get a module.
> I've submitted the module to xmms people but never received an answer, but
> I'd gladly post it here.

>   Again, don't expect too much from my module, it could happen to be not
> working for you, but on the other hand, it could work, so it's probably
> worth the try (I use it every day, along with cdda2wav for dumping WAV
> files from audio CDs, and lame for encoding mp3s).

>   Tell me if you're interested in the xmms module.

>   Best regards,

>     Jeremie Petit

I would definitely be interested in seeing the module.

Thanks,
Jason

 
 
 

MP3 player?

Post by AB » Sat, 16 Dec 2000 20:03:08


Quote:> I would definitely be interested in seeing the module.

> Thanks,
> Jason

I did a full rewrite of Jeremie's module.
Get it at http://ard.nu/tru64_mme.tar

Ard

 
 
 

MP3 player?

Post by Jeremie Peti » Tue, 19 Dec 2000 23:32:18



> I did a full rewrite of Jeremie's module.
> Get it at http://ard.nu/tru64_mme.tar

Yes, and you could have said that it works far better than what I had
quickly set up !

Many thanks for the work you did on this plugin,

    Jeremie.

BTW, for the record, the 'more generic' Makefile I suggested last day
which you did not take into account yet:

# Makefile for Tru64 MME Output Plugin for XMMS

XMMS_OUTPUTLIBDIR = `xmms-config --output-plugin-dir`

CC = cc
LD = cc
CP = cp
RM = rm

CFLAGS = -pthread -arch host `xmms-config --cflags` -DPIC -O2
-I/usr/include/mme

LINKFLAGS = -pthread -shared -expect_unresolved
'get_current_effect_plugin' -expect_unresolved 'effects_enabled'
`xmms-config --libs` -lmme

OBJECTS = about.o audio.o init.o mixer.o

SO_NAME = libtru64_mme.so

$(SO_NAME) : $(OBJECTS)
        $(LD) -o $(SO_NAME) $(LINKFLAGS) $(OBJECTS)

install : $(SO_NAME)
        -$(RM) $(XMMS_OUTPUTLIBDIR)/$(SO_NAME)
        $(CP) $(SO_NAME) $(XMMS_OUTPUTLIBDIR)
clean:
        rm -f $(OBJECTS) $(SO_NAME) so_locations

 
 
 

1. Need mp3 to mpy file converter for RCA Lyra RD1080 mp3 player

I have an RCA Lyra RD1080 mp3 player which connects through USB to my
computer running Fedora Core 2. I can read and copy files from its
filesystem just fine. However, the Lyra uses mpy files, (its proprietary
format) rather than mp3 files. Thus I need to convert my mp3 files prior
to downloading them to the Lyra. This is done under Windows using
MusicMatch Jukebox, but there is no Linux version of that program (there
was a beta version in 2001, but apparently it was never continued).

I have serached the web extensively to find an mp3 to mpy file
converter, with no luck.

Does anyone have a program that converts mp3 files to mpy files? Without
it, my player is useless with Linux.

Thanks

John McFee

2. changing TAB's to newlines?

3. MP3 Player 4 MP3 CD's?

4. PLEASE HELP WITH TIN BUG!!

5. Sound, Real Player, and MP3 players

6. Sis900 & RHL 7.1 network fails

7. CD Player and MP3 Player for Solaris 8

8. Booting using NT Boot Loader

9. MP3 Player & VCD Player

10. Compact Flash Mem for mp3 player (RCA Lyra)

11. where can i find a mp3 player

12. mp3 player with Linux support

13. Default MP3 Player?