[ python-Bugs-1169212 ] small change in ossaudiodev module doc.
SourceForge.net
noreply at sourceforge.net
Sun Mar 27 22:56:05 CEST 2005
Bugs item #1169212, was opened at 2005-03-23 16:10
Message generated for change (Settings changed) made by mwh
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1169212&group_id=5470
Category: Documentation
Group: Python 2.4
Status: Open
Resolution: None
Priority: 5
Submitted By: hiower (hiower)
>Assigned to: Greg Ward (gward)
Summary: small change in ossaudiodev module doc.
Initial Comment:
from
http://docs.python.org/lib/ossaudio-device-objects.html:
AFMT_U8 Unsigned, 8-bit audio
AFMT_S16_LE Unsigned, 16-bit audio, little-endian byte
order
(as used by Intel processors)
AFMT_S16_BE Unsigned, 16-bit audio, big-endian byte order
(as used by 68k, PowerPC, Sparc)
AFMT_S8 Signed, 8 bit audio
AFMT_U16_LE Signed, 16-bit little-endian audio
AFMT_U16_BE Signed, 16-bit big-endian audio
Note how the U:s and S:s are switched compared to
signed and unsigned, this should surely not be like this?
Perhaps AFMT_AC3 and AFMT_S16_NE should be included as
well? (if anyone uses it?)
also, maybe this line:
write( data)
Write the Python string data to the audio device
and return the number of bytes written.
could be subtituted with something like this:
write( data)
Write the Python data to the audio device and
return the number of bytes written. The data should be
a string or a list (of amplitude values...something)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1169212&group_id=5470
More information about the Python-bugs-list
mailing list