change name

This commit is contained in:
levina 2022-02-07 23:11:55 +07:00 committed by GitHub
parent e4ddf83017
commit be616b3bea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
import asyncio import asyncio
from driver.queues import QUEUE, clear_queue, get_queue, pop_an_item from driver.queues import QUEUE, clear_queue, get_queue, pop_an_item
from driver.veez import bot, call_py from driver.core import bot, calls
from pyrogram.types import InlineKeyboardButton, InlineKeyboardMarkup from pyrogram.types import InlineKeyboardButton, InlineKeyboardMarkup
from pytgcalls.types import Update from pytgcalls.types import Update
from pytgcalls.types.input_stream import AudioPiped, AudioVideoPiped from pytgcalls.types.input_stream import AudioPiped, AudioVideoPiped
@ -17,8 +17,8 @@ from pytgcalls.types.stream import StreamAudioEnded
keyboard = InlineKeyboardMarkup( keyboard = InlineKeyboardMarkup(
[ [
[ [
InlineKeyboardButton(text="• Mᴇɴ", callback_data="cbmenu"), InlineKeyboardButton(text="• Mᴇɴ", callback_data="stream_menu_panel"),
InlineKeyboardButton(text="• Cʟsᴇ", callback_data="cls"), InlineKeyboardButton(text="• Cʟsᴇ", callback_data="close_menu"),
] ]
] ]
) )
@ -39,7 +39,7 @@ async def skip_current_song(chat_id):
type = chat_queue[1][3] type = chat_queue[1][3]
Q = chat_queue[1][4] Q = chat_queue[1][4]
if type == "Audio": if type == "Audio":
await call_py.change_stream( await calls.change_stream(
chat_id, chat_id,
AudioPiped( AudioPiped(
url, url,
@ -53,7 +53,7 @@ async def skip_current_song(chat_id):
hm = MediumQualityVideo() hm = MediumQualityVideo()
elif Q == 360: elif Q == 360:
hm = LowQualityVideo() hm = LowQualityVideo()
await call_py.change_stream( await calls.change_stream(
chat_id, chat_id,
AudioVideoPiped( AudioVideoPiped(
url, url,
@ -64,7 +64,7 @@ async def skip_current_song(chat_id):
pop_an_item(chat_id) pop_an_item(chat_id)
return [songname, link, type] return [songname, link, type]
except: except:
await call_py.leave_group_call(chat_id) await calls.leave_group_call(chat_id)
clear_queue(chat_id) clear_queue(chat_id)
return 2 return 2
else: else: