Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / v8plus / html / python / lib / module-ossaudiodev.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel="STYLESHEET" href="lib.css" type='text/css' />
<link rel="SHORTCUT ICON" href="../icons/pyfav.png" type="image/png" />
<link rel='start' href='../index.html' title='Python Documentation Index' />
<link rel="first" href="lib.html" title='Python Library Reference' />
<link rel='contents' href='contents.html' title="Contents" />
<link rel='index' href='genindex.html' title='Index' />
<link rel='last' href='about.html' title='About this document...' />
<link rel='help' href='about.html' title='About this document...' />
<link rel="prev" href="module-sndhdr.html" />
<link rel="parent" href="mmedia.html" />
<link rel="next" href="ossaudio-device-objects.html" />
<meta name='aesop' content='information' />
<title>14.11 ossaudiodev -- Access to OSS-compatible audio devices</title>
</head>
<body>
<DIV CLASS="navigation">
<div id='top-navigation-panel' xml:id='top-navigation-panel'>
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="14.10 sndhdr "
href="module-sndhdr.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="14. Multimedia Services"
href="mmedia.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="14.11.1 Audio Device Objects"
href="ossaudio-device-objects.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Library Reference</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
border='0' height='32' alt='Module Index' width='32' /></a></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="module-sndhdr.html">14.10 sndhdr </A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="mmedia.html">14. Multimedia Services</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="ossaudio-device-objects.html">14.11.1 Audio Device Objects</A>
</div>
<hr /></div>
</DIV>
<!--End of Navigation Panel-->
<H1><A NAME="SECTION00161100000000000000000">
14.11 <tt class="module">ossaudiodev</tt> --
Access to OSS-compatible audio devices</A>
</H1>
<P>
<A NAME="module-ossaudiodev"></A>
<p class="availability">Availability: <span
class="platform">Linux, FreeBSD</span>.</p>
<P>
<span class="versionnote">New in version 2.3.</span>
<P>
This module allows you to access the OSS (Open Sound System) audio
interface. OSS is available for a wide range of open-source and
commercial Unices, and is the standard audio interface for Linux and
recent versions of FreeBSD.
<P>
<div class="seealso">
<p class="heading">See Also:</p>
<dl compact="compact" class="seetitle">
<dt><em class="citetitle"><a href="http://www.opensound.com/pguide/oss.pdf"
>Open Sound System Programmer's Guide</a></em></dt>
<dd>the official
documentation for the OSS C API</dd>
</dl>
<div class="seetext"><p>The module defines a large number of constants supplied by
the OSS device driver; see <code>&lt;sys/soundcard.h&gt;</code> on either
Linux or FreeBSD for a listing .</p></div>
</div>
<P>
<tt class="module">ossaudiodev</tt> defines the following variables and functions:
<P>
<dl><dt><b><span class="typelabel">exception</span>&nbsp;<tt id='l2h-4770' xml:id='l2h-4770' class="exception">OSSAudioError</tt></b></dt>
<dd>
This exception is raised on certain errors. The argument is a string
describing what went wrong.
<P>
(If <tt class="module">ossaudiodev</tt> receives an error from a system call such as
<tt class="cfunction">open()</tt>, <tt class="cfunction">write()</tt>, or <tt class="cfunction">ioctl()</tt>, it
raises <tt class="exception">IOError</tt>. Errors detected directly by
<tt class="module">ossaudiodev</tt> result in <tt class="exception">OSSAudioError</tt>.)
<P>
(For backwards compatibility, the exception class is also available as
<code>ossaudiodev.error</code>.)
</dd></dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-4771' xml:id='l2h-4771' class="function">open</tt></b>(</nobr></td>
<td><var></var><big>[</big><var>device, </var><big>]</big><var>mode</var>)</td></tr></table></dt>
<dd>
Open an audio device and return an OSS audio device object. This
object supports many file-like methods, such as <tt class="method">read()</tt>,
<tt class="method">write()</tt>, and <tt class="method">fileno()</tt> (although there are subtle
differences between conventional Unix read/write semantics and those of
OSS audio devices). It also supports a number of audio-specific
methods; see below for the complete list of methods.
<P>
<var>device</var> is the audio device filename to use. If it is not
specified, this module first looks in the environment variable
<a class="envvar" id='l2h-4773' xml:id='l2h-4773'>AUDIODEV</a> for a device to use. If not found, it falls back to
<span class="file">/dev/dsp</span>.
<P>
<var>mode</var> is one of <code>'r'</code> for read-only (record) access,
<code>'w'</code> for write-only (playback) access and <code>'rw'</code> for both.
Since many sound cards only allow one process to have the recorder or
player open at a time, it is a good idea to open the device only for the
activity needed. Further, some sound cards are half-duplex: they can be
opened for reading or writing, but not both at once.
<P>
Note the unusual calling syntax: the <em>first</em> argument is optional,
and the second is required. This is a historical artifact for
compatibility with the older <tt class="module">linuxaudiodev</tt> module which
<tt class="module">ossaudiodev</tt> supersedes. </dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-4772' xml:id='l2h-4772' class="function">openmixer</tt></b>(</nobr></td>
<td><var></var><big>[</big><var>device</var><big>]</big><var></var>)</td></tr></table></dt>
<dd>
Open a mixer device and return an OSS mixer device object.
<var>device</var> is the mixer device filename to use. If it is
not specified, this module first looks in the environment variable
<a class="envvar" id='l2h-4774' xml:id='l2h-4774'>MIXERDEV</a> for a device to use. If not found, it falls back to
<span class="file">/dev/mixer</span>.
<P>
</dl>
<P>
<p><br /></p><hr class='online-navigation' />
<div class='online-navigation'>
<!--Table of Child-Links-->
<A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></a>
<UL CLASS="ChildLinks">
<LI><A href="ossaudio-device-objects.html">14.11.1 Audio Device Objects</a>
<LI><A href="mixer-device-objects.html">14.11.2 Mixer Device Objects</a>
</ul>
<!--End of Table of Child-Links-->
</div>
<DIV CLASS="navigation">
<div class='online-navigation'>
<p></p><hr />
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="14.10 sndhdr "
href="module-sndhdr.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="14. Multimedia Services"
href="mmedia.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="14.11.1 Audio Device Objects"
href="ossaudio-device-objects.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Library Reference</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
border='0' height='32' alt='Module Index' width='32' /></a></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="module-sndhdr.html">14.10 sndhdr </A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="mmedia.html">14. Multimedia Services</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="ossaudio-device-objects.html">14.11.1 Audio Device Objects</A>
</div>
</div>
<hr />
<span class="release-info">Release 2.4.2, documentation updated on 28 September 2005.</span>
</DIV>
<!--End of Navigation Panel-->
<ADDRESS>
See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.
</ADDRESS>
</BODY>
</HTML>