Adapted to modern times

This commit is contained in:
Guido van Rossum 1992-12-14 14:11:15 +00:00
parent 63f4cdcdb8
commit 5ba6142723
1 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#! /usr/local/python
#! /usr/local/bin/python
# XXX This only works on SGIs running IRIX 4.0 or higher
@ -39,7 +39,7 @@ from Buttons import PushButton
# Pathnames
DEF_DB = '/usr/local/sounds' # Default directory of sounds
SOX = '/usr/local/sox' # Sound format conversion program
SOX = '/usr/local/bin/sox' # Sound format conversion program
SFPLAY = '/usr/sbin/sfplay' # Sound playing program
@ -311,7 +311,12 @@ validrates = (8000, 11025, 16000, 22050, 32000, 44100, 48000)
def playfile(filename):
killchild()
tuple = sndhdr.what(filename)
try:
tuple = sndhdr.what(filename)
except IOError, msg:
print 'Can\'t open', filename, msg
stdwin.fleep()
return
raw = 0
if tuple:
mode, rate = tuple[:2]