Astariul
Astariul
Thanks for the answer @edanweis . However this is not a finetuned example : the author just took a pretrained checkpoint and generate text from this, without finetuning. That's one...
@kimiyoung any update on this ?
@zihangdai Any update on this issue ? Do you plan to release an example for such a use, or is it still not planned ?
For me when I ignored the warning, the bot was crashing with the following stack trace : >(node:15696) UnhandledPromiseRejectionWarning: Error: FFmpeg/avconv not found! at Function.getInfo (C:\Users\remon\Documents\workspace\discord-voice-recorder\node_modules\prism-media\src\core\FFmpeg.js:143:11) at new FFmpeg (C:\Users\remon\Documents\workspace\discord-voice-recorder\node_modules\prism-media\src\core\FFmpeg.js:45:27)...
@chebro Can you try with chrome browser ? See https://github.com/discordjs/discord.js/issues/5105
@chebro I found the problem ! Somehow when I did `npm i` it didn't install the specific commit mentioned in `package.json`. I could see it because after installation, the file...
Note : it happens only when the use leave the channel first. When the user stay in the channel and send the command, it work properly. To reproduce : ->...
Ok I changed : ```javascript const { channel: voiceChannel, connection: conn } = msg.guild.voiceStates.cache.last(); ``` into ```javascript var { channel: voiceChannel, connection: conn } = msg.guild.voiceStates.cache.last(); if (voiceChannel == null){...
Turned out my fix does not work all the time...
I end up using a dirty work-around : ``` import lib import configargparse parser = lib.get_parser() p = configargparse.ArgParser() parser.__class__ = configargparse.ArgParser for attribute in dir(p): if attribute not in...