librespot-python/librespot/audio/decrypt/NoopAudioDecrypt.py

10 lines
213 B
Python
Raw Normal View History

2021-02-24 00:46:59 +01:00
from librespot.audio.decrypt import AudioDecrypt
class NoopAudioDecrypt(AudioDecrypt):
def decrypt_chunk(self, chunk_index: int, buffer: bytes):
pass
def decrypt_time_ms(self):
return 0