Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Jun 2005 18:46:54 +0200
From:      Markus Trippelsdorf <markus@trippelsdorf.de>
To:        Bjarne Wichmann Petersen <freebsd.nospam@mekanix.dk>
Cc:        freebsd-ports@freebsd.org
Subject:   Re: Podcast client
Message-ID:  <20050628164654.GA3609@bsd.trippelsdorf.de>
In-Reply-To: <200506281757.29386.freebsd.nospam@mekanix.dk>
References:  <200506281757.29386.freebsd.nospam@mekanix.dk>

next in thread | previous in thread | raw e-mail | index | archive | help

--pWyiEgJYm5f9v55/
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

On Tue, Jun 28, 2005 at 05:57:28PM +0200, Bjarne Wichmann Petersen wrote:
> 
> Is there a podcast-client available for FreeBSD? Freshports doesn't turn up 
> anything.
>
Attached is a simple shell-podder (needs mplayer and wget).
Use the "<" and ">" keys in mplayer to jump to the next (previous) song.
-- 
Markus

--pWyiEgJYm5f9v55/
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=shellpodder

#!/bin/sh
#Put your favourite podcast links into pod.conf
rm -f playlist.pod
while read podcast
	do
	file=$(wget -q $podcast -O - | tr '\r' '\n' | tr \' \" | sed -n 's/.*url="\([^"]*\)".*/\1/p')
	for url in $file
		do
		echo $url >> playlist.pod
		done
	done < pod.conf
mplayer -playlist playlist.pod

--pWyiEgJYm5f9v55/
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="pod.conf"

http://www.de-bug.de/pod/wp-rss2.php

--pWyiEgJYm5f9v55/--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20050628164654.GA3609>