From owner-freebsd-questions Thu Jul 25 17:29: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1949837B401 for ; Thu, 25 Jul 2002 17:28:53 -0700 (PDT) Received: from mail.hitmedia.com (mail.hitmedia.com [205.162.11.163]) by mx1.FreeBSD.org (Postfix) with SMTP id 8456D43E3B for ; Thu, 25 Jul 2002 17:28:52 -0700 (PDT) (envelope-from bsd@hitmedia.com) Received: (qmail 8195 invoked by uid 0); 26 Jul 2002 00:28:54 -0000 Date: Thu, 25 Jul 2002 17:28:54 -0700 From: BSD baby To: MET Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Are there Console Based MP3 Players ? Message-ID: <20020725172854.A768@mail.hitmedia.com> References: <003601c2340d$cec48500$6801a8c0@SURVIVAL> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <003601c2340d$cec48500$6801a8c0@SURVIVAL>; from met@uberstats.com on Thu, Jul 25, 2002 at 03:02:21PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Yes! I've got a great method I can recommend for mpg123. My BSD box has no monitor, no XFree, but it has 80 gigs of MP3s and a great set of speakers hooked up to it. I ssh into it from whatever room in the house I'm in and use one of these commands. (Aliased from ~/.bashrc) # MP3 alias play='ls -l1 *.mp3 > ALL.m3u && mpg123 --list ALL.m3u' alias playnew='ls -tl1 *.mp3 > ALL.m3u && mpg123 --list ALL.m3u' alias playr='ls -l1 *.mp3 > ALL.m3u && mpg123 -z --list ALL.m3u' IN OTHER WORDS: cd /mp3/AcidJazz play # <-- plays in alphabetical order playnew # <-- plays newest-dated MP3s first playr # <-- plays in random order! I have like 20 gigs of JAZZ in one folder, so it's wonderful to just type "cd /mp3/jazz && playr" and have it play randomly all day long as I program. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message