Updates for release 0.3:

setup.py was extended for pypi.

doc/index.html is automatically rewritten by doc/src/Makefile to add 
SourceForge links. index.html is now the standard homepage for pyalsaaudio.

Minor documentation fixes (capitalisation, spelling, etc.). Caspers email is 
hidden in the documentation.


git-svn-id: svn://svn.code.sf.net/p/pyalsaaudio/code/trunk@14 ec2f30ec-7544-0410-870e-f70ca00c83f0
This commit is contained in:
larsimmisch
2008-01-24 12:30:46 +00:00
parent fa12a62e57
commit 2cf24ef81b
27 changed files with 678 additions and 588 deletions

View File

@@ -5,7 +5,7 @@
\platform{Linux}
\moduleauthor{Casper Wilstrup}{cwi@unispeed.com} % Author of the module code;
\moduleauthor{Casper Wilstrup} % {cwi@aves.dk} % Author of the module code;
\modulesynopsis{ALSA sound support}
@@ -31,7 +31,7 @@ ALSA.
\begin{funcdesc}{mixers}{\optional{cardname}}
List the available mixers. The optional \var{cardname} specifies which
card should be queried (this is only relevant if you have more than one
sound card). Omit to use the default sound card
sound card). Omit to use the default sound card.
\end{funcdesc}
\begin{classdesc}{PCM}{\optional{type}, \optional{mode}, \optional{cardname}}
@@ -247,7 +247,7 @@ periods by calling write a couple of times, and then use some timer method to wr
the device every period. The purpose of the preloading is to avoid underrun clicks if the used timer
doesn't expire exactly on time.
Also note, that most timer API's that you can find for Python will cummulate time delays: If you set the timer
Also note, that most timer APIs that you can find for Python will cummulate time delays: If you set the timer
to expire after 1/10'th of a second, the actual timeout will happen slightly later, which will accumulate to
quite a lot after a few seconds. Hint: use time.time() to check how much time has really passed, and add
extra writes as nessecary.