What exists out there, something that can randomly play MP3s from a folder (and optionally its sub-folder), maybe even multiple folders?
+ Reply to Thread
Results 1 to 10 of 10
-
Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
PHP based?
Code:<?php $list = array(); // Reinitiallize array for cleanliness $handle = fopen("list/playlist.txt","r"); // open the source file full of urls $i = 0; while (!feof($handle)) // As long as lines are coming in we do this { $temp=fgets($handle); $list[$i]=$temp; $i++; } shuffle($list); $z=0; fclose($handle); $handle=fopen("list/randomlist.m3u","w"); while ($z < $i) { $temp=$list[$z]; fputs($handle,$temp); $z++; } fclose($handle); ?>
I've haven't had the chance to get to it but have been meaning to just have it grab the directory contents instead of using a static list. [/code] -
Does QMP mean Quicktime?
Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
I was assuming you were aware of the shuffle option in most players....
Very light option is Foobar : http://www.foobar2000.org/
File>add directory
Playback>shuufle tracks
hit the play button. -
Some have it coalman, some don't. It may come as a surprise to you, but I've never had jukebox/player type software installed. I didn't want to start installing random stuff, I figured somebody here would know of something decent. And I was right!
I never really had an environment where I'd want to use my computer as a music player until recently. I just listened in WMP, when I listened to music. Generally I listen to audio (usually not music) in an editor or NLE.
That foobar was perfect. Thanks very much.Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
well when you say 'randomly play files', do you need the ability to play any and all files that may be in a particular location, or is it feasable to create a playlist and use shuffle play?
y'know, WMP actually has the ability to create 'auto playlists' where you set certain file properties, and it will play all the matching files it finds. if all you use is WMP anyway, try messing around with the auto playlists.. the only downside to this is the files always need to be added to WMP's library, but if you set it automatically monitor certain folders, it works pretty damn good!..I am just a worthless liar,
I am just an imbecil -
Originally Posted by thecoalmanWant my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS
Similar Threads
-
How play BDMV folder
By djdust in forum Blu-ray RippingReplies: 3Last Post: 4th Jan 2012, 04:00 -
Can't play MP3s on my Sony DVP NS355 DVD player
By harrylentil in forum DVD & Blu-ray PlayersReplies: 4Last Post: 6th Aug 2009, 14:04 -
how to play mp3's randomly in folder without play lists
By deejay.2001 in forum Software PlayingReplies: 4Last Post: 22nd Apr 2008, 13:27 -
What software should I use to extract DVD audio and convert it to mp3s?
By maccaneer in forum MacReplies: 2Last Post: 4th Sep 2007, 18:03 -
Play Large libraries randomly with random start times?
By criashi in forum Software PlayingReplies: 3Last Post: 5th Jul 2007, 09:15