LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Music without GUI (https://www.linuxquestions.org/questions/linux-software-2/music-without-gui-802707/)

abakhiet 04-18-2010 12:04 PM

Music without GUI
 
Hola,
this is my first post in this awesome forum, i wish that i collect the most bebefits from here.
I need to use some Music software like winamp, but i don't have any GUI in my server, only the black screen.
I need to make some internal sound system in my building, so i need that software to manage my playlist in 24 hours around the day.
Thanks in advance.

troop 04-18-2010 12:39 PM

mpd - my favorite
moc
xmms2 - new face among music software.

curtdodds 04-18-2010 01:48 PM

music, video, web, email and more without gui (X)
 
Check out inx linux.
It is a live CD running without X.
I believe they use mplayer for sound.

I'm sure you will learn many more things from this CD.
http://inx.maincontent.net/

Shadow_7 04-18-2010 02:03 PM

If it's for commercial purposes and you're using copyrighted music, you might need to pay royalties. RIAA?

Otherwise it depends on what your needs are.

$ while true; do mplayer ./*.wav; done

$ while true; do mplayer cdda:// ; done

sub in your player of choice. aplay / play / mplayer / and many others.

If you want a playlist?

$ find . -iname '*.wav*' > playlist.txt
$ while true; do cat playlist.txt | while read INPUT; do mplayer $INPUT; done; done

And probably other options depending on if you want to change your playlist on the fly or other things.

sycamorex 04-18-2010 02:15 PM

I'm using mp3blaster for cli music. It supports playlists, file browsing, etc.

abakhiet 04-19-2010 01:08 AM

mp3Blaster
 
1 Attachment(s)
Dear all,
i think that mp3blaster is fine, but really i have many problems with it,
the first and man problem is there is no sound although the volume and the mixer is 100%, please see the attached picture.

Quote:

Originally Posted by sycamorex (Post 3939618)
I'm using mp3blaster for cli music. It supports playlists, file browsing, etc.

also, i need to make some script to play a specific sound at a certain time, then i need to kill that process.

propofol 04-19-2010 01:18 AM

Have you considered setting up a media server such as MediaTomb: http://mediatomb.cc/?

Regards,
Stefan

abakhiet 04-21-2010 01:55 AM

please help me solving that problem :D

abakhiet 04-23-2010 01:24 PM

ohhhhhhh, no one :S

10110111 04-23-2010 05:42 PM

Try alsamixer program, check that all needed channels are unmuted and set to 100%.

abakhiet 04-24-2010 05:42 AM

Quote:

Originally Posted by 10110111 (Post 3945764)
Try alsamixer program, check that all needed channels are unmuted and set to 100%.

Really thanks my friend, but i need to ask you is the output port will be my audio card ??? ;)

10110111 04-24-2010 06:06 AM

Emm... what do you mean? alsamixer will only work with audio card output channels.

abakhiet 04-24-2010 11:34 AM

Quote:

Originally Posted by 10110111 (Post 3946139)
Emm... what do you mean? alsamixer will only work with audio card output channels.

ok, my friend
thanks for your help
but i need to ask is it works in terminal, i mean the black screen
as i don't have any GUI :D

MTK358 04-24-2010 12:41 PM

1 Attachment(s)
Of course it's a terminal app. Have you even tried it?

Brains 04-24-2010 02:21 PM

Maybe a little clarity might help.

First:
Make sure your sound device is supported in a base installation of the "un-mentioned" flavor of Linux your server is running. It is possible you need to to compile modules to get it running. The command: lspci -vv may help determine the sound device(s) installed.

To give a little more direction to what has already been suggested:
Make sure alsa-utils is installed, when installing with a package manager...other necessary packages like alsa-base will be installed. After installation, run command: alsamixer to configure channels. In some instances as is with my Audigy 2ZS audio card, some channels need to be enabled but muted for sound to come through, so playing with mute on/off is often required. Once you have sound after setting up alsamixer, run command as root or sudo: alsactl store to save the new settings.


All times are GMT -5. The time now is 03:16 AM.