Podcast client

Markus Trippelsdorf markus at trippelsdorf.de
Tue Jun 28 16:47:01 GMT 2005


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
-------------- next part --------------
#!/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
-------------- next part --------------
http://www.de-bug.de/pod/wp-rss2.php


More information about the freebsd-ports mailing list