File: playaiff.py

package info (click to toggle)
python2.1 2.1.3dfsg-1sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 38,028 kB
  • ctags: 64,228
  • sloc: python: 186,023; ansic: 184,754; xml: 43,435; sh: 12,381; makefile: 3,523; perl: 3,108; lisp: 2,460; cpp: 106; sed: 2
file content (54 lines) | stat: -rwxr-xr-x 1,340 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import aiff
import al
import sys
import time

def main():
	v = 1
	c = al.newconfig()
	nchannels = c.getchannels()
	nsampframes = 0 # ???
	sampwidth = c.getwidth()
	samprate = 0.0 # unknown
	filename = sys.argv[1]
	f = open(filename, 'r')
	type, totalsize = aiff.read_chunk_header(f)
	if type <> 'FORM':
		raise aiff.Error, 'FORM chunk expected at start of file'
	aiff.read_form_chunk(f)
	while 1:
		try:
			type, size = aiff.read_chunk_header(f)
		except EOFError:
			break
		if v: print 'header:', `type`, size
		if type == 'COMM':
			nchannels, nsampframes, sampwidth, samprate = \
				aiff.read_comm_chunk(f)
			if v: print nchannels, nsampframes, sampwidth, samprate
		elif type == 'SSND':
			offset, blocksize = aiff.read_ssnd_chunk(f)
			if v: print offset, blocksize
			data = f.read(size-8)
			if size%2: void = f.read(1)
			p = makeport(nchannels, sampwidth, samprate)
			play(p, data, offset, blocksize)
		elif type in aiff.skiplist:
			aiff.skip_chunk(f, size)
		else:
			raise aiff.Error, 'bad chunk type ' + type

def makeport(nchannels, sampwidth, samprate):
	c = al.newconfig()
	c.setchannels(nchannels)
	c.setwidth(sampwidth/8)
	# can't set the rate...
	p = al.openport('', 'w', c)
	return p

def play(p, data, offset, blocksize):
	data = data[offset:]
	p.writesamps(data)
	while p.getfilled() > 0: time.sleep(0.01)

main()