Skip to content

Commit

Permalink
Merge branch 'master' into feat/embed_parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Lulalaby authored Apr 18, 2023
2 parents 4d943d6 + 8fb956c commit 9dc4548
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ These changes are available on the `master` branch, but have not yet been releas
- Removed `@client.once()` in favour of `@client.listen(once=True)`.
([#1957](https://github.com/Pycord-Development/pycord/pull/1957))

### Changed

- Suppressed FFMPEG output when recording voice channels.
([#1993](https://github.com/Pycord-Development/pycord/pull/1993))

### Fixed

- Fixed `AttributeError` caused by
Expand Down
2 changes: 2 additions & 0 deletions discord/sinks/m4a.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ def format_audio(self, audio):
"s16le",
"-ar",
"48000",
"-loglevel",
"error",
"-ac",
"2",
"-i",
Expand Down
2 changes: 2 additions & 0 deletions discord/sinks/mka.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ def format_audio(self, audio):
"s16le",
"-ar",
"48000",
"-loglevel",
"error",
"-ac",
"2",
"-i",
Expand Down
2 changes: 2 additions & 0 deletions discord/sinks/mkv.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ def format_audio(self, audio):
"s16le",
"-ar",
"48000",
"-loglevel",
"error",
"-ac",
"2",
"-i",
Expand Down
2 changes: 2 additions & 0 deletions discord/sinks/mp3.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ def format_audio(self, audio):
"s16le",
"-ar",
"48000",
"-loglevel",
"error",
"-ac",
"2",
"-i",
Expand Down
2 changes: 2 additions & 0 deletions discord/sinks/mp4.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ def format_audio(self, audio):
"s16le",
"-ar",
"48000",
"-loglevel",
"error",
"-ac",
"2",
"-i",
Expand Down
2 changes: 2 additions & 0 deletions discord/sinks/ogg.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ def format_audio(self, audio):
"s16le",
"-ar",
"48000",
"-loglevel",
"error",
"-ac",
"2",
"-i",
Expand Down

0 comments on commit 9dc4548

Please sign in to comment.