Browse Source

Add silence padding after transmission breaks

Prevents unwanted interpolation/distortion of audio by sending silence
packets after pausing or ending the audio stream.
pull/9581/head
Imayhaveborkedit 2 years ago
committed by GitHub
parent
commit
48b4ea84c9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/opus.py
  2. 13
      discord/player.py

2
discord/opus.py

@ -72,6 +72,8 @@ __all__ = (
_log = logging.getLogger(__name__)
OPUS_SILENCE = b'\xF8\xFF\xFE'
c_int_ptr = ctypes.POINTER(ctypes.c_int)
c_int16_ptr = ctypes.POINTER(ctypes.c_int16)
c_float_ptr = ctypes.POINTER(ctypes.c_float)

13
discord/player.py

@ -40,7 +40,7 @@ from typing import Any, Callable, Generic, IO, Optional, TYPE_CHECKING, Tuple, T
from .enums import SpeakingState
from .errors import ClientException
from .opus import Encoder as OpusEncoder
from .opus import Encoder as OpusEncoder, OPUS_SILENCE
from .oggparse import OggStream
from .utils import MISSING
@ -720,6 +720,7 @@ class AudioPlayer(threading.Thread):
while not self._end.is_set():
# are we paused?
if not self._resumed.is_set():
self.send_silence()
# wait until we aren't
self._resumed.wait()
continue
@ -744,6 +745,8 @@ class AudioPlayer(threading.Thread):
delay = max(0, self.DELAY + (next_time - time.perf_counter()))
time.sleep(delay)
self.send_silence()
def run(self) -> None:
try:
self._do_run()
@ -800,3 +803,11 @@ class AudioPlayer(threading.Thread):
asyncio.run_coroutine_threadsafe(self.client.ws.speak(speaking), self.client.client.loop)
except Exception:
_log.exception("Speaking call in player failed")
def send_silence(self, count: int = 5) -> None:
try:
for n in range(count):
self.client.send_audio_packet(OPUS_SILENCE, encode=False)
except Exception:
# Any possible error (probably a socket error) is so inconsequential it's not even worth logging
pass

Loading…
Cancel
Save