Results 16 comments of blord0

> Pull requests that use AI generated code do not get accepted due to the possible licensing implications. Not to mention the quality of AI generate code being abysmal. The...

> Additionally I'm not sure where the library stands on sending "fake" data, we don't do it anywhere else so sending a fake waveform and fake size likely won't work....

Example code for sending a voice message is ```py channel = await bot.fetch_channel(xxx) file = discord.VoiceMessageFile("test.mp3", duration=21) await channel.send(file=file, voice=True) ```

Thanks, didn't catch the typos there. Also added `File.voice` bool to for checking if the file is a voice message now If you try to add multiple voice messages to...

From what i can see, the `oggparse` and `opus` libraries can only be used for voice data, and fail when used on general opus files. Even a simple script like...

Just had a deeper look into what each packet from my code example above has in it, and seems like the first 2 are metadata. If I just skip those...