quasimoto.wave.mixins
index
/home/vkottler/src/vkottler/workspace/quasimoto/quasimoto/wave/mixins.py

A module hosting mixin classes related to WAVE files.

 
Classes
       
vcorelib.logging.LoggerMixin(builtins.object)
FormatMixin

 
class FormatMixin(vcorelib.logging.LoggerMixin)
    FormatMixin() -> None
 
A class mixin for classes that use wave format data.
 
 
Method resolution order:
FormatMixin
vcorelib.logging.LoggerMixin
builtins.object

Methods defined here:
__init__(self) -> None
Initialize this instance.
validate_header(self, header: runtimepy.codec.protocol.Protocol) -> None
Validate the 'fmt ' chunk data.

Readonly properties defined here:
channels
Get the number of channels in this stream.
sample_bits
Get the number of bits per sample.
sample_bytes
Get the number of bytes per sample.
sample_period
Get the sample period for this data.
sample_rate
Get the sample rate.

Data and other attributes defined here:
__annotations__ = {}
byte_order = <ByteOrder.LITTLE_ENDIAN: 2>

Methods inherited from vcorelib.logging.LoggerMixin:
log_time(self, message: str, *args, level: int = 20, reminder: bool = False, **kwargs) -> Iterator[NoneType]
A simple wrapper.

Data descriptors inherited from vcorelib.logging.LoggerMixin:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object