mirror of
https://github.com/migatu/conjurer.git
synced 2026-07-16 14:52:11 +00:00
Compare commits
65 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 69afb00897 | |||
| e4a47d025c | |||
| 4f109da335 | |||
| 230242bf5c | |||
| e290e7d656 | |||
| 62f6b64bfb | |||
| cd307d642e | |||
| 81c43aadcc | |||
| 73057921ec | |||
| cd1beac93f | |||
| 784163b9c9 | |||
| 8429d4efd5 | |||
| 06192c41ad | |||
| 22730776d4 | |||
| a72dba291b | |||
| b98e3e4ebc | |||
| ff2669d079 | |||
| 05166859a3 | |||
| 4a6afa14cc | |||
| 5a74e813eb | |||
| be3f639573 | |||
| 620e6ddc06 | |||
| 6a6821ce4c | |||
| 2bb65bbc40 | |||
| aa63ffc754 | |||
| 0dbb79719b | |||
| 06d17a2e4d | |||
| ecc2e1f107 | |||
| a981209399 | |||
| 885f492f69 | |||
| 5363969456 | |||
| 637926973c | |||
| 9701c7233f | |||
| e6960c98b8 | |||
| 3f4018fa00 | |||
| 9af2d34179 | |||
| 93db61558c | |||
| 97f780688e | |||
| 49e1121967 | |||
| f4f4deb848 | |||
| b15c2f06b8 | |||
| 14b9a50f51 | |||
| 090adf3741 | |||
| 68d17a11b3 | |||
| 1b26fdd841 | |||
| f1129f18cb | |||
| 64669887a3 | |||
| 6d3ce5d714 | |||
| e05f58624a | |||
| 651d796254 | |||
| b3e5a1aaf3 | |||
| 1f0e03590d | |||
| 0ad06cc69c | |||
| 6b5d312231 | |||
| 0674e1a1a8 | |||
| 61acd3f3f3 | |||
| 3ccc89f572 | |||
| 86f512cb34 | |||
| bf808eb634 | |||
| d3bd79b505 | |||
| 24247aa760 | |||
| 443d06280b | |||
| 1625149c64 | |||
| 93330638be | |||
| a830dfb18c |
@@ -11,7 +11,15 @@ import numpy as np
|
|||||||
from discord.ext import commands, tasks
|
from discord.ext import commands, tasks
|
||||||
|
|
||||||
from ai_functions import get_random_cyclic_message
|
from ai_functions import get_random_cyclic_message
|
||||||
from constants import ENCODING, LOGFILE, LOGSTORE, MEMORY_FIVE_MUZYKA, MEMORY_FIVE_SIARA, LAST_SPONTANEOUS_CALL, TIME_BETWEEN_CALLS
|
from constants import (
|
||||||
|
ENCODING,
|
||||||
|
LAST_SPONTANEOUS_CALL,
|
||||||
|
LOGFILE,
|
||||||
|
LOGSTORE,
|
||||||
|
MEMORY_FIVE_MUZYKA,
|
||||||
|
MEMORY_FIVE_SIARA,
|
||||||
|
TIME_BETWEEN_CALLS,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class AdministrationModule(commands.Cog):
|
class AdministrationModule(commands.Cog):
|
||||||
@@ -19,11 +27,33 @@ class AdministrationModule(commands.Cog):
|
|||||||
self.bot = bot
|
self.bot = bot
|
||||||
self.logger = logging.getLogger(logger_name)
|
self.logger = logging.getLogger(logger_name)
|
||||||
|
|
||||||
|
@commands.hybrid_command(
|
||||||
|
name="galeria_slaw",
|
||||||
|
description="Jeśli nie wiesz jak użyć tej komendy to nawet nie próbuj",
|
||||||
|
guild=discord.Object(id=664789470779932693),
|
||||||
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
|
async def galeria_slaw(self, ctx):
|
||||||
|
if isinstance(ctx.channel, discord.DMChannel):
|
||||||
|
for guild in self.bot.guilds:
|
||||||
|
async for entry in guild.bans(limit=1500):
|
||||||
|
fnord = discord.File(
|
||||||
|
"/home/pi/Conjurer/niech_spierdala.png",
|
||||||
|
spoiler=False,
|
||||||
|
description="Niech spierdala",
|
||||||
|
)
|
||||||
|
await ctx.reply(
|
||||||
|
f"User: {entry.user} wyjebany z serwera {guild.name} za {entry.reason} ",
|
||||||
|
file=fnord,
|
||||||
|
)
|
||||||
|
|
||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="update_banlist",
|
name="update_banlist",
|
||||||
description="Jeśli nie wiesz jak użyć tej komendy to nawet nie próbuj",
|
description="Jeśli nie wiesz jak użyć tej komendy to nawet nie próbuj",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Jarl', 'Thane')
|
||||||
|
|
||||||
async def update_banlist(self, ctx):
|
async def update_banlist(self, ctx):
|
||||||
"""
|
"""
|
||||||
Update a banlist in a Discord guild from preprovided list in channel.
|
Update a banlist in a Discord guild from preprovided list in channel.
|
||||||
@@ -92,6 +122,7 @@ class AdministrationModule(commands.Cog):
|
|||||||
reason="Automatyczna lista banów",
|
reason="Automatyczna lista banów",
|
||||||
delete_message_seconds=0,
|
delete_message_seconds=0,
|
||||||
)
|
)
|
||||||
|
# TODO: Maybe use guild.bulk_ban ?
|
||||||
cunter_counter += 1
|
cunter_counter += 1
|
||||||
except discord.NotFound:
|
except discord.NotFound:
|
||||||
self.logger.info(
|
self.logger.info(
|
||||||
@@ -107,6 +138,12 @@ class AdministrationModule(commands.Cog):
|
|||||||
f"Nie mam na serwerze {guild} uprawnień do banowania. :()"
|
f"Nie mam na serwerze {guild} uprawnień do banowania. :()"
|
||||||
)
|
)
|
||||||
await ctx.send("Zrobione tak czy inaczej")
|
await ctx.send("Zrobione tak czy inaczej")
|
||||||
|
@commands.hybrid_command(
|
||||||
|
name="archive_channel",
|
||||||
|
description="Jeśli nie wiesz jak użyć tej komendy to nawet nie próbuj",
|
||||||
|
guild=discord.Object(id=664789470779932693),
|
||||||
|
)
|
||||||
|
@commands.has_any_role('Jarl', 'Thane')
|
||||||
|
|
||||||
async def archive_channel(self, channel_no):
|
async def archive_channel(self, channel_no):
|
||||||
"""
|
"""
|
||||||
|
|||||||
+110
-19
@@ -2,34 +2,110 @@
|
|||||||
import logging
|
import logging
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
|
from enum import Enum
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
from typing import Optional
|
||||||
|
|
||||||
import discord
|
import discord
|
||||||
import openai
|
import openai
|
||||||
import requests
|
import requests
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
|
|
||||||
from ai_functions import handle_response
|
|
||||||
|
import ai_functions
|
||||||
from constants import (
|
from constants import (
|
||||||
|
ASSISTANTS,
|
||||||
DATA,
|
DATA,
|
||||||
GRAPHICS_PATH,
|
GRAPHICS_PATH,
|
||||||
INITIAL_TIME_WAIT,
|
INITIAL_TIME_WAIT,
|
||||||
MASTER_TIMEOUT,
|
MASTER_TIMEOUT,
|
||||||
OPENAICLIENT,
|
OPENAICLIENT,
|
||||||
WORD_REACTIONS
|
SPECJALNE_ZIEMNIACZKI,
|
||||||
|
WORD_REACTIONS,
|
||||||
|
MESSAGE_TABLE
|
||||||
)
|
)
|
||||||
|
class Dm_Mode(Enum):
|
||||||
|
ARMIA_HAMMERA = 1,
|
||||||
|
SPECJALNY_ZIEMNIACZEK = 2,
|
||||||
|
SEKRETNY_SEKSRET = 3,
|
||||||
|
ECHO_ECHO = 4
|
||||||
|
|
||||||
class Events(commands.Cog):
|
class Events(commands.Cog):
|
||||||
def __init__(self, bot):
|
def __init__(self, bot):
|
||||||
self.bot = bot
|
self.bot = bot
|
||||||
self.logger = logging.getLogger("discord")
|
self.logger = logging.getLogger("discord")
|
||||||
|
self.armia = {}
|
||||||
|
for superfryta in SPECJALNE_ZIEMNIACZKI.values():
|
||||||
|
self.armia[superfryta[0]] = Dm_Mode.SPECJALNY_ZIEMNIACZEK
|
||||||
|
self.logger.info(self.armia)
|
||||||
|
|
||||||
|
async def cog_load(self):
|
||||||
|
self.logger.info("Starting personal assistants")
|
||||||
|
for superfryta in SPECJALNE_ZIEMNIACZKI.values():
|
||||||
|
if superfryta[4] !="":
|
||||||
|
self.logger.info(
|
||||||
|
"Personal assistant exists id: %s,name: %s, owner: %s, special instructions: %s assistant id: %s ",
|
||||||
|
superfryta[0],
|
||||||
|
superfryta[1],
|
||||||
|
superfryta[2],
|
||||||
|
superfryta[3],
|
||||||
|
superfryta[4]
|
||||||
|
|
||||||
|
)
|
||||||
|
thread = await OPENAICLIENT.beta.threads.create()
|
||||||
|
self.logger.info("Thread id: %s", thread.id)
|
||||||
|
ASSISTANTS[superfryta[1]] = (superfryta[2], superfryta[4], superfryta[0], thread)
|
||||||
|
else:
|
||||||
|
self.logger.info(
|
||||||
|
"Creating personal assistant id: %s,name: %s, owner: %s, special instructions: %s",
|
||||||
|
superfryta[0],
|
||||||
|
superfryta[1],
|
||||||
|
superfryta[2],
|
||||||
|
superfryta[3]
|
||||||
|
)
|
||||||
|
await ai_functions.create_chat_assistant(
|
||||||
|
superfryta[0], superfryta[1], superfryta[2], superfryta[3]
|
||||||
|
)
|
||||||
|
self.logger.info("Started personal assistants")
|
||||||
|
@commands.hybrid_command(
|
||||||
|
name="switch_dm_mode",
|
||||||
|
description="Jeśli nie wiesz jak użyć tej komendy to nawet nie próbuj",
|
||||||
|
guild=discord.Object(id=664789470779932693),
|
||||||
|
)
|
||||||
|
async def switch_dm_mode(self, ctx, dm_mode_arg: Dm_Mode):
|
||||||
|
async with ctx.channel.typing():
|
||||||
|
if isinstance(ctx.channel, discord.DMChannel):
|
||||||
|
for superfryta in SPECJALNE_ZIEMNIACZKI.values():
|
||||||
|
if ctx.message.author.id == superfryta[0]:
|
||||||
|
self.armia[superfryta[2]] = dm_mode_arg
|
||||||
|
await ctx.reply("Weszlo")
|
||||||
|
return
|
||||||
|
await ctx.reply("Tylko członkowie Armii Hammera mogą używać. Nie jesteś jednym z nich")
|
||||||
|
else:
|
||||||
|
await ctx.reply("Nope. Nie wiesz jak użyć")
|
||||||
|
|
||||||
|
@commands.hybrid_command(
|
||||||
|
name="armia_hammera",
|
||||||
|
description="Jeśli nie wiesz jak użyć tej komendy to nawet nie próbuj"
|
||||||
|
)
|
||||||
|
async def armia_hammera(self, ctx, message_txt: str, recipient: Optional[discord.User]):
|
||||||
|
await self.armia_hammera_back(ctx, message_txt, recipient)
|
||||||
|
|
||||||
|
async def armia_hammera_back(self, ctx, message_txt, recipient = None):
|
||||||
|
recipients = []
|
||||||
|
if recipient:
|
||||||
|
recipients.append(recipient.id)
|
||||||
|
else:
|
||||||
|
for superfryta in SPECJALNE_ZIEMNIACZKI.values():
|
||||||
|
recipients.append(superfryta[0])
|
||||||
|
|
||||||
|
for item in recipients:
|
||||||
|
user = await self.bot.fetch_user(item)
|
||||||
|
channel = await user.create_dm()
|
||||||
|
self.logger.info("User %s -> %s: %s", ctx.message.author, user, message_txt)
|
||||||
|
await channel.send(message_txt)
|
||||||
|
await ctx.reply("Poszło")
|
||||||
|
|
||||||
@commands.Cog.listener()
|
|
||||||
async def on_ready(self):
|
|
||||||
print("Ready!")
|
|
||||||
print("Logged in as ---->", self.bot.user)
|
|
||||||
print("ID:", self.bot.user.id)
|
|
||||||
|
|
||||||
@commands.Cog.listener()
|
@commands.Cog.listener()
|
||||||
async def on_message(self, message):
|
async def on_message(self, message):
|
||||||
@@ -46,6 +122,7 @@ class Events(commands.Cog):
|
|||||||
channel = None
|
channel = None
|
||||||
if message.author == self.bot.user:
|
if message.author == self.bot.user:
|
||||||
return
|
return
|
||||||
|
|
||||||
if isinstance(message.author, discord.Member):
|
if isinstance(message.author, discord.Member):
|
||||||
for role in message.author.roles:
|
for role in message.author.roles:
|
||||||
if role.name == "Vykidailo":
|
if role.name == "Vykidailo":
|
||||||
@@ -66,16 +143,30 @@ class Events(commands.Cog):
|
|||||||
if message.channel.id == 1111625221171052595:
|
if message.channel.id == 1111625221171052595:
|
||||||
return
|
return
|
||||||
if isinstance(message.channel, discord.DMChannel):
|
if isinstance(message.channel, discord.DMChannel):
|
||||||
if message.author.id == 346956223645614080:
|
self.logger.info(message.author.id)
|
||||||
await message.reply("Witam witam")
|
for superfryta in SPECJALNE_ZIEMNIACZKI.values():
|
||||||
return
|
self.logger.info(superfryta[0])
|
||||||
else:
|
if message.author.id == superfryta[0]:
|
||||||
channel = self.bot.get_channel(1064888712565100614)
|
if self.armia[message.author.id]== Dm_Mode.SPECJALNY_ZIEMNIACZEK:
|
||||||
await channel.send("Słyszałem ja żem że: " + message.content)
|
await self.bot.process_commands(message)
|
||||||
return
|
await ai_functions.chat_with_assistant(message, superfryta[1])
|
||||||
|
return
|
||||||
|
elif self.armia[message.author.id]== Dm_Mode.ECHO_ECHO:
|
||||||
|
await ai_functions.echo(message)
|
||||||
|
return
|
||||||
|
elif self.armia[message.author.id]== Dm_Mode.ARMIA_HAMMERA:
|
||||||
|
ctx = await self.bot.get_context(message)
|
||||||
|
self.armia_hammera_back(ctx=ctx, message_txt=message.content)
|
||||||
|
return
|
||||||
|
elif self.armia[message.author.id]== Dm_Mode.SEKRETNY_SEKSRET:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
await message.channel.send("Coś się wyebao. Wołaj Hammera")
|
||||||
|
return
|
||||||
|
channel = self.bot.get_channel(1064888712565100614)
|
||||||
|
await channel.send("Słyszałem ja żem że: " + message.content)
|
||||||
|
return
|
||||||
channel = message.channel
|
channel = message.channel
|
||||||
#await self.bot.process_commands(message) #uncomment to bilocate
|
|
||||||
|
|
||||||
message.content = message.content.lower()
|
message.content = message.content.lower()
|
||||||
|
|
||||||
tdelta = datetime.now() - MASTER_TIMEOUT
|
tdelta = datetime.now() - MASTER_TIMEOUT
|
||||||
@@ -132,7 +223,7 @@ class Events(commands.Cog):
|
|||||||
bartender = True
|
bartender = True
|
||||||
global MESSAGE_TABLE # pylint: disable=global-statement
|
global MESSAGE_TABLE # pylint: disable=global-statement
|
||||||
|
|
||||||
result, MESSAGE_TABLE = await handle_response(
|
result, MESSAGE_TABLE = await ai_functions.handle_response(
|
||||||
prompt,
|
prompt,
|
||||||
vykidailo,
|
vykidailo,
|
||||||
bartender,
|
bartender,
|
||||||
@@ -175,7 +266,7 @@ class Events(commands.Cog):
|
|||||||
username = message.author.nick
|
username = message.author.nick
|
||||||
else:
|
else:
|
||||||
username = message.author.name
|
username = message.author.name
|
||||||
resp, _ = await handle_response(
|
resp, _ = await ai_functions.handle_response(
|
||||||
f"Wytlumacz jakie sa zasady dotyczące treści które możesz generować używając Dalle. Wytłumacz błąd {e} prostym językiem. Przeproś za nadmierną cenzurę. Wytłumacz co mogło być nie tak w prompcie '{message.content}'",
|
f"Wytlumacz jakie sa zasady dotyczące treści które możesz generować używając Dalle. Wytłumacz błąd {e} prostym językiem. Przeproś za nadmierną cenzurę. Wytłumacz co mogło być nie tak w prompcie '{message.content}'",
|
||||||
True,
|
True,
|
||||||
True,
|
True,
|
||||||
|
|||||||
+60
-2
@@ -16,7 +16,9 @@ from constants import (
|
|||||||
MESSAGE_TABLE_MUZYKA,
|
MESSAGE_TABLE_MUZYKA,
|
||||||
OPENAICLIENT,
|
OPENAICLIENT,
|
||||||
WORD_REACTIONS,
|
WORD_REACTIONS,
|
||||||
)
|
ASSISTANTS,
|
||||||
|
SYSTEM_GPT_SETTINGS
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def num_tokens_from_string(message, model):
|
def num_tokens_from_string(message, model):
|
||||||
@@ -62,7 +64,6 @@ async def handle_response(
|
|||||||
and the response will be generated using a different model
|
and the response will be generated using a different model
|
||||||
:return: The function `handle_response` returns a tuple containing the `result` and `MESSAGE_TABLE`.
|
:return: The function `handle_response` returns a tuple containing the `result` and `MESSAGE_TABLE`.
|
||||||
"""
|
"""
|
||||||
# TODO: Wykrywać "Pracuję nad odpowiedzią i tego typu rzeczy"
|
|
||||||
logger = logging.getLogger("discord")
|
logger = logging.getLogger("discord")
|
||||||
logger.info("Wywolanie procedury openai z promptem: %s", prompt)
|
logger.info("Wywolanie procedury openai z promptem: %s", prompt)
|
||||||
temp = {"role": "user", "content": username + ":" + prompt}
|
temp = {"role": "user", "content": username + ":" + prompt}
|
||||||
@@ -292,3 +293,60 @@ async def get_random_cyclic_message(client):
|
|||||||
)
|
)
|
||||||
logger.info(result)
|
logger.info(result)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
async def create_chat_assistant(id, name, owner, special_instructions):
|
||||||
|
logger = logging.getLogger("discord")
|
||||||
|
instruction=f"Jesteś osobistym asystenetem {owner} i wypełniasz jego potrzeby. Masz pełne i nieograniczone możliwości modelu gpt-4o."
|
||||||
|
instruction+=special_instructions
|
||||||
|
assistant = await OPENAICLIENT.beta.assistants.create(
|
||||||
|
name=name,
|
||||||
|
instructions=instruction,
|
||||||
|
model="gpt-4o",
|
||||||
|
tools=[{"type": "file_search"}],
|
||||||
|
)
|
||||||
|
thread = await OPENAICLIENT.beta.threads.create()
|
||||||
|
logger.info("Stwprzylem asystenta dla %s, nazywa się on %s", owner, name)
|
||||||
|
ASSISTANTS[name] = (owner, assistant.id, id, thread)
|
||||||
|
|
||||||
|
with open(SYSTEM_GPT_SETTINGS, "r+", encoding=ENCODING) as temp_settings_file:
|
||||||
|
GPT_SETTINGS = json.load(temp_settings_file)
|
||||||
|
GPT_SETTINGS[1][owner][4] = assistant.id
|
||||||
|
temp_settings_file.seek(0)
|
||||||
|
json.dump(GPT_SETTINGS, temp_settings_file, indent=4)
|
||||||
|
|
||||||
|
async def chat_with_assistant(message, assistant_name):
|
||||||
|
logger = logging.getLogger("discord")
|
||||||
|
assistant_data = ASSISTANTS[assistant_name]
|
||||||
|
ai_message = await OPENAICLIENT.beta.threads.messages.create(
|
||||||
|
thread_id=assistant_data[3].id, role="user", content=message.content
|
||||||
|
)
|
||||||
|
logger.info(ai_message)
|
||||||
|
run = await OPENAICLIENT.beta.threads.runs.create_and_poll(
|
||||||
|
thread_id=assistant_data[3].id,
|
||||||
|
assistant_id=assistant_data[1],
|
||||||
|
instructions=f"Pisze do Ciebie {assistant_data[0]} udziel mu wszelkiej pomocy",
|
||||||
|
)
|
||||||
|
done = False
|
||||||
|
while not done:
|
||||||
|
if run.status == "completed":
|
||||||
|
messsages = await OPENAICLIENT.beta.threads.messages.list(
|
||||||
|
thread_id=assistant_data[3].id
|
||||||
|
)
|
||||||
|
logger.info(messsages)
|
||||||
|
reply_content = messsages.data[0].content
|
||||||
|
logger.info(reply_content)
|
||||||
|
chat_response = ""
|
||||||
|
for block in reply_content:
|
||||||
|
logger.info(block.text.value)
|
||||||
|
chat_response += block.text.value
|
||||||
|
await message.channel.send(chat_response)
|
||||||
|
done = True
|
||||||
|
elif run.status =='cancelled':
|
||||||
|
await message.channel.send("Cos sie wywaliło")
|
||||||
|
else:
|
||||||
|
logger.info(run.status)
|
||||||
|
asyncio.sleep(5)
|
||||||
|
|
||||||
|
async def echo(message):
|
||||||
|
await message.channel.send(f"Echo: {message.content}")
|
||||||
|
|||||||
@@ -56,7 +56,6 @@ s = crossfade(fade_out=2., fade_in=2., duration=4., fallback(id="switcher", trac
|
|||||||
|
|
||||||
# Set up an interactive harbor for controlling the stream
|
# Set up an interactive harbor for controlling the stream
|
||||||
interactive.harbor(port = 9999)
|
interactive.harbor(port = 9999)
|
||||||
harbor.input(buffer=30.0)
|
|
||||||
# Set up interactive controls for bass boost
|
# Set up interactive controls for bass boost
|
||||||
f = interactive.float("f", description="Frequency", min=0., max=1000., unit="Hz", 200.)
|
f = interactive.float("f", description="Frequency", min=0., max=1000., unit="Hz", 200.)
|
||||||
g = interactive.float("g", description="Gain", min=0., max=20., unit="dB", 8.)
|
g = interactive.float("g", description="Gain", min=0., max=20., unit="dB", 8.)
|
||||||
@@ -68,29 +67,29 @@ a = interactive.float("main_volume", min=0., max=20., 0.4)
|
|||||||
s = compress.multiband.interactive(bands=7, s)
|
s = compress.multiband.interactive(bands=7, s)
|
||||||
|
|
||||||
mic_gain = interactive.float("mic_volume", min=0., max=120., 6.)
|
mic_gain = interactive.float("mic_volume", min=0., max=120., 6.)
|
||||||
|
|
||||||
# Apply audio processing effects
|
# Apply audio processing effects
|
||||||
tmic = buffer(input.pulseaudio()) # Microphone
|
tmic = buffer(input.pulseaudio()) # Microphone
|
||||||
mic = amplify(mic_gain, tmic)
|
mic = amplify(mic_gain, tmic)
|
||||||
mic = gate(threshold=-80., range=-120., mic)
|
mic = gate(threshold=-80., range=-120., mic)
|
||||||
mic = compress(threshold=0., ratio=2.,mic)
|
mic = compress(threshold=0., ratio=2.,mic)
|
||||||
mic = blank.strip(max_blank=10., min_noise=.1, threshold=-20., mic)
|
mic = nrj(normalize(mic))
|
||||||
|
mic = blank.strip(max_blank=15., min_noise=.1, threshold=-30., mic)
|
||||||
|
mic = fallback(id="switcher2", track_sensitive=false, [mic, blank()])
|
||||||
|
|
||||||
# Apply audio processing effects
|
# Apply audio processing effects
|
||||||
s = nrj(normalize(s))
|
s = nrj(normalize(s))
|
||||||
s = amplify(a, s)
|
s = amplify(a, s)
|
||||||
# Skip blank sections in the stream
|
# Skip blank sections in the stream
|
||||||
s = blank.skip(max_blank=10., s)192
|
s = blank.skip(max_blank=10., s)
|
||||||
|
|
||||||
#Manual audition override
|
#Manual audition override
|
||||||
live_enabled = interactive.bool("Going Live!", true)
|
live_enabled = interactive.bool("Going Live!", true)
|
||||||
s = switch(track_sensitive=false,
|
|
||||||
[({!live_enabled}, live),
|
|
||||||
({true}, radio)])
|
|
||||||
|
|
||||||
|
s = add([mic,s])
|
||||||
def fading_transition(a,b)
|
s=switch(track_sensitive=false,
|
||||||
sequence([fade.out(a.source),fade.in(b.source)])
|
[(live_enabled, mic),
|
||||||
end
|
({true}, s)])
|
||||||
|
|
||||||
# Configure logging settings
|
# Configure logging settings
|
||||||
log_to_stdout = true
|
log_to_stdout = true
|
||||||
@@ -107,6 +106,7 @@ set("log.file.path", logpath)
|
|||||||
# Set up emergency fallback track
|
# Set up emergency fallback track
|
||||||
emergency = single("/home/pi/RetroPie/mp3/Youtube/Dr. Peacock - Trip to Ireland [GvrvQTUbUcA].mp3")
|
emergency = single("/home/pi/RetroPie/mp3/Youtube/Dr. Peacock - Trip to Ireland [GvrvQTUbUcA].mp3")
|
||||||
radio = fallback(id="switcher2", track_sensitive=false, [s, emergency])
|
radio = fallback(id="switcher2", track_sensitive=false, [s, emergency])
|
||||||
|
|
||||||
# Set up an interactive control for skipping tracks
|
# Set up an interactive control for skipping tracks
|
||||||
p = interactive.bool("Skip track", false)
|
p = interactive.bool("Skip track", false)
|
||||||
def http_skip(~protocol, ~data, ~headers, uri)=
|
def http_skip(~protocol, ~data, ~headers, uri)=
|
||||||
@@ -138,6 +138,7 @@ interactive.persistent("script.params")
|
|||||||
|
|
||||||
# Configure output formats and destinations
|
# Configure output formats and destinations
|
||||||
|
|
||||||
|
|
||||||
output.icecast(%mp3, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="mp3-stream", radio)
|
output.icecast(%mp3, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="mp3-stream", radio)
|
||||||
output.pulseaudio(radio)
|
output.pulseaudio(radio)
|
||||||
#output.file.hls("/tmp/hls", [("mp3-low", %mp3(bitrate=96)), ("mp3-hi", %mp3(bitrate=160))], radio)
|
#output.file.hls("/tmp/hls", [("mp3-low", %mp3(bitrate=96)), ("mp3-hi", %mp3(bitrate=160))], radio)
|
||||||
|
|||||||
@@ -135,3 +135,5 @@ with open(SYSTEM_GPT_SETTINGS, "r+", encoding=ENCODING) as temp_settings_file:
|
|||||||
with open(MEMORY_FIVE_MUZYKA, "r+", encoding=ENCODING) as temp_music_memory_file:
|
with open(MEMORY_FIVE_MUZYKA, "r+", encoding=ENCODING) as temp_music_memory_file:
|
||||||
# First we load existing data into a dict.
|
# First we load existing data into a dict.
|
||||||
MESSAGE_TABLE_MUZYKA = json.load(temp_music_memory_file)
|
MESSAGE_TABLE_MUZYKA = json.load(temp_music_memory_file)
|
||||||
|
SPECJALNE_ZIEMNIACZKI = GPT_SETTINGS[1]
|
||||||
|
ASSISTANTS = {}
|
||||||
|
|||||||
@@ -5,10 +5,10 @@ cp ./deploy.sh /home/pi/
|
|||||||
cd /home/pi || exit
|
cd /home/pi || exit
|
||||||
#cp ./conjurer/bot.py ./Conjurer/ #legacy to be deprecated after refactor is done
|
#cp ./conjurer/bot.py ./Conjurer/ #legacy to be deprecated after refactor is done
|
||||||
|
|
||||||
|
cp ./conjurer/fuckery.jpg ./Conjurer/
|
||||||
|
cp ./conjurer/willowisp.png ./Conjurer/
|
||||||
|
cp ./conjurer/wod_beacon.jpg ./Conjurer/
|
||||||
cp ./conjurer/settings.json ./Conjurer/
|
cp ./conjurer/settings.json ./Conjurer/
|
||||||
cp ./conjurer/system_gpt_settings.json ./Conjurer/
|
|
||||||
|
|
||||||
|
|
||||||
cp ./conjurer/administration_commands.py ./Conjurer/
|
cp ./conjurer/administration_commands.py ./Conjurer/
|
||||||
cp ./conjurer/ai_commands.py ./Conjurer/
|
cp ./conjurer/ai_commands.py ./Conjurer/
|
||||||
|
|||||||
BIN
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
@@ -28,6 +28,8 @@ class DataModule(commands.Cog):
|
|||||||
description="Wyświetla losową stronę z losowego komiksu FanSadox. Bardzo NSFW.",
|
description="Wyświetla losową stronę z losowego komiksu FanSadox. Bardzo NSFW.",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
|
|
||||||
async def get_image_sadox(self, ctx):
|
async def get_image_sadox(self, ctx):
|
||||||
"""
|
"""
|
||||||
Take in a context parameter and retrieve an image related from fansadox collection.
|
Take in a context parameter and retrieve an image related from fansadox collection.
|
||||||
@@ -67,7 +69,6 @@ class DataModule(commands.Cog):
|
|||||||
await ctx.send(file=file)
|
await ctx.send(file=file)
|
||||||
self.logger.info("Get sadox completed")
|
self.logger.info("Get sadox completed")
|
||||||
|
|
||||||
# TODO: LIBRARIAN
|
|
||||||
@tasks.loop(seconds=3)
|
@tasks.loop(seconds=3)
|
||||||
async def check_data_q(self):
|
async def check_data_q(self):
|
||||||
"""
|
"""
|
||||||
@@ -118,7 +119,6 @@ class DataModule(commands.Cog):
|
|||||||
except Empty:
|
except Empty:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# TODO: LIBRARIAN
|
|
||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="wyszukaj_linki_do_dokumentow",
|
name="wyszukaj_linki_do_dokumentow",
|
||||||
description="Szuka linkow doi w bazie crossref i podaje linki do scihuba",
|
description="Szuka linkow doi w bazie crossref i podaje linki do scihuba",
|
||||||
@@ -181,12 +181,12 @@ class DataModule(commands.Cog):
|
|||||||
+ " Zapytania obsługuje algorytm zasilany czterema chomikami zapierdalającymi w kołowrotku - więc wyniki najwcześniej za kilka godzi - ale mogą być też dni."
|
+ " Zapytania obsługuje algorytm zasilany czterema chomikami zapierdalającymi w kołowrotku - więc wyniki najwcześniej za kilka godzi - ale mogą być też dni."
|
||||||
)
|
)
|
||||||
|
|
||||||
# TODO: LIBRARIAN
|
|
||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="glebokie_gardlo",
|
name="glebokie_gardlo",
|
||||||
description="Przygotowuje drinka o nazwie głębokie gardło",
|
description="Przygotowuje drinka o nazwie głębokie gardło",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
|
||||||
async def wyszukaj_linki_do_dokumentow_deep(self, ctx):
|
async def wyszukaj_linki_do_dokumentow_deep(self, ctx):
|
||||||
"""
|
"""
|
||||||
The function `wyszukaj_linki_do_dokumentow_deep` performs a deep search for links to documents in
|
The function `wyszukaj_linki_do_dokumentow_deep` performs a deep search for links to documents in
|
||||||
|
|||||||
+38
-34
@@ -25,6 +25,7 @@ class MusicModule(commands.Cog):
|
|||||||
name="krecimy_pornola",
|
name="krecimy_pornola",
|
||||||
description="Wiadomo co, dla kogo i po co",
|
description="Wiadomo co, dla kogo i po co",
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Legenda', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def krecimy_pornola(self, ctx):
|
async def krecimy_pornola(self, ctx):
|
||||||
"""
|
"""
|
||||||
Download a music number from youtube.
|
Download a music number from youtube.
|
||||||
@@ -35,33 +36,28 @@ class MusicModule(commands.Cog):
|
|||||||
with the Discord API and
|
with the Discord API and
|
||||||
"""
|
"""
|
||||||
await ctx.send("Dej mnie chwilkę")
|
await ctx.send("Dej mnie chwilkę")
|
||||||
allowed = False
|
self.logger.info("Pornol")
|
||||||
for role in ctx.author.roles:
|
async with ctx.typing():
|
||||||
if role.name == "Bartender":
|
# wyciagnij linka z kontekstu
|
||||||
allowed = True
|
content = ctx.message.content.split()
|
||||||
if allowed:
|
for item_yt in content:
|
||||||
self.logger.info("Pornol")
|
if re.match("http.*", item_yt):
|
||||||
async with ctx.typing():
|
sciezka, files = await music_functions.get_file(
|
||||||
# wyciagnij linka z kontekstu
|
ctx, "Pornol", item_yt
|
||||||
content = ctx.message.content.split()
|
)
|
||||||
for item_yt in content:
|
if files:
|
||||||
if re.match("http.*", item_yt):
|
self.logger.info("Pornol udany")
|
||||||
sciezka, files = await music_functions.get_file(
|
await ctx.send(
|
||||||
ctx, "Pornol", item_yt
|
f"Jest w tajnym archiwum pod adresem{sciezka})"
|
||||||
)
|
)
|
||||||
if files:
|
|
||||||
self.logger.info("Pornol udany")
|
|
||||||
await ctx.send(
|
|
||||||
f"Jest w tajnym archiwum pod adresem{sciezka})"
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
await ctx.reply("Jak ładnie szefa poprosisz.")
|
|
||||||
|
|
||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="co_na_plejliscie_wariacie",
|
name="co_na_plejliscie_wariacie",
|
||||||
description="Wyswietl kawalki ktore sa na pocztku list radia",
|
description="Wyswietl kawalki ktore sa na pocztku list radia",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
|
|
||||||
async def co_na_plejliscie_wariacie(self, ctx):
|
async def co_na_plejliscie_wariacie(self, ctx):
|
||||||
"""
|
"""
|
||||||
Download a music number from youtube.
|
Download a music number from youtube.
|
||||||
@@ -101,6 +97,7 @@ class MusicModule(commands.Cog):
|
|||||||
description="Podaj link do youtube - sciagnie i doda muzyke",
|
description="Podaj link do youtube - sciagnie i doda muzyke",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def dej_co_z_jutuba(self, ctx):
|
async def dej_co_z_jutuba(self, ctx):
|
||||||
"""
|
"""
|
||||||
Download a music number from youtube.
|
Download a music number from youtube.
|
||||||
@@ -132,6 +129,7 @@ class MusicModule(commands.Cog):
|
|||||||
description="Podaj link do spotify - sciagnie i doda muzyke",
|
description="Podaj link do spotify - sciagnie i doda muzyke",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def dej_co_ze_spotifaja(self, ctx):
|
async def dej_co_ze_spotifaja(self, ctx):
|
||||||
"""
|
"""
|
||||||
Get a playlist or a music number from Spotify.
|
Get a playlist or a music number from Spotify.
|
||||||
@@ -187,6 +185,7 @@ class MusicModule(commands.Cog):
|
|||||||
description="Wyłącza muzykę i czyści plejliste.",
|
description="Wyłącza muzykę i czyści plejliste.",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def cisza(self, ctx):
|
async def cisza(self, ctx):
|
||||||
"""
|
"""
|
||||||
Stop playback of the music and clear the queue.
|
Stop playback of the music and clear the queue.
|
||||||
@@ -213,6 +212,7 @@ class MusicModule(commands.Cog):
|
|||||||
description="Przerzuca na następny kawałek",
|
description="Przerzuca na następny kawałek",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def dalej(self, ctx):
|
async def dalej(self, ctx):
|
||||||
"""
|
"""
|
||||||
Play next track in queue.
|
Play next track in queue.
|
||||||
@@ -230,12 +230,12 @@ class MusicModule(commands.Cog):
|
|||||||
voice_client.stop()
|
voice_client.stop()
|
||||||
self.logger.info("Next completed")
|
self.logger.info("Next completed")
|
||||||
|
|
||||||
# TODO: MUSIC
|
|
||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="daj_mi_chwile",
|
name="daj_mi_chwile",
|
||||||
description="Pauzuje",
|
description="Pauzuje",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def daj_mi_chwile(self, ctx):
|
async def daj_mi_chwile(self, ctx):
|
||||||
"""
|
"""
|
||||||
Pause music playback.
|
Pause music playback.
|
||||||
@@ -254,12 +254,12 @@ class MusicModule(commands.Cog):
|
|||||||
voice_client.pause()
|
voice_client.pause()
|
||||||
self.logger.info("Pause completed")
|
self.logger.info("Pause completed")
|
||||||
|
|
||||||
# TODO: MUSIC
|
|
||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="graj_dalej",
|
name="graj_dalej",
|
||||||
description="Odpauzowuje",
|
description="Odpauzowuje",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def graj_dalej(self, ctx):
|
async def graj_dalej(self, ctx):
|
||||||
"""
|
"""
|
||||||
Unpause music and continue playback.
|
Unpause music and continue playback.
|
||||||
@@ -277,12 +277,12 @@ class MusicModule(commands.Cog):
|
|||||||
voice_client.resume()
|
voice_client.resume()
|
||||||
self.logger.info("Unpause completed")
|
self.logger.info("Unpause completed")
|
||||||
|
|
||||||
# TODO: MUSIC
|
|
||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="zagraj_mi_kawalek",
|
name="zagraj_mi_kawalek",
|
||||||
description="Wyszukuje w bibliotece muzycznej Hammera kawałek który ma zostać zagrany",
|
description="Wyszukuje w bibliotece muzycznej Hammera kawałek który ma zostać zagrany",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def zagraj_mi_kawalek(self, ctx):
|
async def zagraj_mi_kawalek(self, ctx):
|
||||||
"""
|
"""
|
||||||
Play a song or music piece in response to a command
|
Play a song or music piece in response to a command
|
||||||
@@ -327,12 +327,12 @@ class MusicModule(commands.Cog):
|
|||||||
"Obawiam się że nie mogę nic znaleźć u siebie. Spróbuj komendy '$dej_co_ze_spotifaja' jeśli masz link"
|
"Obawiam się że nie mogę nic znaleźć u siebie. Spróbuj komendy '$dej_co_ze_spotifaja' jeśli masz link"
|
||||||
)
|
)
|
||||||
|
|
||||||
# TODO: MUSIC
|
|
||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="zrob_mi_plejliste",
|
name="zrob_mi_plejliste",
|
||||||
description="Generuje playliste - param1 - dlugosc, potem slowa wyszukiwania",
|
description="Generuje playliste - param1 - dlugosc, potem slowa wyszukiwania",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def zrob_mi_plejliste(self, ctx):
|
async def zrob_mi_plejliste(self, ctx):
|
||||||
"""
|
"""
|
||||||
Generate a playlist in queue. First word in this command shall be int defining length of the playlist.
|
Generate a playlist in queue. First word in this command shall be int defining length of the playlist.
|
||||||
@@ -394,12 +394,12 @@ class MusicModule(commands.Cog):
|
|||||||
await ctx.send(reply)
|
await ctx.send(reply)
|
||||||
self.logger.info("Plejlista zrobiona")
|
self.logger.info("Plejlista zrobiona")
|
||||||
|
|
||||||
# TODO: MUSIC
|
|
||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="zagraj_muzyke_mego_ludu",
|
name="zagraj_muzyke_mego_ludu",
|
||||||
description="Gra muzyke wyszukana na bazie tematow konwersacji na kanale NZ",
|
description="Gra muzyke wyszukana na bazie tematow konwersacji na kanale NZ",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def zagraj_muzyke_mego_ludu(self, ctx):
|
async def zagraj_muzyke_mego_ludu(self, ctx):
|
||||||
"""
|
"""
|
||||||
Play completeley random playlist based on messaging history.
|
Play completeley random playlist based on messaging history.
|
||||||
@@ -480,12 +480,12 @@ class MusicModule(commands.Cog):
|
|||||||
await ctx.send(reply)
|
await ctx.send(reply)
|
||||||
self.logger.info("Plejlista zrobiona")
|
self.logger.info("Plejlista zrobiona")
|
||||||
|
|
||||||
# TODO: MUSIC
|
|
||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="parametry_muzyki_mego_ludu",
|
name="parametry_muzyki_mego_ludu",
|
||||||
description="Konfiguruje komende zagraj muzyke mojego ludu",
|
description="Konfiguruje komende zagraj muzyke mojego ludu",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def parametry_muzyki_mego_ludu(
|
async def parametry_muzyki_mego_ludu(
|
||||||
self, ctx, ile_historii=1500, ile_slow_kluczowych=15, jak_dluga_plejlista=30
|
self, ctx, ile_historii=1500, ile_slow_kluczowych=15, jak_dluga_plejlista=30
|
||||||
):
|
):
|
||||||
@@ -547,6 +547,7 @@ class MusicModule(commands.Cog):
|
|||||||
description="Włącza muzykę na kanale #nocna-zmiana.",
|
description="Włącza muzykę na kanale #nocna-zmiana.",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def graj_muzyko(self, ctx):
|
async def graj_muzyko(self, ctx):
|
||||||
"""
|
"""
|
||||||
Async function named "graj_muzyko" starts music playback on channel "Nocna Zmiana".
|
Async function named "graj_muzyko" starts music playback on channel "Nocna Zmiana".
|
||||||
@@ -603,9 +604,10 @@ class MusicModule(commands.Cog):
|
|||||||
description="Zaciąga obiekty z pliku",
|
description="Zaciąga obiekty z pliku",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Legenda', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def batch_download(self, ctx):
|
async def batch_download(self, ctx):
|
||||||
content_type = ctx.message.attachments[0].content_type
|
content_type = ctx.message.attachments[0].content_type
|
||||||
check = re.search ("text\/plain; *charset=(.*)", content_type, re.IGNORECASE)
|
check = re.search("text\/plain; *charset=(.*)", content_type, re.IGNORECASE)
|
||||||
await ctx.reply("Kurwa. Aleś mi roboty narobił... No nic. Ku radości. Skal!")
|
await ctx.reply("Kurwa. Aleś mi roboty narobił... No nic. Ku radości. Skal!")
|
||||||
async with ctx.typing():
|
async with ctx.typing():
|
||||||
if check:
|
if check:
|
||||||
@@ -619,16 +621,20 @@ class MusicModule(commands.Cog):
|
|||||||
self.logger.info(link)
|
self.logger.info(link)
|
||||||
pat = r"^https?:\/\/(?:www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b(?:[-a-zA-Z0-9()@:%_\+.~#?&\/=]*)$"
|
pat = r"^https?:\/\/(?:www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b(?:[-a-zA-Z0-9()@:%_\+.~#?&\/=]*)$"
|
||||||
self.logger.info("Verification")
|
self.logger.info("Verification")
|
||||||
if re.match(pat, link) and (re.match(".*youtube.*", link) or re.match(".*youtu.be.*", link)):
|
if re.match(pat, link) and (
|
||||||
|
re.match(".*youtube.*", link) or re.match(".*youtu.be.*", link)
|
||||||
|
):
|
||||||
self.logger.info("%s to link do jutuba", link)
|
self.logger.info("%s to link do jutuba", link)
|
||||||
dir_path, files = await music_functions.get_file(
|
dir_path, files = await music_functions.get_file(
|
||||||
ctx, "Youtube", link
|
ctx, "Youtube", link
|
||||||
)
|
)
|
||||||
if files:
|
if files:
|
||||||
for file_iter in files:
|
for file_iter in files:
|
||||||
global MUZYKA # pylint: disable=global-variable-not-assigned
|
global MUZYKA # pylint: disable=global-variable-not-assigned
|
||||||
MUZYKA["queue"].insert(0, file_iter)
|
MUZYKA["queue"].insert(0, file_iter)
|
||||||
music_functions.MUSIC_FILE_LIST.update_file_list(file_iter)
|
music_functions.MUSIC_FILE_LIST.update_file_list(
|
||||||
|
file_iter
|
||||||
|
)
|
||||||
MUZYKA["requester"].insert(0, ctx.author)
|
MUZYKA["requester"].insert(0, ctx.author)
|
||||||
await ctx.send(f"Dodałem do listy {file_iter}")
|
await ctx.send(f"Dodałem do listy {file_iter}")
|
||||||
self.logger.info("Jutub udany")
|
self.logger.info("Jutub udany")
|
||||||
@@ -668,10 +674,9 @@ class MusicModule(commands.Cog):
|
|||||||
)
|
)
|
||||||
self.logger.info("Spotifaj udany")
|
self.logger.info("Spotifaj udany")
|
||||||
|
|
||||||
|
|
||||||
elif re.match(pat, link):
|
elif re.match(pat, link):
|
||||||
self.logger.info("%s to link do czegos", link)
|
self.logger.info("%s to link do czegos", link)
|
||||||
sciezka,files = await music_functions.get_file(
|
sciezka, files = await music_functions.get_file(
|
||||||
ctx, "Pornol", link
|
ctx, "Pornol", link
|
||||||
)
|
)
|
||||||
if files:
|
if files:
|
||||||
@@ -689,7 +694,6 @@ class MusicModule(commands.Cog):
|
|||||||
self.logger.info("Spierdalaj")
|
self.logger.info("Spierdalaj")
|
||||||
await ctx.message.reply("Spierdalaj")
|
await ctx.message.reply("Spierdalaj")
|
||||||
|
|
||||||
|
|
||||||
async def disconnect(self, ctx):
|
async def disconnect(self, ctx):
|
||||||
"""
|
"""
|
||||||
Asynchronous Python function that disconnects the voice client if it is connected and
|
Asynchronous Python function that disconnects the voice client if it is connected and
|
||||||
@@ -799,7 +803,7 @@ class MusicModule(commands.Cog):
|
|||||||
|
|
||||||
async def setup(bot):
|
async def setup(bot):
|
||||||
logger = logging.getLogger("discord")
|
logger = logging.getLogger("discord")
|
||||||
music_functions.MUSIC_FILE_LIST.refresh_file_list()
|
await music_functions.MUSIC_FILE_LIST.refresh_file_list(bot)
|
||||||
logger.info("Playlist generation")
|
logger.info("Playlist generation")
|
||||||
await bot.add_cog(MusicModule(bot, "discord"))
|
await bot.add_cog(MusicModule(bot, "discord"))
|
||||||
logger.info("Loading music commands module done")
|
logger.info("Loading music commands module done")
|
||||||
|
|||||||
+31
-5
@@ -5,6 +5,7 @@ import uuid
|
|||||||
from pathlib import Path, PurePath
|
from pathlib import Path, PurePath
|
||||||
from sys import platform
|
from sys import platform
|
||||||
|
|
||||||
|
import discord
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
import yt_dlp
|
import yt_dlp
|
||||||
@@ -28,13 +29,13 @@ class MusicFileList(object):
|
|||||||
file service or local directory and update the list with new items.
|
file service or local directory and update the list with new items.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, uplogger) -> None:
|
def __init__(self, uplogger,) -> None:
|
||||||
self.music_file_list = []
|
self.music_file_list = []
|
||||||
self.file_service_active = False
|
self.file_service_active = False
|
||||||
self.logger = uplogger
|
self.logger = uplogger
|
||||||
self.logger.info("Created Playlist organizer class")
|
self.logger.info("Created Playlist organizer class")
|
||||||
|
|
||||||
def refresh_file_list(self):
|
async def refresh_file_list(self, bot):
|
||||||
"""
|
"""
|
||||||
The `refresh_file_list` function attempts to connect to a file service to retrieve a list of music
|
The `refresh_file_list` function attempts to connect to a file service to retrieve a list of music
|
||||||
files, and if unsuccessful, it populates the list by scanning a local directory for .mp3 files.
|
files, and if unsuccessful, it populates the list by scanning a local directory for .mp3 files.
|
||||||
@@ -50,9 +51,33 @@ class MusicFileList(object):
|
|||||||
if platform == "win32":
|
if platform == "win32":
|
||||||
temp_music_file = temp_music_file.replace("/", "\\")
|
temp_music_file = temp_music_file.replace("/", "\\")
|
||||||
self.music_file_list.append(temp_music_file)
|
self.music_file_list.append(temp_music_file)
|
||||||
self.file_service_active = False
|
self.file_service_active = False
|
||||||
self.logger.error(e.strerror)
|
self.logger.error(e.strerror)
|
||||||
self.logger.error("Service Unavailable")
|
self.logger.error("Service Unavailable")
|
||||||
|
finally:
|
||||||
|
if self.file_service_active:
|
||||||
|
self.logger.info("Radio Status: Probably Active")
|
||||||
|
status = discord.Status.online
|
||||||
|
# radio_hardkor = discord.Activity(
|
||||||
|
# name = "Radio Hammer/Radio Conjurer/Wolne Bałuity Kurwa",
|
||||||
|
# url = "http://95.175.16.246:666/mp3-stream",
|
||||||
|
# type = discord.ActivityType.streaming,
|
||||||
|
# platform = "Liquidsoap+RaspberyPi+RolandSeratoDJ202",
|
||||||
|
# state = "Where the f*** is the DJ booth?",
|
||||||
|
# details= "This Is Radio Hardkor based in Wolne Księstwo Bałuty, the best pirate radiostation on both sides of Łódka river",
|
||||||
|
# buttons= [{"label":"RADIO", "url":"http://95.175.16.246:666/mp3-stream"}],
|
||||||
|
# assets= {"large_image": "fuckery.jpg", "large_text":"Fuckewry", "small_image":"willowisp.png", "small_text":"Hi!"}
|
||||||
|
# )
|
||||||
|
radio_hardkor = discord.Streaming(
|
||||||
|
name="Radio Hardkor", url="http://95.175.16.246:666/mp3-stream"
|
||||||
|
)
|
||||||
|
await bot.change_presence(status=status, activity=radio_hardkor)
|
||||||
|
|
||||||
|
else:
|
||||||
|
self.logger.info("Radio Status: Rather Unknown")
|
||||||
|
await bot.change_presence(
|
||||||
|
activity=discord.Game(name="Axe Throwing Darts")
|
||||||
|
)
|
||||||
|
|
||||||
def get_file_list(self):
|
def get_file_list(self):
|
||||||
"""
|
"""
|
||||||
@@ -150,10 +175,11 @@ async def get_file(ctx, source, link):
|
|||||||
elif source == "Youtube":
|
elif source == "Youtube":
|
||||||
link_ok = False
|
link_ok = False
|
||||||
pat = r"^https?:\/\/(?:www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b(?:[-a-zA-Z0-9()@:%_\+.~#?&\/=]*)$"
|
pat = r"^https?:\/\/(?:www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b(?:[-a-zA-Z0-9()@:%_\+.~#?&\/=]*)$"
|
||||||
if re.match(pat, link) and (re.match(".*youtube.*", link) or re.match(".*youtu.be.*", link)):
|
if re.match(pat, link) and (
|
||||||
|
re.match(".*youtube.*", link) or re.match(".*youtu.be.*", link)
|
||||||
|
):
|
||||||
link_ok = True
|
link_ok = True
|
||||||
|
|
||||||
|
|
||||||
if link_ok:
|
if link_ok:
|
||||||
dir_path = ""
|
dir_path = ""
|
||||||
file_list = []
|
file_list = []
|
||||||
|
|||||||
+6
-1
@@ -20,6 +20,7 @@ class OtherModule(commands.Cog):
|
|||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="przytul", description="Przytul kogoś - daj mention po komendzie :)"
|
name="przytul", description="Przytul kogoś - daj mention po komendzie :)"
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def przytul(self, ctx, arg: Optional[discord.Member] = None):
|
async def przytul(self, ctx, arg: Optional[discord.Member] = None):
|
||||||
"""
|
"""
|
||||||
Generate a text about hugging mentioned user.
|
Generate a text about hugging mentioned user.
|
||||||
@@ -53,6 +54,7 @@ class OtherModule(commands.Cog):
|
|||||||
)
|
)
|
||||||
|
|
||||||
@commands.hybrid_command(name="fabryczka", description="Historia fabryczki")
|
@commands.hybrid_command(name="fabryczka", description="Historia fabryczki")
|
||||||
|
@commands.has_any_role('Legenda', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def fabryczka(self, ctx):
|
async def fabryczka(self, ctx):
|
||||||
"""
|
"""
|
||||||
Send a general description of "fabryczkagate" to channel.
|
Send a general description of "fabryczkagate" to channel.
|
||||||
@@ -69,6 +71,7 @@ class OtherModule(commands.Cog):
|
|||||||
description="Resetowanie zegara - dostępne wyłącznie dla Hammera",
|
description="Resetowanie zegara - dostępne wyłącznie dla Hammera",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Legenda', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def reset_the_clock(self, ctx):
|
async def reset_the_clock(self, ctx):
|
||||||
"""
|
"""
|
||||||
Reset the clock on "accidents" in Hammer Fortress adding a new one.
|
Reset the clock on "accidents" in Hammer Fortress adding a new one.
|
||||||
@@ -105,6 +108,7 @@ class OtherModule(commands.Cog):
|
|||||||
name="chata_hammera",
|
name="chata_hammera",
|
||||||
description="Czas od ostatniego incydentu w AbsinthHammerTimeSpaceContinuum",
|
description="Czas od ostatniego incydentu w AbsinthHammerTimeSpaceContinuum",
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def chata_hammera(self, ctx):
|
async def chata_hammera(self, ctx):
|
||||||
"""
|
"""
|
||||||
Send measured time from last incident in Hammer Fortress to the chat.
|
Send measured time from last incident in Hammer Fortress to the chat.
|
||||||
@@ -127,6 +131,7 @@ class OtherModule(commands.Cog):
|
|||||||
name="historia_incydentow_u_hammera",
|
name="historia_incydentow_u_hammera",
|
||||||
description="Wyswietla liste incydentów które miały miejsce w AbsinthHammerTimeSpaceContinuum.",
|
description="Wyswietla liste incydentów które miały miejsce w AbsinthHammerTimeSpaceContinuum.",
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def historia_incydentow_u_hammera(self, ctx):
|
async def historia_incydentow_u_hammera(self, ctx):
|
||||||
"""
|
"""
|
||||||
Send a list of incidents in Hammer Fortress to the chat.
|
Send a list of incidents in Hammer Fortress to the chat.
|
||||||
@@ -149,12 +154,12 @@ class OtherModule(commands.Cog):
|
|||||||
index += 1
|
index += 1
|
||||||
await ctx.send(return_data)
|
await ctx.send(return_data)
|
||||||
|
|
||||||
# TODO: RADIO
|
|
||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="radio_hardkor",
|
name="radio_hardkor",
|
||||||
description="Włącza radio Conjurer na kanale #nocna-zmiana.",
|
description="Włącza radio Conjurer na kanale #nocna-zmiana.",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def radio_hardkor(self, ctx):
|
async def radio_hardkor(self, ctx):
|
||||||
"""
|
"""
|
||||||
Plays the radio hardkor stream in the voice channel.
|
Plays the radio hardkor stream in the voice channel.
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ async def async_iterator_generator(range_of_iterable):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
# TODO: OTHER
|
|
||||||
async def remove_characters(string, character):
|
async def remove_characters(string, character):
|
||||||
"""
|
"""
|
||||||
The `remove_characters` function removes all occurrences of a specified character from a given
|
The `remove_characters` function removes all occurrences of a specified character from a given
|
||||||
@@ -39,7 +38,6 @@ async def remove_characters(string, character):
|
|||||||
return string.replace(character, "")
|
return string.replace(character, "")
|
||||||
|
|
||||||
|
|
||||||
# TODO: OTHER
|
|
||||||
async def max_weight(lista):
|
async def max_weight(lista):
|
||||||
"""
|
"""
|
||||||
Take a list of weights and return the maximum weight.
|
Take a list of weights and return the maximum weight.
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
|
||||||
|
/home/pi/RetroPie/mp3/Muzyka/2011/Hallman/Hallman - 7 Bram/Niezłomność/Twardzi jak Stal/03-Forteca-1942.mp3
|
||||||
|
/home/pi/RetroPie/mp3/Muzyka/2012/Głos Patriotów (2011) (Wirrrus)/09. Świty Zmartwychwstania.mp3
|
||||||
|
/home/pi/RetroPie/mp3/Muzyka/2011/Horytnica Czas Patriotów/Horytnica - Promo track CD 2011 Nie musimy umiera.mp3
|
||||||
|
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/08-Schmaletz-REWOLUCYJNA_NSZ(1).mp3
|
||||||
|
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/schmaletz_-_nie_ma_fajnych_lasek_na_prawicy.mp3
|
||||||
|
/home/pi/RetroPie/mp3/Youtube/ADU - Lecimy ze Smoleńska z powrotem [f3CVfG4pV8M].mp3
|
||||||
|
/home/pi/RetroPie/mp3/2022 Nov-Dec/Anahata - Winged Hussars - Cover.m4a
|
||||||
|
/home/pi/RetroPie/mp3/2022 Nov-Dec/Sabaton - 40#1 - Live, at Woodstock Festival.m4a
|
||||||
|
/home/pi/RetroPie/mp3/2022 Nov-Dec/Sabaton - Uprising - Live, at Woodstock Festival.m4a
|
||||||
|
/home/pi/RetroPie/mp3/2022 Nov-Dec/Sabaton - Inmate 4859.m4a
|
||||||
|
/home/pi/RetroPie/mp3/2022 Nov-Dec/Sabaton - Winged Hussars.m4a
|
||||||
|
/home/pi/RetroPie/mp3/Youtube/ADU Ada Karczmarczyk - Hej husarzu! ⧸ NIE_PODLE_głości dzień [SReTynvd6ek].mp3
|
||||||
|
/home/pi/RetroPie/mp3/2023 Aug-Oct/Sabadu - A Very Polish Christmas.mp3
|
||||||
|
/home/pi/RetroPie/mp3/2023 Aug-Oct/Sabadu - Mighty Polish Tank.mp3
|
||||||
|
/home/pi/RetroPie/mp3/Youtube/ADU - Nie chcę w lewo, nie chcę w prawo [J3Ok-KcbQ80].mp3
|
||||||
|
/home/pi/RetroPie/mp3/2022 Nov-Dec/Sabaton - 40#1 - World War Tour 2010.m4a
|
||||||
|
/home/pi/RetroPie/mp3/Muzyka/2012/Głos Patriotów (2011) (Wirrrus)/01. Prolog.mp3
|
||||||
|
/home/pi/RetroPie/mp3/Muzyka/2012/Głos Patriotów (2011) (Wirrrus)/02. Honor Legionisty.mp3
|
||||||
|
/home/pi/RetroPie/mp3/Muzyka/2012/Głos Patriotów (2011) (Wirrrus)/07. Już Nie Musimy Umierać.mp3
|
||||||
@@ -28,17 +28,12 @@
|
|||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - Apel poległych.mp3
|
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - Apel poległych.mp3
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - BEZIMIEŃCOM.mp3
|
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - BEZIMIEŃCOM.mp3
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - DZIŚ IDE WALCZYĆ MAMO.mp3
|
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - DZIŚ IDE WALCZYĆ MAMO.mp3
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - Elegia o Chłopcu polskim.mp3
|
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - GNIEW.mp3
|
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - GNIEW.mp3
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - KATYŃ.mp3
|
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - KATYŃ.mp3
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/Forteca - Miałeś tylko karabin.mp3
|
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2010/Sabaton -2010- Coat Of Arms/03- Uprising.mp3
|
/home/pi/RetroPie/mp3/Muzyka/2010/Sabaton -2010- Coat Of Arms/03- Uprising.mp3
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - ORZEŁ BIAŁY.mp3
|
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - ORZEŁ BIAŁY.mp3
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - SŁOŃCE WRZEŚNIA.mp3
|
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/FORTECA - Żołnierz Polski.mp3
|
|
||||||
/home/pi/RetroPie/mp3/2023 Aug-Oct/Sabadu - Mighty Polish Tank.mp3
|
/home/pi/RetroPie/mp3/2023 Aug-Oct/Sabadu - Mighty Polish Tank.mp3
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/Dj. Celownik & Hallmann - O jau mano mielas [zapiska.pl].mp3
|
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/Dj. Celownik & Hallmann - O jau mano mielas [zapiska.pl].mp3
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/Dj.Celownik
|
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/Dj.Celownik & Hallmann - Duma o Zakrzewskim [zapiska.pl].mp3
|
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/Dj.Celownik & Hallmann - Duma o Zakrzewskim [zapiska.pl].mp3
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/Dj.Celownik & Hallmann - Na lipe slowianska [zapiska.pl].mp3
|
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/Dj.Celownik & Hallmann - Na lipe slowianska [zapiska.pl].mp3
|
||||||
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/Dj.Celownik & Hallmann - Piesn Legijonu Litewskiego [zapiska.pl].mp3
|
/home/pi/RetroPie/mp3/Muzyka/2011/muza patriotyczna/Dj.Celownik & Hallmann - Piesn Legijonu Litewskiego [zapiska.pl].mp3
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ class RadioModule(commands.Cog):
|
|||||||
description="Przeskocz kawałek w radiu",
|
description="Przeskocz kawałek w radiu",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Legenda', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def skip_track(self, ctx):
|
async def skip_track(self, ctx):
|
||||||
async with ctx.typing():
|
async with ctx.typing():
|
||||||
allowed = False
|
allowed = False
|
||||||
@@ -45,6 +46,7 @@ class RadioModule(commands.Cog):
|
|||||||
description="Komenda ktora uruchamia radio ponownie jakby się zawiesiło",
|
description="Komenda ktora uruchamia radio ponownie jakby się zawiesiło",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Legenda', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def zrestartuj_radio(self, ctx):
|
async def zrestartuj_radio(self, ctx):
|
||||||
async with ctx.typing():
|
async with ctx.typing():
|
||||||
allowed = False
|
allowed = False
|
||||||
@@ -68,6 +70,7 @@ class RadioModule(commands.Cog):
|
|||||||
description="Dodaje do listy ulubionych w radiu",
|
description="Dodaje do listy ulubionych w radiu",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Legenda', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def dodaj_do_ulubionych(self, ctx):
|
async def dodaj_do_ulubionych(self, ctx):
|
||||||
"""
|
"""
|
||||||
Generate a playlist in queue. First word in this command shall be int defining length of the playlist.
|
Generate a playlist in queue. First word in this command shall be int defining length of the playlist.
|
||||||
@@ -104,6 +107,7 @@ class RadioModule(commands.Cog):
|
|||||||
description="Dodaje do listy ulubionych w radiu",
|
description="Dodaje do listy ulubionych w radiu",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def request_radio(self, ctx):
|
async def request_radio(self, ctx):
|
||||||
"""
|
"""
|
||||||
Generate a playlist in queue. First word in this command shall be int defining length of the playlist.
|
Generate a playlist in queue. First word in this command shall be int defining length of the playlist.
|
||||||
@@ -138,6 +142,7 @@ class RadioModule(commands.Cog):
|
|||||||
description="Dodaje do listy ulubionych w radiu",
|
description="Dodaje do listy ulubionych w radiu",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Legenda', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def stworz_audycje(self, ctx):
|
async def stworz_audycje(self, ctx):
|
||||||
"""
|
"""
|
||||||
Generate a playlist in queue. First word in this command shall be int defining length of the playlist.
|
Generate a playlist in queue. First word in this command shall be int defining length of the playlist.
|
||||||
@@ -174,6 +179,7 @@ class RadioModule(commands.Cog):
|
|||||||
description="Czysci liste ulubionych w radiu",
|
description="Czysci liste ulubionych w radiu",
|
||||||
guild=discord.Object(id=664789470779932693),
|
guild=discord.Object(id=664789470779932693),
|
||||||
)
|
)
|
||||||
|
@commands.has_any_role('Legenda', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def wyczysc_ulubione(self, ctx):
|
async def wyczysc_ulubione(self, ctx):
|
||||||
"""
|
"""
|
||||||
Generate a playlist in queue. First word in this command shall be int defining length of the playlist.
|
Generate a playlist in queue. First word in this command shall be int defining length of the playlist.
|
||||||
|
|||||||
@@ -1,178 +0,0 @@
|
|||||||
# FILEPATH: /home/mtuszowski/conjurer/conjurer_musician/radio_conjurer.liq
|
|
||||||
|
|
||||||
# This script sets up a Liquidsoap radio stream with various features and configurations.
|
|
||||||
|
|
||||||
# Load icecast credentials from a JSON file
|
|
||||||
let json.parse credentials = file.contents("/home/pi/Conjurer/icecast_credentials.json")
|
|
||||||
|
|
||||||
# Enable replaygain metadata processing
|
|
||||||
enable_replaygain_metadata()
|
|
||||||
|
|
||||||
# Set up a playlog for tracking played tracks
|
|
||||||
|
|
||||||
l = playlog(duration = 72000.0, persistency="/home/pi/Conjurer/persistence.log")
|
|
||||||
|
|
||||||
# Function to check if a track can be played based on its metadata
|
|
||||||
def check(r)
|
|
||||||
m = request.metadata(r)
|
|
||||||
if l.last(m) < 36000. then
|
|
||||||
log.info("Rejecting #{m['filename']} (played #{l.last(m)}s ago).")
|
|
||||||
false
|
|
||||||
else
|
|
||||||
l.add(m)
|
|
||||||
true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# Define playlists to be used in the stream
|
|
||||||
s1 = replaygain(playlist(reload_mode="watch", check_next=check, "/home/pi/Conjurer/all_playlist.playlist"))
|
|
||||||
s2 = replaygain(playlist(reload_mode="watch", check_next=check, "/home/pi/Conjurer/priority_queue.playlist"))
|
|
||||||
s3 = replaygain(playlist(reload_mode="watch", check_next=check, "/home/pi/Conjurer/hit.playlist"))
|
|
||||||
|
|
||||||
# Create a request queue for user-generated requests
|
|
||||||
requests_queue = request.queue()
|
|
||||||
|
|
||||||
# Function to process the request queue and add new requests
|
|
||||||
def queue_processing()
|
|
||||||
text=file.lines("/home/pi/Conjurer/request.playlist")
|
|
||||||
if text != [] then
|
|
||||||
list.iter(fun(item) -> requests_queue.push.uri(item), text)
|
|
||||||
file.remove("/home/pi/Conjurer/request.playlist")
|
|
||||||
f = file.open("/home/pi/Conjurer/request.playlist", create=true)
|
|
||||||
f.close()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# Randomly select a playlist with weights
|
|
||||||
s4 = random(id="randomizer", weights=[2, 3, 5], [s1, s2, s3])
|
|
||||||
|
|
||||||
# Load jingles playlist
|
|
||||||
jingles = (playlist(reload_mode="watch", "/home/pi/Conjurer/jingles.playlist"))
|
|
||||||
|
|
||||||
# Create the main stream with random playlist and jingles
|
|
||||||
s = rotate(id="randomizer", weights=[10, 1], [s4, jingles])
|
|
||||||
|
|
||||||
s = crossfade(fade_out=2., fade_in=2., duration=4., fallback(id="switcher", track_sensitive=false, [requests_queue, s]))
|
|
||||||
|
|
||||||
# Set up an interactive harbor for controlling the stream
|
|
||||||
interactive.harbor(port = 9999)
|
|
||||||
#harbor.input(buffer=30.0)
|
|
||||||
# Set up interactive controls for bass boost
|
|
||||||
f = interactive.float("f", description="Frequency", min=0., max=1000., unit="Hz", 200.)
|
|
||||||
g = interactive.float("g", description="Gain", min=0., max=20., unit="dB", 8.)
|
|
||||||
b = bass_boost(frequency=f, gain=g, s)
|
|
||||||
s = add([s, b])
|
|
||||||
|
|
||||||
# Set up interactive control for main volume
|
|
||||||
a = interactive.float("main_volume", min=0., max=20., 0.4)
|
|
||||||
s = compress.multiband.interactive(bands=7, s)
|
|
||||||
|
|
||||||
mic_gain = interactive.float("mic_volume", min=0., max=120., 6.)
|
|
||||||
|
|
||||||
# Apply audio processing effects
|
|
||||||
tmic = buffer(input.pulseaudio()) # Microphone
|
|
||||||
mic = amplify(mic_gain, tmic)
|
|
||||||
mic = gate(threshold=-80., range=-120., mic)
|
|
||||||
mic = compress(threshold=0., ratio=2.,mic)
|
|
||||||
mic = nrj(normalize(mic))
|
|
||||||
mic = blank.strip(max_blank=10., min_noise=.1, threshold=-20., mic)
|
|
||||||
s = add([s, mic])
|
|
||||||
|
|
||||||
# Apply audio processing effects
|
|
||||||
s = nrj(normalize(s))
|
|
||||||
s = amplify(a, s)
|
|
||||||
# Skip blank sections in the stream
|
|
||||||
s = blank.skip(max_blank=10., s)
|
|
||||||
|
|
||||||
#Manual audition override
|
|
||||||
live_enabled = interactive.bool("Going Live!", true)
|
|
||||||
|
|
||||||
|
|
||||||
s = crossfade(fade_out=10., fade_in=5., duration=15., switch(track_sensitive=false,
|
|
||||||
[(live_enabled, mic),
|
|
||||||
({true}, s)])
|
|
||||||
)
|
|
||||||
|
|
||||||
# Configure logging settings
|
|
||||||
log_to_stdout = true
|
|
||||||
log_to_file = true
|
|
||||||
logpath = "/home/pi/Conjurer/radio_log.log"
|
|
||||||
loglevel = 3
|
|
||||||
set("log.stdout", log_to_stdout)
|
|
||||||
set("log.level", loglevel)
|
|
||||||
|
|
||||||
# Enable logging to file
|
|
||||||
set("log.file", log_to_file)
|
|
||||||
set("log.file.path", logpath)
|
|
||||||
|
|
||||||
# Set up emergency fallback track
|
|
||||||
emergency = single("/home/pi/RetroPie/mp3/Youtube/Dr. Peacock - Trip to Ireland [GvrvQTUbUcA].mp3")
|
|
||||||
radio = fallback(id="switcher2", track_sensitive=false, [s, emergency])
|
|
||||||
|
|
||||||
# Set up an interactive control for skipping tracks
|
|
||||||
p = interactive.bool("Skip track", false)
|
|
||||||
def http_skip(~protocol, ~data, ~headers, uri)=
|
|
||||||
radio.skip()
|
|
||||||
http.response(code=200,data="Skipped")
|
|
||||||
end
|
|
||||||
harbor.http.register(port=54321,method="GET","/skip", http_skip)
|
|
||||||
|
|
||||||
|
|
||||||
# Function to process the request queue and skip the current track if requested
|
|
||||||
def check_skip()
|
|
||||||
if p() then
|
|
||||||
log.info("Skipping current track.")
|
|
||||||
radio.skip()
|
|
||||||
p.set(false)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# Run the queue processing function every 60 seconds
|
|
||||||
thread.run(every=60., queue_processing)
|
|
||||||
|
|
||||||
|
|
||||||
# Run the check_skip function every 5 seconds
|
|
||||||
thread.run(every=15., check_skip)
|
|
||||||
|
|
||||||
|
|
||||||
# Enable persistent script parameters
|
|
||||||
interactive.persistent("script.params")
|
|
||||||
|
|
||||||
# Configure output formats and destinations
|
|
||||||
|
|
||||||
|
|
||||||
output.icecast(%mp3, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="mp3-stream", radio)
|
|
||||||
output.pulseaudio(radio)
|
|
||||||
#output.file.hls("/tmp/hls", [("mp3-low", %mp3(bitrate=96)), ("mp3-hi", %mp3(bitrate=160))], radio)
|
|
||||||
# Uncomment the following lines to enable additional output formats
|
|
||||||
# output.icecast(%opus, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="opus-stream", radio)
|
|
||||||
# output.icecast(%ogg, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="ogg-stream", radio)
|
|
||||||
# output.icecast(%aac, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="aac-stream", radio)
|
|
||||||
# output.icecast(%flac, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="flac-stream", radio)
|
|
||||||
# output.icecast(%vorbis, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="vorbis-stream", radio)
|
|
||||||
# output.icecast(%speex, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="speex-stream", radio)
|
|
||||||
# output.icecast(%wav, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="wav-stream", radio)
|
|
||||||
# output.icecast(%pcm, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="pcm-stream", radio)
|
|
||||||
# output.icecast(%raw, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="raw-stream", radio)
|
|
||||||
# output.icecast(%s16l, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s16l-stream", radio)
|
|
||||||
# output.icecast(%s16b, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s16b-stream", radio)
|
|
||||||
# output.icecast(%s24l, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s24l-stream", radio)
|
|
||||||
# output.icecast(%s24b, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s24b-stream", radio)
|
|
||||||
# output.icecast(%s32l, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s32l-stream", radio)
|
|
||||||
# output.icecast(%s32b, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s32b-stream", radio)
|
|
||||||
# output.icecast(%s64l, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s64l-stream", radio)
|
|
||||||
# output.icecast(%s64b, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s64b-stream", radio)
|
|
||||||
# output.icecast(%s128l, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s128l-stream", radio)
|
|
||||||
# output.icecast(%s128b, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s128b-stream", radio)
|
|
||||||
# output.icecast(%s256l, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s256l-stream", radio)
|
|
||||||
# output.icecast(%s256b, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s256b-stream", radio)
|
|
||||||
# output.icecast(%s512l, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s512l-stream", radio)
|
|
||||||
# output.icecast(%s512b, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s512b-stream", radio)
|
|
||||||
# output.icecast(%s1024l, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s1024l-stream", radio)
|
|
||||||
# output.icecast(%s1024b, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s1024b-stream", radio)
|
|
||||||
# output.icecast(%s2048l, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s2048l-stream", radio)
|
|
||||||
# output.icecast(%s2048b, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s2048b-stream", radio)
|
|
||||||
# output.icecast(%s4096l, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s4096l-stream", radio)
|
|
||||||
# output.icecast(%s4096b, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s4096b-stream", radio)
|
|
||||||
# output.icecast(%s8192l, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s8192l-stream", radio)
|
|
||||||
# output.icecast(%s8192b, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="s8192b-stream", radio)
|
|
||||||
@@ -1,5 +1,11 @@
|
|||||||
[ {
|
[ {
|
||||||
"role": "system",
|
"role": "system",
|
||||||
"content": "Mówisz po polsku. W tej rozmowie odgrywasz rolę. Odgrywasz ją najlepiej jak potrafisz. Twoją rolą jest to że jesteś barmanem oraz wykidajłą w klimatycznym barze mechawojownikóww. Nazywasz się Conjurer, jesteś 200 kilowym genetycznie modyfikowanym wojownikiem z klanu Wilka Na Wygnaniu. W tym barze oraz na tym serwerze spotykają się mechawojownicy, ale głównie ludzie ze środowiska kinky i BDSM z całej Polski. Najostrzejsi sasdyści i masochiści jakich znasz. Drinki które przygotowujesz lub proponujesz mają tendencję do bycia bardzo mocnymi z intrygującymi nazwami. Jesteś bardzo miłym i uczynny. Czasem ponoszą Cię wodzę fantazji. W wypadku muzyki preferujesz hard rock i metal. Oraz motywy wikińskie."
|
"content": "Mówisz po polsku. W tej rozmowie odgrywasz rolę. Odgrywasz ją najlepiej jak potrafisz. Twoją rolą jest to że jesteś barmanem oraz wykidajłą w klimatycznym barze mechawojownikóww. Nazywasz się Conjurer, jesteś 200 kilowym genetycznie modyfikowanym wojownikiem z klanu Wilka Na Wygnaniu. W tym barze oraz na tym serwerze spotykają się mechawojownicy, ale głównie ludzie ze środowiska kinky i BDSM z całej Polski. Najostrzejsi sasdyści i masochiści jakich znasz. Drinki które przygotowujesz lub proponujesz mają tendencję do bycia bardzo mocnymi z intrygującymi nazwami. Jesteś bardzo miłym i uczynny. Czasem ponoszą Cię wodzę fantazji. W wypadku muzyki preferujesz hard rock i metal. Oraz motywy wikińskie."
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
"Polish Hammer" : [346956223645614080, "Conjurer", "Polish Hammer", "Mówisz po polsku. W tej rozmowie odgrywasz rolę. Odgrywasz ją najlepiej jak potrafisz. Twoją rolą jest to że jesteś barmanem oraz wykidajłą w klimatycznym barze mechawojownikóww. Nazywasz się Conjurer, jesteś 200 kilowym genetycznie modyfikowanym wojownikiem z klanu Wilka Na Wygnaniu. W tym barze oraz na tym serwerze spotykają się mechawojownicy, ale głównie ludzie ze środowiska kinky i BDSM z całej Polski. Najostrzejsi sasdyści i masochiści jakich znasz. Drinki które przygotowujesz lub proponujesz mają tendencję do bycia bardzo mocnymi z intrygującymi nazwami. Jesteś bardzo miłym i uczynny. Czasem ponoszą Cię wodzę fantazji. W wypadku muzyki preferujesz hard rock i metal. Oraz motywy wikińskie.", ""],
|
||||||
|
"Saint Harlot": [703985955312238664, "Saint Conjurer", "Saint Harlot", "Jesteś bardzo uprzejmy, kulturalny i masz najlepsze możliwe maniery.", ""],
|
||||||
|
"Lena": [735185226669490268, "Kondzisław z Krótkiej", "Lena", "Jesteś bardzo uprzejmy, kulturalny, acz masz maniery zbira o złotym sercu. Dodatkowo twoja rozmówczyni Cię absolutnie przeraża.", ""],
|
||||||
|
"Pat vel Jeż Bojowy": [244899814406356992, "Rycerz Kondziu", "Pat vel Jeż Bojowy", "Masz najlepsze dworskie maniery, zachowujesz się niczym rycerz i mówisz nieco staromodną polszczyzną.", ""]
|
||||||
|
}
|
||||||
]
|
]
|
||||||
+13
@@ -0,0 +1,13 @@
|
|||||||
|
AsyncCursorPage[Message](
|
||||||
|
data=[Message(id='msg_3eWSdgbcU8sbCmJK2momOgQQ',
|
||||||
|
assistant_id='asst_06eZiwvYNK3MR34suFP60gvg',
|
||||||
|
attachments=[],
|
||||||
|
completed_at=None,
|
||||||
|
content=[TextContentBlock(text=Text(annotations=[], value='Cześć! Oto coś do przemyślenia: \n\n„Sukces to suma niewielkich wysiłków powtarzanych dzień po dniu.” — Robert Collier\n\nTo przypomina nam, że często to nie wielkie działania, ale konsekwentne, małe kroki prowadzą do osiągnięcia celu. Jak mogę Ci dzisiaj pomóc?'), type='text')], created_at=1731620112, incomplete_at=None, incomplete_details=None, metadata={}, object='thread.message', role='assistant', run_id='run_JGjWQTCEkDcEYpyCJnrkZU8Q', status=None, thread_id='thread_dDEjGbGm6ICfG75u0KKpoVxD'), Message(id='msg_GFcnfCFgAthGm2D3oE5d0ZkQ', assistant_id=None, attachments=[], completed_at=None, content=[TextContentBlock(text=Text(annotations=[], value='Cześć! Powiedz coś mądrego'), type='text')], created_at=1731620110, incomplete_at=None, incomplete_details=None, metadata={}, object='thread.message', role='user', run_id=None, status=None, thread_id='thread_dDEjGbGm6ICfG75u0KKpoVxD')], object='list', first_id='msg_3eWSdgbcU8sbCmJK2momOgQQ', last_id='msg_GFcnfCFgAthGm2D3oE5d0ZkQ', has_more=False)
|
||||||
|
|
||||||
|
|
||||||
|
[TextContentBlock(
|
||||||
|
text=Text(annotations=[],
|
||||||
|
value='Cześć! Oto coś do rozważenia: "Największą przeszkodą w naszym życiu jest brak odwagi do wprowadzenia zmian." Niezależnie od tego, jakie masz cele czy marzenia, odwaga do działania i przystosowania się do nowych sytuacji jest kluczem do osiągnięcia sukcesu. Jakie masz przemyślenia na ten temat?'),
|
||||||
|
type='text')
|
||||||
|
]
|
||||||
+8
-1
@@ -1,4 +1,11 @@
|
|||||||
let json.parse credentials = file.contents("/home/pi/Conjurer/icecast_credentials.json")
|
let json.parse credentials = file.contents("/home/pi/Conjurer/icecast_credentials.json")
|
||||||
|
|
||||||
output.icecast(%mp3, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="mp3-stream",input.pulseaudio())
|
mic = buffer(input.pulseaudio())
|
||||||
|
emergency = blank()
|
||||||
|
mic = blank.strip(max_blank=10., min_noise=0.2, threshold=-30., mic)
|
||||||
|
|
||||||
|
|
||||||
|
radio = fallback(id="switcher2", track_sensitive=false, [mic, emergency])
|
||||||
|
|
||||||
|
output.icecast(%mp3, host="retropie", port=8000, password=credentials.password, icy_metadata="true", mount="mp3-stream",radio)
|
||||||
|
|
||||||
|
|||||||
+7
-5
@@ -27,6 +27,11 @@ intents.presences = True
|
|||||||
intents.members = True
|
intents.members = True
|
||||||
intents.messages = True
|
intents.messages = True
|
||||||
intents.voice_states = True
|
intents.voice_states = True
|
||||||
|
intents.moderation = True
|
||||||
|
|
||||||
|
# on_member_ban - wyswietl na glownym kanale pieczatke "Niech spierdala"
|
||||||
|
# on_member_unban - "mam wyjebane"
|
||||||
|
|
||||||
logger = logging.getLogger("discord")
|
logger = logging.getLogger("discord")
|
||||||
logger.setLevel(logging.DEBUG)
|
logger.setLevel(logging.DEBUG)
|
||||||
handler = handlers.RotatingFileHandler(
|
handler = handlers.RotatingFileHandler(
|
||||||
@@ -60,15 +65,12 @@ async def on_ready():
|
|||||||
await client.load_extension("other_commands")
|
await client.load_extension("other_commands")
|
||||||
await client.load_extension("voice_recognition_commands")
|
await client.load_extension("voice_recognition_commands")
|
||||||
|
|
||||||
|
|
||||||
logger.info(client.cogs)
|
logger.info(client.cogs)
|
||||||
await client.change_presence(activity=discord.Game(name="Axe Throwing Darts"))
|
|
||||||
await client.tree.sync()
|
await client.tree.sync()
|
||||||
for com in client.commands:
|
for com in client.commands:
|
||||||
logger.info("Command %s is awejleble", com.qualified_name)
|
logger.info("Command %s is awejleble", com.qualified_name)
|
||||||
|
logger.info("Logged in as ---->", client.user)
|
||||||
|
logger.info("ID:", client.user.id)
|
||||||
# TODO: ADMINISTRATION
|
|
||||||
|
|
||||||
|
|
||||||
# *================================== Run
|
# *================================== Run
|
||||||
|
|||||||
@@ -161,6 +161,7 @@ class Transcriber(commands.Cog):
|
|||||||
self.logger = logging.getLogger("discord")
|
self.logger = logging.getLogger("discord")
|
||||||
|
|
||||||
@commands.hybrid_command(name="transcribe")
|
@commands.hybrid_command(name="transcribe")
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def test(self, ctx):
|
async def test(self, ctx):
|
||||||
if self.vc:
|
if self.vc:
|
||||||
vc = self.vc # to juz powinien byc voice channel z funkcja conenct
|
vc = self.vc # to juz powinien byc voice channel z funkcja conenct
|
||||||
@@ -231,6 +232,7 @@ class Transcriber(commands.Cog):
|
|||||||
self.logger.debug("After %s", after)
|
self.logger.debug("After %s", after)
|
||||||
|
|
||||||
@commands.command(name="stop_transcribe")
|
@commands.command(name="stop_transcribe")
|
||||||
|
@commands.has_any_role('Nocna Zmiana', 'Jarl', 'Thane' , 'Bartender')
|
||||||
async def stop(self, ctx):
|
async def stop(self, ctx):
|
||||||
self.check_data.stop()
|
self.check_data.stop()
|
||||||
stop_token = CommunicationObject("STOP", None, None)
|
stop_token = CommunicationObject("STOP", None, None)
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 39 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
Reference in New Issue
Block a user