Lines Matching refs:aifc
1 :mod:`aifc` --- Read and write AIFF and AIFC files
4 .. module:: aifc
7 **Source code:** :source:`Lib/aifc.py`
34 Module :mod:`aifc` defines the following function:
48 the :keyword:`!with` block completes, the :meth:`~aifc.close` method is called.
57 .. method:: aifc.getnchannels()
62 .. method:: aifc.getsampwidth()
67 .. method:: aifc.getframerate()
72 .. method:: aifc.getnframes()
77 .. method:: aifc.getcomptype()
84 .. method:: aifc.getcompname()
91 .. method:: aifc.getparams()
98 .. method:: aifc.getmarkers()
106 .. method:: aifc.getmark(id)
112 .. method:: aifc.readframes(nframes)
119 .. method:: aifc.rewind()
125 .. method:: aifc.setpos(pos)
130 .. method:: aifc.tell()
135 .. method:: aifc.close()
148 .. method:: aifc.aiff()
154 .. method:: aifc.aifc()
161 .. method:: aifc.setnchannels(nchannels)
166 .. method:: aifc.setsampwidth(width)
171 .. method:: aifc.setframerate(rate)
176 .. method:: aifc.setnframes(nframes)
182 .. method:: aifc.setcomptype(type, name)
197 .. method:: aifc.setparams(nchannels, sampwidth, framerate, comptype, compname)
204 .. method:: aifc.setmark(id, pos, name)
210 .. method:: aifc.tell()
216 .. method:: aifc.writeframes(data)
225 .. method:: aifc.writeframesraw(data)
234 .. method:: aifc.close()