summaryrefslogtreecommitdiff
path: root/rc
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@gmx.de>2013-10-30 00:09:27 +0100
committercinap_lenrek <cinap_lenrek@gmx.de>2013-10-30 00:09:27 +0100
commit191568e549da0981abac44e38b2b40d2bb245fc7 (patch)
tree342e535a8d94befcca2c1a57c2f113a4faf71e6d /rc
parentb35df8dd22de95d51fb49b700b19935eb2c46e4a (diff)
play: guess file type from file extension if mimetype fails
Diffstat (limited to 'rc')
-rwxr-xr-xrc/bin/play31
1 files changed, 22 insertions, 9 deletions
diff --git a/rc/bin/play b/rc/bin/play
index f24115595..6851e4cbf 100755
--- a/rc/bin/play
+++ b/rc/bin/play
@@ -22,23 +22,23 @@ fn sigexit {
}
fn play1 {
- if(~ $#* 0){
+ if(! ~ $#* 2){
tmp=(/tmp/play.$pid.$#tmp.tmp $tmp)
dd -bs 8192 -count 1 >$tmp(1) >[2]/dev/null
- cat $tmp(1) /fd/0 | play1 `{file -m $tmp(1)} xxx
+ cat $tmp(1) /fd/0 | play1 $1 `{file -m $tmp(1)}
cleanup
}
if not {
- switch($1){
+ switch($2){
case *plain*
sed 's/ //g' | while(j=`{read}){
echo $"j >[1=2]
if(~ $"j http:* https:* HTTP:* HTTPS:*){
- hget -r 'Icy-MetaData: 0' $j | play1
+ hget -r 'Icy-MetaData: 0' $"j | play1 $"j
}
if not {
if(test -r $"j)
- play1 <$"j
+ play1 <$"j $"j
if not {
echo $argv0: 'can''t open file:' $"j >[1=2]
}
@@ -55,9 +55,22 @@ fn play1 {
case *audio/basic*
audio/sundec
case *pls*
- awk 'BEGIN {FS="="} /^File/{print $2}' | play1 plain
+ awk 'BEGIN {FS="="} /^File/{print $2}' | play1 list plain
case *
- echo $argv0: unknown format: $1 >[1=2]
+ switch($1){
+ case *.mp3 *.MP3
+ audio/mp3dec
+ case *.ogg *.OGG
+ audio/oggdec
+ case *.wav *.WAV
+ audio/wavdec
+ case *.flac *.FLAC
+ audio/flacdec
+ case *.au *.AU
+ audio/sundec
+ case *
+ echo $argv0: $1: unknown format: $2 >[1=2]
+ }
}
}
}
@@ -82,6 +95,6 @@ while(~ $1 -*){
@{echo pri 13 >/proc/$pid/ctl} >/dev/null >[2=1]
>$out {
- if(~ $#* 0){play1; exit}
- for(i){echo $i} | play1 plain
+ if(~ $#* 0){play1 stdin; exit}
+ for(i){echo $i} | play1 args plain
}