2021-07-25 17:31:56 +00:00
|
|
|
from csdr.chain import Chain
|
|
|
|
from pycsdr.modules import AudioResampler, Convert, AdpcmEncoder
|
|
|
|
from pycsdr.types import Format
|
|
|
|
|
|
|
|
|
|
|
|
class ClientAudioChain(Chain):
|
|
|
|
def __init__(self, inputRate: int, clientRate: int, compression: str):
|
|
|
|
workers = []
|
|
|
|
if inputRate != clientRate:
|
|
|
|
workers += [AudioResampler(inputRate, clientRate)]
|
|
|
|
workers += [Convert(Format.FLOAT, Format.SHORT)]
|
|
|
|
if compression == "adpcm":
|
2021-07-25 18:06:14 +00:00
|
|
|
workers += [AdpcmEncoder(sync=True)]
|
2021-07-25 17:31:56 +00:00
|
|
|
super().__init__(*workers)
|