Lines Matching full:aiff
1 """Convert "arbitrary" sound files to AIFF (Apple and SGI's audio format).
4 Uncompressed file type may be AIFF, WAV, VOC, 8SVX, NeXT/Sun, and others.
24 t.append('sox -t au - -t aiff -r 8000 -', '--')
34 t.append('sox -t hcom - -t aiff -r 22050 -', '--')
38 t.append('sox -t voc - -t aiff -r 11025 -', '--')
42 t.append('sox -t wav - -t aiff -', '--')
46 t.append('sox -t 8svx - -t aiff -r 16000 -', '--')
50 t.append('sox -t sndt - -t aiff -r 16000 -', '--')
54 t.append('sox -t sndr - -t aiff -r 16000 -', '--')
100 if ftype == 'aiff':
109 raise error, filename + ': conversion to aiff failed'