# Copyright (C) 2021 By Veez Music-Project # Commit Start Date 20/10/2021 # Finished On 28/10/2021 import re import asyncio import traceback # repository stuff from config import BOT_USERNAME, IMG_1, IMG_2, IMG_5 from driver.decorators import require_admin, check_blacklist from program.utils.inline import stream_markup 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 from driver.core import calls, user, me_user from driver.database.dbqueue import add_active_chat, remove_active_chat, music_on from driver.utils import remove_if_exists, from_tg_get_msg # pyrogram stuff from pyrogram import Client from pyrogram.errors import UserAlreadyParticipant, UserNotParticipant from pyrogram.types import InlineKeyboardMarkup, Message # py-tgcalls stuff from pytgcalls import idle from pytgcalls import StreamType from pytgcalls.types.input_stream import AudioVideoPiped from pytgcalls.types.input_stream.quality import ( HighQualityAudio, HighQualityVideo, LowQualityVideo, MediumQualityVideo, ) # youtube-dl stuff 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"] thumbnail = data["thumbnails"][0]["url"] return [songname, url, duration, thumbnail] except Exception as e: print(e) return 0 async def ytdl(link): proc = await asyncio.create_subprocess_exec( "yt-dlp", "--geo-bypass", "-g", "-f", "best[height<=?720][width<=?1280]/best", 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() def convert_seconds(seconds): seconds = seconds % (24 * 3600) seconds %= 3600 minutes = seconds // 60 seconds %= 60 return "%02d:%02d" % (minutes, seconds) 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: traceback.print_exc() return await m.reply_text(f"๐Ÿšซ error:\n\nยป {e}") if not replied: return await m.reply( "ยป reply to an **audio file** or **give something to search.**" ) if replied.video or replied.document: if not link: loser = await replied.reply("๐Ÿ“ฅ downloading video...") else: loser = await m.reply("๐Ÿ“ฅ downloading video...") dl = await replied.download() link = replied.link songname = "video" duration = "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": Q = int(pq) else: await loser.edit( "Streaming the local video in 720p quality" ) 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: songname = "video" 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) pos = add_to_queue(chat_id, songname, dl, link, "video", Q) 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), caption=f"๐Ÿ’ก **Track added to queue ยป** `{pos}`\n\n" f"๐Ÿ—‚ **Name:** [{songname}]({link}) | `video`\n" f"โฑ๏ธ **Duration:** `{duration}`\n" f"๐Ÿงธ **Request by:** {requester}", ) remove_if_exists(image) else: await loser.edit("๐Ÿ”„ Joining Group Call...") 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, ) add_to_queue(chat_id, songname, dl, link, "video", Q) 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), caption=f"๐Ÿ—‚ **Name:** [{songname}]({link}) | `video`\n" f"โฑ๏ธ **Duration:** `{duration}`\n" f"๐Ÿงธ **Request by:** {requester}", ) await idle() remove_if_exists(image) else: await m.reply( "ยป reply to an **video file** or **give something to search.**" ) @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) 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( "you're an __Anonymous__ user !\n\nยป revert back to your real user account to use this bot." ) try: ubot = me_user.id b = await c.get_chat_member(chat_id, ubot) if b.status == "kicked": await c.unban_chat_member(chat_id, ubot) 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/" ) await user.join_chat(invitelink) await remove_active_chat(chat_id) except UserNotParticipant: try: 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/" ) await user.join_chat(invitelink) await remove_active_chat(chat_id) except UserAlreadyParticipant: pass except Exception as e: traceback.print_exc() return await m.reply_text( f"โŒ **userbot failed to join**\n\n**reason**: `{e}`" ) if replied: if replied.video or replied.document: await play_tg_file(c, m, replied) else: if len(m.command) < 2: await m.reply( "ยป reply to an **video file** or **give something to search.**" ) else: loser = await c.send_message(chat_id, "๐Ÿ” **Loading...**") query = m.text.split(None, 1)[1] search = ytsearch(query) Q = 720 amaze = HighQualityVideo() if search == 0: await loser.edit("โŒ **no results found.**") 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: await loser.edit(f"โŒ yt-dl issues detected\n\nยป `{ytlink}`") else: if chat_id in QUEUE: await loser.edit("๐Ÿ”„ Queueing Track...") pos = add_to_queue( chat_id, songname, ytlink, url, "video", Q ) 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), caption=f"๐Ÿ’ก **Track added to queue ยป** `{pos}`\n\n๐Ÿ—‚ **Name:** [{songname}]({url}) | `video`\nโฑ **Duration:** `{duration}`\n๐Ÿงธ **Request by:** {requester}", ) remove_if_exists(image) else: try: await loser.edit("๐Ÿ”„ Joining Group Call...") await music_on(chat_id) await add_active_chat(chat_id) await calls.join_group_call( chat_id, AudioVideoPiped( ytlink, HighQualityAudio(), amaze, ), stream_type=StreamType().local_stream, ) add_to_queue(chat_id, songname, ytlink, url, "video", Q) 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), caption=f"๐Ÿ—‚ **Name:** [{songname}]({url}) | `video`\nโฑ **Duration:** `{duration}`\n๐Ÿงธ **Request by:** {requester}", ) await idle() remove_if_exists(image) except Exception as ep: await loser.delete() await remove_active_chat(chat_id) await m.reply_text(f"๐Ÿšซ error: `{ep}`") else: if len(m.command) < 2: await m.reply( "ยป reply to an **video file** or **give something to search.**" ) 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 else: loser = await c.send_message(chat_id, "๐Ÿ” **Loading...**") query = m.text.split(None, 1)[1] search = ytsearch(query) Q = 720 amaze = HighQualityVideo() if search == 0: await loser.edit("โŒ **no results found.**") 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: await loser.edit(f"โŒ yt-dl issues detected\n\nยป `{ytlink}`") else: if chat_id in QUEUE: await loser.edit("๐Ÿ”„ Queueing Track...") pos = add_to_queue(chat_id, songname, ytlink, url, "video", Q) 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), caption=f"๐Ÿ’ก **Track added to queue ยป** `{pos}`\n\n๐Ÿ—‚ **Name:** [{songname}]({url}) | `video`\nโฑ **Duration:** `{duration}`\n๐Ÿงธ **Request by:** {requester}", ) remove_if_exists(image) else: try: await loser.edit("๐Ÿ”„ Joining Group Call...") await music_on(chat_id) await add_active_chat(chat_id) await calls.join_group_call( chat_id, AudioVideoPiped( ytlink, HighQualityAudio(), amaze, ), stream_type=StreamType().local_stream, ) add_to_queue(chat_id, songname, ytlink, url, "video", Q) 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), caption=f"๐Ÿ—‚ **Name:** [{songname}]({url}) | `video`\nโฑ **Duration:** `{duration}`\n๐Ÿงธ **Request by:** {requester}", ) await idle() remove_if_exists(image) except Exception as ep: await loser.delete() await remove_active_chat(chat_id) await m.reply_text(f"๐Ÿšซ error: `{ep}`") @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) 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( "you're an __Anonymous__ user !\n\nยป revert back to your real user account to use this bot." ) try: ubot = me_user.id b = await c.get_chat_member(chat_id, ubot) if b.status == "kicked": await c.unban_chat_member(chat_id, ubot) 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/" ) await user.join_chat(invitelink) await remove_active_chat(chat_id) except UserNotParticipant: try: 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/" ) await user.join_chat(invitelink) await remove_active_chat(chat_id) except UserAlreadyParticipant: pass except Exception as e: traceback.print_exc() return await m.reply_text( f"โŒ **userbot failed to join**\n\n**reason**: `{e}`" ) if len(m.command) < 2: await m.reply("ยป Give me a youtube live url/m3u8 url to stream.") else: if len(m.command) == 2: Q = 720 url = m.text.split(None, 1)[1] search = ytsearch(url) loser = await c.send_message(chat_id, "๐Ÿ” **Loading...**") elif len(m.command) == 3: op = m.text.split(None, 1)[1] url = op.split(None, 1)[0] quality = op.split(None, 1)[1] search = ytsearch(op) if quality == "720" or "480" or "360": Q = int(quality) else: Q = 720 await m.reply( "ยป Streaming the live video in 720p quality" ) loser = await c.send_message(chat_id, "๐Ÿ” **Loading...**") else: await m.reply(f"`/vstream` {url} (720/480/360)") regex = r"^(https?\:\/\/)?(www\.youtube\.com|youtu\.?be)\/.+" match = re.match(regex, url) if match: veez, livelink = await ytdl(url) else: livelink = url veez = 1 if veez == 0: await loser.edit(f"โŒ yt-dl issues detected\n\nยป `{livelink}`") else: songname = search[0] thumbnail = search[3] image = thumbnail if chat_id in QUEUE: await loser.edit("๐Ÿ”„ Queueing Track...") pos = add_to_queue(chat_id, "live stream", livelink, url, "video", Q) 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), caption=f"๐Ÿ’ก **Track added to queue ยป** `{pos}`\n\n๐Ÿ—‚ **Name:** [{songname}]({url}) | `live`\n๐Ÿงธ **Requested by:** {requester}", ) remove_if_exists(image) else: if Q == 720: amaze = HighQualityVideo() elif Q == 480: amaze = MediumQualityVideo() elif Q == 360: amaze = LowQualityVideo() try: await loser.edit("๐Ÿ”„ Joining Group Call...") await music_on(chat_id) await add_active_chat(chat_id) await calls.join_group_call( chat_id, AudioVideoPiped( livelink, HighQualityAudio(), amaze, ), stream_type=StreamType().live_stream, ) add_to_queue(chat_id, "live stream", livelink, url, "video", Q) 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), caption=f"๐Ÿ—‚ **Name:** [{songname}]({url}) | `live`\n๐Ÿงธ **Requested by:** {requester}", ) await idle() remove_if_exists(image) except Exception as ep: await loser.delete() await remove_active_chat(chat_id) await m.reply_text(f"๐Ÿšซ error: `{ep}`")