Changeset 6761cd4
- Timestamp:
- Oct 22, 2003, 4:36:08 PM (21 years ago)
- Branches:
- master, debian, mac, no-cups, nodebathena, web
- Children:
- 53d7625
- Parents:
- b281379
- git-author:
- jhawk <jhawk> (10/22/03 16:36:08)
- git-committer:
- jhawk <jhawk> (10/22/03 16:36:08)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
gutenbach/debian/lib/sipbmp3-filter
rb281379 r6761cd4 2 2 # Play the data on STDIN as an audio file 3 3 # 4 # $Id: sipbmp3-filter,v 1. 9 2003-10-22 20:27:44 jtwangExp $4 # $Id: sipbmp3-filter,v 1.10 2003-10-22 20:36:08 jhawk Exp $ 5 5 # $Source: /tmp/tmp.UFBNno9997/RCS/sipbmp3-filter,v $ 6 6 # … … 28 28 29 29 # Attach necessary lockers 30 system("/bin/athena/attach -h -n -q infoagents sipb outland consult 2>&1 > /dev/null"); 30 system("/bin/athena/attach -h -n -q infoagents sipb outland ' . 31 'consult 2>&1 > /dev/null"); 31 32 32 33 # Select the correct output device and set the volume 33 system("/usr/local/bin/audio_setdevice -out headphones 100 2>&1 </dev/null > /dev/null"); 34 system("/usr/local/bin/audio_setdevice -out headphones 100 ' . 35 '2>&1 </dev/null > /dev/null"); 34 36 35 37 # The command line we get from lpd is (no spaces between options and args): … … 59 61 60 62 # Status messages at start of playback 61 open(ZEPHYR, '|/usr/athena/bin/zwrite -d -n -c sipb-auto -i sipbmp3@xcb -s "SIPB LPR music spooler"'); 63 open(ZEPHYR, '|/usr/athena/bin/zwrite -d -n -c sipb-auto -i ' . 64 'sipbmp3@xcb -s "SIPB LPR music spooler"'); 62 65 print(ZEPHYR "User $opts{'n'} on host $opts{'H'} is playing:\n"); 63 66 … … 163 166 elsif ($contenttype eq "application/ogg") { $format="OGG" } 164 167 else { 165 print ZEPHYR "Unknown Content-Type $contenttype for URI $uri\n"; 168 print ZEPHYR 169 "Unknown Content-Type $contenttype for URI $uri\n"; 166 170 close(ZEPHYR); 167 171 } … … 169 173 } 170 174 else { # child 171 exec("/mit/sipb/bin/w3m","-dump_head",$uri) || die "Couldn't exec"; 175 exec("/mit/sipb/bin/w3m", "-dump_head", $uri) 176 || die "Couldn't exec"; 172 177 } 173 178 } else { … … 221 226 222 227 # Prepare to write status: 223 open(ZEPHYR, '|/usr/athena/bin/zwrite -d -n -c sipb-auto -i sipbmp3@xcb -s "SIPB LPR music spooler"'); 228 open(ZEPHYR, '|/usr/athena/bin/zwrite -d -n -c sipb-auto -i ' . 229 'sipbmp3@xcb -s "SIPB LPR music spooler"'); 224 230 225 231 # fork for mpg123 … … 249 255 # redirect STDERR to STDOUT 250 256 open STDERR, '>&STDOUT'; 251 exec("/mit/infoagents/bin/mpg123","-b16384","-q",$up,$uri) or die "Couldn't exec"; 257 exec("/mit/infoagents/bin/mpg123", "-b16384", "-q", $up, $uri) || 258 die "Couldn't exec"; 252 259 } 253 260 } … … 366 373 367 374 # Done. Status: 368 open(ZEPHYR, '|/usr/athena/bin/zwrite -d -n -c sipb-auto -i sipbmp3@xcb -s "SIPB LPR music spooler"'); 375 open(ZEPHYR, '|/usr/athena/bin/zwrite -d -n -c sipb-auto -i ' . 376 'sipbmp3@xcb -s "SIPB LPR music spooler"'); 369 377 370 378 # Check if there were any errors … … 460 468 # redirect STDERR to STDOUT 461 469 open STDERR, '>&STDOUT'; 462 exec("/mit/sipb/bin/ogg123","-b40000","-dau","-q","-f","-",$uri); 470 exec("/mit/sipb/bin/ogg123","-b40000","-dau","-q","-f","-",$uri) || 471 die "Couldn't exec"; 463 472 } 464 473 }
Note: See TracChangeset
for help on using the changeset viewer.