Configuring XMMS to play Audio CDs

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Configuring XMMS to play Audio CDs
# 1  
Old 03-31-2012
Configuring XMMS to play Audio CDs

After thrashing about in the wilds of Googland I came up with the following configuration steps. I had it working at one point but it sure ain't worin now! Could someone look at it and see where I went wrong? Thanks!
Code:
Rt. Click: on XMMS panel
Click: Options > Preferences
  AUDIO I/O PLUGINS--
    Input Plugins, Click: CD Audio Player 1.2.11
    Press: Configure
    CD Audio Player--
       Device & Drive 1:
         For Device enter: /dev/cdrom
         For Directory enter: /mnt/cdrom
         For Play Mode click: Digital Audio Extraction
           (ignores whether there is an audio cable connected)
         Click: Check Drive
         Click: Close on pop-up dialog box
         Note: Click on Add Drive only if needing multiple drives
         Click: OK
    Output Plugins, Click: ALSA 1.2.11
    Press: Configure
    ALSA Driver pop-up should have:
                     Audio device=default and
                     Mixer device=Master
         Select: Mixer card=VIA 8235
    Press: OK
Press: APPLY
Press: OK (AUDIO/I/O PLUGINS)


Last edited by Scott; 03-31-2012 at 10:37 AM.. Reason: Code tags
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Slackware

Problems with audio recording in Audacity 2.0.5. Slackware64 14.1; Intel HD Audio.

I'm trying to record audio using Audacity 2.0.5 installed from SlackBuilds. My system is 64-bit Slackware 14.1 and a sound card is Intel HD Audio. I didn't change my sound system to OSS. (Default sound system in Slackware 14.1 is ALSA, isn't it?) First, I set Internal Microphone slider in KMix... (2 Replies)
Discussion started by: qzxcvbnm
2 Replies

2. Solaris

Solaris 8 02/04 CDs

Hi I have misplaced my Solaris 8 02/04 CDs - is there any way to get a copy? I have to re-install a server and it needs to be this version. Mick (2 Replies)
Discussion started by: mickg007
2 Replies

3. UNIX for Dummies Questions & Answers

linux xmms sound problems

Dear all, I have been using suse linux for as long as I can remember. However, for every installation I get the same problem. Once the installation is completed, and all of my devices (brand new hardware, from reknown brands) are detected, I decide to start doing some work, and play some... (2 Replies)
Discussion started by: bionicfysh
2 Replies

4. UNIX for Dummies Questions & Answers

Xmms Crash in Red Hat 8

I have a 500mhz K6 that I'm running Red Hat 8 on. I use xmms for all my music media playing purposes, but There seems to be an issue between xmms and volume control. Every now and then when I adjust the volume through aumix xmms freezes up and sends the sound into a runaway loop that I cant seem... (2 Replies)
Discussion started by: djtrippin
2 Replies
Login or Register to Ask a Question
CD(3pm) 						User Contributed Perl Documentation						   CD(3pm)

NAME
Audio::CD - Perl interface to libcdaudio (cd + cddb) SYNOPSIS
use Audio::CD (); my $cd = Audio::CD->init; DESCRIPTION
Audio::CD provides a Perl interface to libcdaudio by Tony Arcieri, available from http://cdcd.undergrid.net/ Several classes provide glue for the libcdaudio functions and data structures. Audio::CD Class init Initialize the Audio::CD object: my $cd = Audio::CD->init; stat Stat the Audio::CD object, returns an Audio::CD::Info object. my $info = $cd->stat; cddb Returns an Audio::CDDB object. my $cddb = $cd->cddb; play Play the given cd track (defaults to 1). $cd->play(1); stop Stop the cd. $cd->stop; pause Pause the cd. $cd->pause; resume Resume the cd. $cd->resume; eject Eject the cd. $cd->eject; close Close the cd tray. $cd->close; play_frames $cd->play_frames($startframe, $endframe); play_track_pos $cd->play_track_pos($strarttrack, $endtrack, $startpos); play_track $cd->play_track($strarttrack, $endtrack); track_advance $cd->track_advance($endtrack, $minutes, $seconds); advance $cd->advance($minutes, $seconds); get_volume Returns an Audio::CD::Volume object. my $vol = $cd->get_volume; set_volume $cd->set_volume($vol); Audio::CDDB Class discid my $id = $cddb->discid; lookup Does a cddb lookup and returns an Audio::CD::Data object. my $data = $cddb->lookup; Audio::CD::Data Class artist my $artist = $data->artist; title my $title = $data->title; genre my $genre = $data->genre; tracks Returns an array reference of Audio::CD::Track objects. my $foo = $data->tracks($info); my @tracks = @$foo; Audio::CD::Track Class name my $name = $track->name; Audio::CD::Info Class mode Returns the CD mode, one of PLAYING, PAUSED, COMPLETED, NOSTATUS; my $track = $info->mode; print "playing" if $info->mode == Audio::CD::PLAYING; present Returns true if a disc is present. $cd->play if $info->present; current_track Returns the current track number being played or paused. my $track = $info->current_track; first_track Returns the number of the first track on the CD. my $track = $info->first_track; total_tracks Returns the total number of tracks on the cd. my $track = $info->total_tracks; track_time Returns the current track play time: my($minutes, $seconds) = $info->track_time; time Returns the current disc play time: my($minutes, $seconds) = $info->time; length Returns the disc length time: my($minutes, $seconds) = $info->length; tracks Returns an array reference of Audio::CD::Info::Track objects. my $foo = $info->tracks; my @tracks = @$foo; Audio::CD::Info::Track Class length Returns the track length time: my($minutes, $seconds) = $tinfo->length; pos Returns the track position on the CD: my($minutes, $seconds) = $tinfo->pos; type Returns the track type (either TRACK_AUDIO or TRACK_DATA): if ($tinfo->type == Audio::CD::TRACK_AUDIO) { print "audio track "; } elsif ($tinfo->type == Audio::CD::TRACK_DATA) { print "data track "; } is_audio Returns true if the track is an audio track; equivalent to the test: $tinfo->type == Audio::CD::TRACK_AUDIO ? 1 : 0 is_data Returns true if the track is a data track; equivalent to the test: $tinfo->type == Audio::CD::TRACK_DATA ? 1 : 0 SEE ALSO
Xmms(3) AUTHOR
Perl interface by Doug MacEachern libcdaudio and cddb_lookup.c by Tony Arcieri perl v5.14.2 2011-11-15 CD(3pm)