Jourdelune
Jourdelune
hi @andrenatal, yes indeed, I saw it here: https://github.com/mozilla/firefox-translations-models/. Is it planned to add more languages in the future? And if so which one?
> hi @andrenatal, yes indeed, I saw it here: https://github.com/mozilla/firefox-translations-models/. Is it planned to add more languages in the future? And if so which one? The answer is here: https://github.com/mozilla/firefox-translations/discussions/67#discussioncomment-2090952....
same :p
This feature is useful, for example transcribe audio from channel and translate it in real time.
Firefox translation (https://github.com/mozilla/firefox-translations) detect the language on the browser with fastText language identification, also fastText is the most fastest model aviable (and with good accuracy).
First, thank you a lot for your integration, voice recording is highly requested by discord.py users (including me) and I really hope that this commit will be merged. There seems...
The basic voice example has been write over a year ago so maybe you can implement slash command. Also I have found an another issue: ``` ERROR:discord.sink:Calling the after function...
When I look at the code, I don't understand how it can be implemented. In fact, the callback contained in after, called by the listen function, only gets 2 arguments,...
I have see an another issue: ```py from discord.ext import commands from discord import app_commands from typing import Literal import discord import asyncio class Transcribe(commands.Cog): def __init__(self, bot): self.bot =...
```py from discord import app_commands import discord import asyncio DEV_GUILD = discord.Object(id=913766363791757353) class Client(discord.Client): def __init__(self, *, intents: discord.Intents): super().__init__(intents=intents) self.tree = app_commands.CommandTree(self) async def setup_hook(self): self.tree.copy_global_to(guild=DEV_GUILD) await self.tree.sync(guild=DEV_GUILD) intents...