Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Compu Kasem (a Cyber-DJ)

by mcstayinskool (Acolyte)
on May 10, 2002 at 13:57 UTC ( [id://165639]=note: print w/replies, xml ) Need Help??


in reply to Compu Kasem (a Cyber-DJ)

This is way cool. It took me nearly an hour to compile the festival stuff, but amazingly it worked without much of any hacking. I added a little subroutine to pull in playlists from .m3u files (which are basically lists of paths to files). Here's the idea...
my @playlist; if ($ARGV[0] =~ /\.m3u$/i) { @playlist = fill_playlist($ARGV[0]); } elsif( @ARGV ) { @playlist = @ARGV; } else { say_error( "No playlist given. Please select some songs for me to p +lay!" ); } sub fill_playlist { my $playlist = shift; my @return; if (-r $playlist) { open(LIST,"<$playlist") or die "couldn't open $playlist: $!"; while(<LIST>) { next if /^#/; chomp; push @return, $_; } close(LIST); } else { say_error( "There was a problem accessing this playlist. Pleas +e select some songs for me to play!" ); exit; } return @return; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://165639]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (5)
As of 2024-04-18 05:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found