9 lines
185 B
Python
9 lines
185 B
Python
from pydub import AudioSegment
|
|
|
|
|
|
class BaseOutputDevice:
|
|
def send_audio(self, audio: AudioSegment) -> None:
|
|
raise NotImplementedError
|
|
|
|
def terminate(self):
|
|
pass
|