mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
Let's see if I can capture errors
This commit is contained in:
parent
c7f4aa7c38
commit
53aa6c16b1
3 changed files with 7 additions and 4 deletions
|
@ -5,7 +5,7 @@
|
|||
|
||||
[tool.poetry]
|
||||
name = "royalnet"
|
||||
version = "5.7.6"
|
||||
version = "5.7.7"
|
||||
description = "A multipurpose bot and web framework"
|
||||
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
|
||||
license = "AGPL-3.0+"
|
||||
|
|
|
@ -43,12 +43,15 @@ class YtdlDiscord:
|
|||
destination_filename = re.sub(r"\.[^.]+$", ".pcm", self.ytdl_file.filename)
|
||||
async with self.lock.exclusive():
|
||||
log.debug(f"Converting to PCM: {self.ytdl_file.filename}")
|
||||
await asyncify(
|
||||
out, err = await asyncify(
|
||||
ffmpeg.input(self.ytdl_file.filename)
|
||||
.output(destination_filename, format="s16le", ac=2, ar="48000")
|
||||
.overwrite_output()
|
||||
.run
|
||||
.run,
|
||||
capture_stdout=True,
|
||||
capture_stderr=True,
|
||||
)
|
||||
log.debug(f"ffmpeg returned: ({type(out)}, {type(err)})")
|
||||
self.pcm_filename = destination_filename
|
||||
|
||||
async def delete_asap(self) -> None:
|
||||
|
|
|
@ -1 +1 @@
|
|||
semantic = "5.7.6"
|
||||
semantic = "5.7.7"
|
||||
|
|
Loading…
Reference in a new issue