Есть скрипт, который должен воспроизводить музыку, но вместо музыки очень громкие помехи
from pyrogram import Client, filters, types
from pytgcalls import *
import os
import asyncio
from pytgcalls.types.input_stream import *
api_id = ***
api_hash = '***'
client = Client('my_session', api_id, api_hash)
call_py = PyTgCalls(client)
@client.on_message(filters.regex('!play'))
async def play(client: Client, message: types.Message):
file = 'music.mp3'
while not os.path.exists(file):
await asyncio.sleep(0.125)
await call_py.join_group_call(
message.chat.id,
InputStream(
InputAudioStream(
file
)
)
)
call_py.start()
idle()