view audtool/examples/infoline.sh @ 2155:840263ee3a5c trunk

[svn] - fix the logic of bmp_playback_stop(). now JTF works well even if the playing is paused.
author yaz
date Mon, 18 Dec 2006 03:34:52 -0800
parents 6af3f8fb2ed0
children
line wrap: on
line source

#!/bin/sh
UNUSED=0
while [  $UNUSED -lt 1 ]; do
	PLAYTIME=$(audtool current-song-output-length)
	SONGTITLE=$(audtool current-song)
	SONGLEN=$(audtool current-song-length)
	echo -n "[>] $PLAYTIME $SONGTITLE ($SONGLEN)                     "
	sleep 1
	printf "\r"
done