video-stream/program/video_stream.py

570 lines
24 KiB
Python
Raw Permalink Normal View History

2022-02-22 23:42:50 +00:00
"""
Video + Music Stream Telegram Bot
Copyright (c) 2022-present levina=lab <https://github.com/levina-lab>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but without any warranty; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/licenses.html>
"""
2022-01-31 12:42:18 +00:00
2022-02-09 15:37:12 +00:00
2022-01-31 12:42:18 +00:00
import re
import asyncio
2022-02-22 23:42:50 +00:00
2022-02-08 03:59:58 +00:00
from config import BOT_USERNAME, IMG_1, IMG_2, IMG_5
from driver.decorators import require_admin, check_blacklist
2022-01-31 12:42:18 +00:00
from program.utils.inline import stream_markup
2022-03-02 02:43:03 +00:00
from program import LOGS
2022-01-31 12:42:18 +00:00
from driver.design.thumbnail import thumb
from driver.design.chatname import CHAT_TITLE
from driver.filters import command, other_filters
from driver.queues import QUEUE, add_to_queue
2022-02-16 13:19:44 +00:00
from driver.core import calls, user, me_user
2022-02-09 15:37:12 +00:00
from driver.database.dbqueue import add_active_chat, remove_active_chat, music_on
2022-02-16 13:19:44 +00:00
from driver.utils import remove_if_exists, from_tg_get_msg
2022-02-22 23:42:50 +00:00
2022-01-31 12:42:18 +00:00
from pyrogram import Client
from pyrogram.errors import UserAlreadyParticipant, UserNotParticipant
from pyrogram.types import InlineKeyboardMarkup, Message
2022-02-22 23:42:50 +00:00
2022-01-31 12:42:18 +00:00
from pytgcalls import StreamType
from pytgcalls.types.input_stream import AudioVideoPiped
from pytgcalls.types.input_stream.quality import (
HighQualityAudio,
HighQualityVideo,
LowQualityVideo,
MediumQualityVideo,
)
2022-03-02 13:01:45 +00:00
from pytgcalls.exceptions import NoVideoSourceFound, NoActiveGroupCall, GroupCallNotFound, NoAudioSourceFound
2022-01-31 12:42:18 +00:00
from youtubesearchpython import VideosSearch
def ytsearch(query: str):
try:
search = VideosSearch(query, limit=1).result()
data = search["result"][0]
songname = data["title"]
url = data["link"]
duration = data["duration"]
2022-02-08 01:54:18 +00:00
thumbnail = data["thumbnails"][0]["url"]
2022-01-31 12:42:18 +00:00
return [songname, url, duration, thumbnail]
except Exception as e:
2022-03-02 02:41:54 +00:00
LOGS.info(f"[ERROR]: {e}")
2022-01-31 12:42:18 +00:00
return 0
async def ytdl(link):
proc = await asyncio.create_subprocess_exec(
"yt-dlp",
2022-02-16 06:39:37 +00:00
"--geo-bypass",
2022-01-31 12:42:18 +00:00
"-g",
"-f",
2022-02-16 06:39:37 +00:00
"best[height<=?720][width<=?1280]/best",
2022-01-31 12:42:18 +00:00
f"{link}",
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
)
stdout, stderr = await proc.communicate()
if stdout:
return 1, stdout.decode().split("\n")[0]
else:
return 0, stderr.decode()
2022-02-08 01:54:18 +00:00
def convert_seconds(seconds):
seconds = seconds % (24 * 3600)
seconds %= 3600
minutes = seconds // 60
seconds %= 60
return "%02d:%02d" % (minutes, seconds)
2022-02-16 13:19:44 +00:00
async def play_tg_file(c: Client, m: Message, replied: Message = None, link: str = None):
chat_id = m.chat.id
user_id = m.from_user.id
if link:
try:
replied = await from_tg_get_msg(link)
except Exception as e:
2022-03-02 02:41:54 +00:00
LOGS.info(f"[ERROR]: {e}")
2022-03-02 13:01:45 +00:00
return await m.reply_text(f"🚫 错误:\n\n» {e}")
2022-02-16 13:19:44 +00:00
if not replied:
return await m.reply(
"» reply to an **audio file** or **give something to search.**"
)
if replied.video or replied.document:
2022-02-16 13:49:50 +00:00
if not link:
loser = await replied.reply("📥 downloading video...")
else:
loser = await m.reply("📥 downloading video...")
2022-02-16 13:19:44 +00:00
dl = await replied.download()
link = replied.link
songname = "video"
duration = "00:00"
2022-02-16 13:49:50 +00:00
Q = 720
pq = m.text.split(None, 1)
if ("t.me" not in m.text) and len(pq) > 1:
pq = pq[1]
if pq == "720" or pq == "480" or pq == "360":
2022-02-16 13:19:44 +00:00
Q = int(pq)
else:
await loser.edit(
2022-02-21 01:35:41 +00:00
"Streaming the local video in 720p quality"
2022-02-16 13:19:44 +00:00
)
try:
if replied.video:
songname = replied.video.file_name[:80]
duration = convert_seconds(replied.video.duration)
elif replied.document:
songname = replied.document.file_name[:80]
except BaseException:
2022-02-21 01:35:41 +00:00
songname = "video"
2022-02-16 13:19:44 +00:00
if chat_id in QUEUE:
await loser.edit("🔄 Queueing Track...")
gcname = m.chat.title
ctitle = await CHAT_TITLE(gcname)
title = songname
userid = m.from_user.id
thumbnail = f"{IMG_5}"
image = await thumb(thumbnail, title, userid, ctitle)
2022-02-21 01:35:41 +00:00
pos = add_to_queue(chat_id, songname, dl, link, "video", Q)
2022-02-16 13:19:44 +00:00
await loser.delete()
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
buttons = stream_markup(user_id)
await m.reply_photo(
photo=image,
reply_markup=InlineKeyboardMarkup(buttons),
2022-03-02 13:01:45 +00:00
caption=f"💡 **已添加到队列 »** `{pos}`\n\n"
f"🗂 **名称:** [{songname}]({link}) | `视频`\n"
f"⏱️ **时长:** `{duration}`\n"
f"🧸 **添加者:** {requester}",
2022-02-16 13:19:44 +00:00
)
remove_if_exists(image)
else:
2022-02-24 03:10:41 +00:00
try:
2022-03-02 13:01:45 +00:00
await loser.edit("🔄 加入视频聊天中...")
2022-02-16 13:19:44 +00:00
gcname = m.chat.title
ctitle = await CHAT_TITLE(gcname)
title = songname
userid = m.from_user.id
thumbnail = f"{IMG_5}"
image = await thumb(thumbnail, title, userid, ctitle)
if Q == 720:
amaze = HighQualityVideo()
elif Q == 480:
amaze = MediumQualityVideo()
elif Q == 360:
amaze = LowQualityVideo()
await music_on(chat_id)
await add_active_chat(chat_id)
await calls.join_group_call(
chat_id,
AudioVideoPiped(
dl,
HighQualityAudio(),
amaze,
),
stream_type=StreamType().pulse_stream,
)
2022-02-21 01:35:41 +00:00
add_to_queue(chat_id, songname, dl, link, "video", Q)
2022-02-16 13:19:44 +00:00
await loser.delete()
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
buttons = stream_markup(user_id)
await m.reply_photo(
photo=image,
reply_markup=InlineKeyboardMarkup(buttons),
2022-03-02 13:01:45 +00:00
caption=f"🗂 **名称:** [{songname}]({link}) | `视频`\n"
f"⏱️ **时长:** `{duration}`\n"
f"🧸 **添加者:** {requester}",
2022-02-16 13:19:44 +00:00
)
remove_if_exists(image)
2022-02-24 03:10:41 +00:00
except (NoActiveGroupCall, GroupCallNotFound):
2022-02-24 12:27:42 +00:00
await loser.delete()
2022-02-24 03:10:41 +00:00
await remove_active_chat(chat_id)
2022-03-02 13:01:45 +00:00
await m.reply_text("❌ 请先使用命令 /startvc 来开启视频聊天!")
2022-03-02 02:41:54 +00:00
except BaseException as e:
LOGS.info(f"[ERROR]: {e}")
2022-02-16 13:19:44 +00:00
else:
await m.reply(
2022-03-02 13:01:45 +00:00
"» 回复一个 **视频** 或者 **给一个关键词来让我搜索"
2022-02-16 13:19:44 +00:00
)
2022-01-31 12:42:18 +00:00
@Client.on_message(command(["vplay", f"vplay@{BOT_USERNAME}"]) & other_filters)
@check_blacklist()
@require_admin(permissions=["can_manage_voice_chats", "can_delete_messages", "can_invite_users"], self=True)
2022-01-31 12:42:18 +00:00
async def vplay(c: Client, m: Message):
await m.delete()
replied = m.reply_to_message
chat_id = m.chat.id
user_id = m.from_user.id
if m.sender_chat:
return await m.reply_text(
2022-03-02 13:01:45 +00:00
"咱还不支持匿名用户!\n\n» 请先切换为正常用户,再使用此命令。",
2022-01-31 12:42:18 +00:00
)
try:
2022-02-15 04:44:58 +00:00
ubot = me_user.id
b = await c.get_chat_member(chat_id, ubot)
2022-02-24 03:10:41 +00:00
if b.status == "banned":
try:
await m.reply_text("❌ The userbot is banned in this chat, unban the userbot first to be able to play music !")
await remove_active_chat(chat_id)
except BaseException:
pass
2022-02-12 04:05:44 +00:00
invitelink = (await c.get_chat(chat_id)).invite_link
if not invitelink:
await c.export_chat_invite_link(chat_id)
invitelink = (await c.get_chat(chat_id)).invite_link
if invitelink.startswith("https://t.me/+"):
invitelink = invitelink.replace(
"https://t.me/+", "https://t.me/joinchat/"
)
2022-01-31 12:42:18 +00:00
await user.join_chat(invitelink)
2022-02-09 02:40:43 +00:00
await remove_active_chat(chat_id)
2022-01-31 12:42:18 +00:00
except UserNotParticipant:
try:
2022-02-12 04:05:44 +00:00
invitelink = (await c.get_chat(chat_id)).invite_link
if not invitelink:
await c.export_chat_invite_link(chat_id)
invitelink = (await c.get_chat(chat_id)).invite_link
2022-01-31 12:42:18 +00:00
if invitelink.startswith("https://t.me/+"):
invitelink = invitelink.replace(
"https://t.me/+", "https://t.me/joinchat/"
)
await user.join_chat(invitelink)
2022-02-09 02:40:43 +00:00
await remove_active_chat(chat_id)
2022-01-31 12:42:18 +00:00
except UserAlreadyParticipant:
pass
except Exception as e:
2022-03-02 02:41:54 +00:00
LOGS.info(f"[ERROR]: {e}")
2022-01-31 12:42:18 +00:00
return await m.reply_text(
f"❌ **userbot failed to join**\n\n**reason**: `{e}`"
)
if replied:
if replied.video or replied.document:
2022-02-16 13:19:44 +00:00
await play_tg_file(c, m, replied)
2022-01-31 12:42:18 +00:00
else:
if len(m.command) < 2:
await m.reply(
2022-03-02 13:01:45 +00:00
"» 回复一个 **视频** 或者 **给一个关键词来让我搜索"
2022-01-31 12:42:18 +00:00
)
else:
2022-03-02 13:01:45 +00:00
loser = await c.send_message(chat_id, "🔍 **搜索中...**")
2022-01-31 12:42:18 +00:00
query = m.text.split(None, 1)[1]
search = ytsearch(query)
Q = 720
amaze = HighQualityVideo()
if search == 0:
2022-03-02 13:01:45 +00:00
await loser.edit("❌ **没有找到任何结果**")
2022-01-31 12:42:18 +00:00
else:
songname = search[0]
title = search[0]
url = search[1]
duration = search[2]
thumbnail = search[3]
userid = m.from_user.id
gcname = m.chat.title
ctitle = await CHAT_TITLE(gcname)
image = await thumb(thumbnail, title, userid, ctitle)
veez, ytlink = await ytdl(url)
if veez == 0:
2022-03-02 13:01:45 +00:00
await loser.edit(f"❌ yt-dl 发生错误\n\n» `{ytlink}`")
2022-01-31 12:42:18 +00:00
else:
if chat_id in QUEUE:
2022-03-02 13:01:45 +00:00
await loser.edit("🔄 添加到队列中...")
2022-01-31 12:42:18 +00:00
pos = add_to_queue(
2022-02-21 01:35:41 +00:00
chat_id, songname, ytlink, url, "video", Q
2022-01-31 12:42:18 +00:00
)
await loser.delete()
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
buttons = stream_markup(user_id)
await m.reply_photo(
photo=image,
reply_markup=InlineKeyboardMarkup(buttons),
2022-03-02 13:01:45 +00:00
caption=f"💡 **已添加到队列 »** `{pos}`\n\n"
f"🗂 **名称:** [{songname}]({url}) | `视频`\n"
f"⏱ **时长:** `{duration}`\n🧸"
f" **添加者:** {requester}",
2022-01-31 12:42:18 +00:00
)
2022-02-13 06:43:13 +00:00
remove_if_exists(image)
2022-01-31 12:42:18 +00:00
else:
try:
2022-03-02 13:01:45 +00:00
await loser.edit("🔄 加入视频聊天...")
2022-02-09 02:40:43 +00:00
await music_on(chat_id)
await add_active_chat(chat_id)
2022-02-07 16:27:50 +00:00
await calls.join_group_call(
2022-01-31 12:42:18 +00:00
chat_id,
AudioVideoPiped(
ytlink,
HighQualityAudio(),
amaze,
),
stream_type=StreamType().local_stream,
)
2022-02-21 01:35:41 +00:00
add_to_queue(chat_id, songname, ytlink, url, "video", Q)
2022-01-31 12:42:18 +00:00
await loser.delete()
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
buttons = stream_markup(user_id)
await m.reply_photo(
photo=image,
reply_markup=InlineKeyboardMarkup(buttons),
2022-03-02 13:01:45 +00:00
caption=f"🗂 **名称:** [{songname}]({url}) | `视频`\n"
f"⏱ **时长:** `{duration}`\n"
f"🧸 **添加者:** {requester}",
2022-01-31 12:42:18 +00:00
)
2022-02-13 06:43:13 +00:00
remove_if_exists(image)
2022-02-24 03:10:41 +00:00
except (NoActiveGroupCall, GroupCallNotFound):
2022-01-31 12:42:18 +00:00
await loser.delete()
2022-02-09 02:40:43 +00:00
await remove_active_chat(chat_id)
2022-03-02 13:01:45 +00:00
await m.reply_text("❌ 请先使用命令 /startvc 来开启视频聊天!")
2022-02-24 03:10:41 +00:00
except NoVideoSourceFound:
2022-02-24 12:27:42 +00:00
await loser.delete()
2022-02-24 03:10:41 +00:00
await remove_active_chat(chat_id)
await m.reply_text("❌ The content you provide to play has no video source")
except NoAudioSourceFound:
2022-02-24 12:27:42 +00:00
await loser.delete()
2022-02-24 03:10:41 +00:00
await remove_active_chat(chat_id)
await m.reply_text("❌ The content you provide to play has no audio source")
2022-03-02 02:41:54 +00:00
except BaseException as e:
LOGS.info(f"[ERROR]: {e}")
2022-01-31 12:42:18 +00:00
else:
if len(m.command) < 2:
await m.reply(
2022-03-02 13:01:45 +00:00
"» 回复一个 **视频** 或者 **给一个关键词来让我搜索"
2022-01-31 12:42:18 +00:00
)
2022-02-16 13:19:44 +00:00
elif "t.me" in m.command[1]:
for i in m.command[1:]:
if "t.me" in i:
await play_tg_file(c, m, link=i)
continue
2022-01-31 12:42:18 +00:00
else:
2022-03-02 13:01:45 +00:00
loser = await c.send_message(chat_id, "🔍 **搜索中...**")
2022-01-31 12:42:18 +00:00
query = m.text.split(None, 1)[1]
search = ytsearch(query)
Q = 720
amaze = HighQualityVideo()
if search == 0:
2022-03-02 13:01:45 +00:00
await loser.edit("❌ **没有找到任何结果**")
2022-01-31 12:42:18 +00:00
else:
songname = search[0]
title = search[0]
url = search[1]
duration = search[2]
thumbnail = search[3]
userid = m.from_user.id
gcname = m.chat.title
ctitle = await CHAT_TITLE(gcname)
image = await thumb(thumbnail, title, userid, ctitle)
veez, ytlink = await ytdl(url)
if veez == 0:
2022-03-02 13:01:45 +00:00
await loser.edit(f"❌ yt-dl 发生错误\n\n» `{ytlink}`")
2022-01-31 12:42:18 +00:00
else:
if chat_id in QUEUE:
2022-03-02 13:01:45 +00:00
await loser.edit("🔄 加入队列中...")
2022-02-21 01:35:41 +00:00
pos = add_to_queue(chat_id, songname, ytlink, url, "video", Q)
2022-01-31 12:42:18 +00:00
await loser.delete()
requester = (
f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
)
buttons = stream_markup(user_id)
await m.reply_photo(
photo=image,
reply_markup=InlineKeyboardMarkup(buttons),
2022-03-02 13:01:45 +00:00
caption=f"💡 **已添加到队列 »** `{pos}`\n\n"
f"🗂 **名称:** [{songname}]({url}) | `视频`\n"
f"⏱ **时长:** `{duration}`\n🧸"
f" **添加者:** {requester}",
2022-01-31 12:42:18 +00:00
)
2022-02-13 06:43:13 +00:00
remove_if_exists(image)
2022-01-31 12:42:18 +00:00
else:
try:
2022-03-02 13:01:45 +00:00
await loser.edit("🔄 加入视频聊天中...")
2022-02-09 02:40:43 +00:00
await music_on(chat_id)
await add_active_chat(chat_id)
2022-02-07 16:27:50 +00:00
await calls.join_group_call(
2022-01-31 12:42:18 +00:00
chat_id,
AudioVideoPiped(
ytlink,
HighQualityAudio(),
amaze,
),
stream_type=StreamType().local_stream,
)
2022-02-21 01:35:41 +00:00
add_to_queue(chat_id, songname, ytlink, url, "video", Q)
2022-01-31 12:42:18 +00:00
await loser.delete()
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
buttons = stream_markup(user_id)
await m.reply_photo(
photo=image,
reply_markup=InlineKeyboardMarkup(buttons),
2022-03-02 13:01:45 +00:00
caption=f"🗂 **名称:** [{songname}]({url}) | `视频`\n"
f"⏱ **时长:** `{duration}`\n"
f"🧸 **添加者:** {requester}",
2022-01-31 12:42:18 +00:00
)
2022-02-13 06:43:13 +00:00
remove_if_exists(image)
2022-02-24 03:10:41 +00:00
except (NoActiveGroupCall, GroupCallNotFound):
2022-01-31 12:42:18 +00:00
await loser.delete()
2022-02-09 02:40:43 +00:00
await remove_active_chat(chat_id)
2022-03-02 13:01:45 +00:00
await m.reply_text("❌ 请先使用命令 /startvc 来开启视频聊天!")
2022-02-24 03:10:41 +00:00
except NoVideoSourceFound:
2022-02-24 12:27:42 +00:00
await loser.delete()
2022-02-24 03:10:41 +00:00
await remove_active_chat(chat_id)
await m.reply_text("❌ The content you provide to play has no video source")
except NoAudioSourceFound:
2022-02-24 12:27:42 +00:00
await loser.delete()
2022-02-24 03:10:41 +00:00
await remove_active_chat(chat_id)
await m.reply_text("❌ The content you provide to play has no audio source")
2022-03-02 02:41:54 +00:00
except BaseException as e:
LOGS.info(f"[ERROR]: {e}")
2022-01-31 12:42:18 +00:00
@Client.on_message(command(["vstream", f"vstream@{BOT_USERNAME}"]) & other_filters)
@check_blacklist()
@require_admin(permissions=["can_manage_voice_chats", "can_delete_messages", "can_invite_users"], self=True)
2022-01-31 12:42:18 +00:00
async def vstream(c: Client, m: Message):
await m.delete()
chat_id = m.chat.id
user_id = m.from_user.id
if m.sender_chat:
return await m.reply_text(
2022-03-02 13:01:45 +00:00
"咱还不支持匿名用户!\n\n» 请先切换为正常用户,再使用此命令。",
2022-01-31 12:42:18 +00:00
)
try:
2022-02-15 04:44:58 +00:00
ubot = me_user.id
2022-01-31 12:42:18 +00:00
b = await c.get_chat_member(chat_id, ubot)
2022-02-24 03:10:41 +00:00
if b.status == "banned":
2022-03-02 02:41:54 +00:00
try:
await m.reply_text("❌ The userbot is banned in this chat, unban the userbot first to be able to play music !")
await remove_active_chat(chat_id)
except BaseException:
pass
2022-02-12 04:05:44 +00:00
invitelink = (await c.get_chat(chat_id)).invite_link
2022-03-02 02:41:54 +00:00
if not invitelink:
await c.export_chat_invite_link(chat_id)
invitelink = (await c.get_chat(chat_id)).invite_link
if invitelink.startswith("https://t.me/+"):
invitelink = invitelink.replace(
"https://t.me/+", "https://t.me/joinchat/"
)
2022-01-31 12:42:18 +00:00
await user.join_chat(invitelink)
2022-02-09 02:40:43 +00:00
await remove_active_chat(chat_id)
2022-01-31 12:42:18 +00:00
except UserNotParticipant:
try:
2022-02-12 04:05:44 +00:00
invitelink = (await c.get_chat(chat_id)).invite_link
if not invitelink:
await c.export_chat_invite_link(chat_id)
invitelink = (await c.get_chat(chat_id)).invite_link
2022-01-31 12:42:18 +00:00
if invitelink.startswith("https://t.me/+"):
invitelink = invitelink.replace(
"https://t.me/+", "https://t.me/joinchat/"
)
await user.join_chat(invitelink)
2022-02-09 02:40:43 +00:00
await remove_active_chat(chat_id)
2022-01-31 12:42:18 +00:00
except UserAlreadyParticipant:
pass
except Exception as e:
2022-03-02 02:41:54 +00:00
LOGS.info(f"[ERROR]: {e}")
2022-01-31 12:42:18 +00:00
return await m.reply_text(
f"❌ **userbot failed to join**\n\n**reason**: `{e}`"
)
if len(m.command) < 2:
2022-02-20 23:30:34 +00:00
await m.reply("» Give me a youtube live url/m3u8 url to stream.")
2022-01-31 12:42:18 +00:00
else:
if len(m.command) == 2:
Q = 720
2022-02-20 23:30:34 +00:00
url = m.text.split(None, 1)[1]
search = ytsearch(url)
2022-03-02 13:01:45 +00:00
loser = await c.send_message(chat_id, "🔍 **搜索中...**")
2022-01-31 12:42:18 +00:00
elif len(m.command) == 3:
op = m.text.split(None, 1)[1]
2022-02-20 23:30:34 +00:00
url = op.split(None, 1)[0]
2022-01-31 12:42:18 +00:00
quality = op.split(None, 1)[1]
2022-02-20 23:30:34 +00:00
search = ytsearch(op)
2022-01-31 12:42:18 +00:00
if quality == "720" or "480" or "360":
Q = int(quality)
else:
Q = 720
await m.reply(
2022-02-21 01:35:41 +00:00
"» Streaming the live video in 720p quality"
2022-01-31 12:42:18 +00:00
)
2022-03-02 13:01:45 +00:00
loser = await c.send_message(chat_id, "🔍 **搜索中...**")
2022-01-31 12:42:18 +00:00
else:
2022-03-02 02:41:54 +00:00
pass
2022-01-31 12:42:18 +00:00
regex = r"^(https?\:\/\/)?(www\.youtube\.com|youtu\.?be)\/.+"
2022-02-20 23:30:34 +00:00
match = re.match(regex, url)
2022-01-31 12:42:18 +00:00
if match:
2022-02-20 23:30:34 +00:00
veez, livelink = await ytdl(url)
2022-01-31 12:42:18 +00:00
else:
2022-02-20 23:30:34 +00:00
livelink = url
2022-01-31 12:42:18 +00:00
veez = 1
if veez == 0:
2022-03-02 13:01:45 +00:00
await loser.edit(f"❌ yt-dl 发生错误\n\n» `{livelink}`")
2022-01-31 12:42:18 +00:00
else:
2022-02-20 23:30:34 +00:00
songname = search[0]
2022-01-31 12:42:18 +00:00
if chat_id in QUEUE:
2022-03-02 13:01:45 +00:00
await loser.edit("🔄 添加到队列中...")
2022-02-21 02:05:11 +00:00
pos = add_to_queue(chat_id, songname, livelink, url, "video", Q)
2022-01-31 12:42:18 +00:00
await loser.delete()
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
buttons = stream_markup(user_id)
await m.reply_photo(
2022-02-21 02:01:52 +00:00
photo=f"{IMG_1}",
2022-01-31 12:42:18 +00:00
reply_markup=InlineKeyboardMarkup(buttons),
2022-03-02 13:01:45 +00:00
caption=f"💡 **已添加到队列 »** `{pos}`\n\n"
f"🗂 **名称:** [{songname}]({url}) | `直播`\n"
f"🧸 **添加者:** {requester}",
2022-01-31 12:42:18 +00:00
)
else:
if Q == 720:
amaze = HighQualityVideo()
elif Q == 480:
amaze = MediumQualityVideo()
elif Q == 360:
amaze = LowQualityVideo()
try:
2022-03-02 13:01:45 +00:00
await loser.edit("🔄 加入视频聊天中...")
2022-02-09 02:40:43 +00:00
await music_on(chat_id)
await add_active_chat(chat_id)
2022-02-07 16:27:50 +00:00
await calls.join_group_call(
2022-01-31 12:42:18 +00:00
chat_id,
AudioVideoPiped(
livelink,
HighQualityAudio(),
amaze,
),
stream_type=StreamType().live_stream,
)
2022-02-21 02:05:11 +00:00
add_to_queue(chat_id, songname, livelink, url, "video", Q)
2022-01-31 12:42:18 +00:00
await loser.delete()
requester = (
f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
)
buttons = stream_markup(user_id)
await m.reply_photo(
2022-02-21 02:01:52 +00:00
photo=f"{IMG_2}",
2022-01-31 12:42:18 +00:00
reply_markup=InlineKeyboardMarkup(buttons),
2022-03-02 13:01:45 +00:00
caption=f"🗂 **名称:** [{songname}]({url}) | `直播`\n"
f"🧸 **添加者:** {requester}",
2022-01-31 12:42:18 +00:00
)
2022-02-24 03:10:41 +00:00
except (NoActiveGroupCall, GroupCallNotFound):
await loser.delete()
await remove_active_chat(chat_id)
2022-03-02 13:01:45 +00:00
await m.reply_text("❌ 请先使用命令 /startvc 来开启视频聊天!")
2022-03-02 02:41:54 +00:00
except BaseException as e:
LOGS.info(f"[ERROR]: {e}")