Fix ffmeta _run-ffprobe not working

This commit is contained in:
Nexus 2024-04-14 23:18:45 +01:00
parent d6e8e8d17d
commit 81fa1454ed
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -42,7 +42,7 @@ class FFMeta(commands.Cog):
cmd = ["-hide_banner", "-i", str(uri)]
process = await asyncio.create_subprocess_exec(
"ffprobe",
*cmd
*cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
)