video-stream/program/video.py

424 lines
18 KiB
Python
Raw Normal View History

2021-10-28 15:49:13 +00:00
# Copyright (C) 2021 By Veez Music-Project
# Commit Start Date 20/10/2021
# Finished On 28/10/2021
import asyncio
2021-11-03 00:01:25 +00:00
import re
2021-10-29 19:01:26 +00:00
2021-11-03 00:01:25 +00:00
from config import ASSISTANT_NAME, BOT_USERNAME, IMG_1, IMG_2
from driver.filters import command, other_filters
2021-11-03 00:01:25 +00:00
from driver.queues import QUEUE, add_to_queue
from driver.veez import call_py, user
from pyrogram import Client
from pyrogram.errors import UserAlreadyParticipant, UserNotParticipant
2021-11-03 00:01:25 +00:00
from pyrogram.types import InlineKeyboardButton, InlineKeyboardMarkup, Message
2021-10-29 19:01:26 +00:00
from pytgcalls import StreamType
2021-10-26 05:58:34 +00:00
from pytgcalls.types.input_stream import AudioVideoPiped
2021-10-29 19:01:26 +00:00
from pytgcalls.types.input_stream.quality import (
HighQualityAudio,
HighQualityVideo,
LowQualityVideo,
MediumQualityVideo,
)
from youtubesearchpython import VideosSearch
2021-10-26 05:58:34 +00:00
def ytsearch(query):
2021-10-29 19:01:26 +00:00
try:
search = VideosSearch(query, limit=1)
for r in search.result()["result"]:
ytid = r["id"]
if len(r["title"]) > 34:
2021-10-30 22:49:56 +00:00
songname = r["title"][:70]
2021-10-29 19:01:26 +00:00
else:
songname = r["title"]
url = f"https://www.youtube.com/watch?v={ytid}"
return [songname, url]
except Exception as e:
print(e)
return 0
2021-10-26 05:58:34 +00:00
async def ytdl(link):
2021-10-29 19:01:26 +00:00
proc = await asyncio.create_subprocess_exec(
"yt-dlp",
"-g",
"-f",
"best[height<=?720][width<=?1280]",
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()
2021-10-26 05:58:34 +00:00
@Client.on_message(command(["vplay", f"vplay@{BOT_USERNAME}"]) & other_filters)
2021-11-03 00:01:25 +00:00
async def vplay(c: Client, m: Message):
replied = m.reply_to_message
chat_id = m.chat.id
2021-10-29 19:01:26 +00:00
keyboard = InlineKeyboardMarkup(
[
2021-10-27 08:53:08 +00:00
[
2021-11-03 00:01:25 +00:00
InlineKeyboardButton(text="• Mᴇɴ", callback_data="cbmenu"),
InlineKeyboardButton(text="• Cʟsᴇ", callback_data="cls"),
2021-10-27 08:53:08 +00:00
]
2021-10-29 19:01:26 +00:00
]
)
2021-11-02 22:35:42 +00:00
try:
2021-11-03 00:01:25 +00:00
aing = await c.get_me()
2021-11-02 22:35:42 +00:00
except Exception as e:
return await m.reply_text(f"error:\n\n{e}")
2021-11-03 00:01:25 +00:00
a = await c.get_chat_member(chat_id, aing.id)
2021-11-02 17:03:24 +00:00
if a.status != "administrator":
2021-11-03 00:01:25 +00:00
await m.reply_text(
2021-11-03 13:18:36 +00:00
f"💡 To use me, I need to be an **Administrator** with the following **permissions**:\n\n» ❌ __Delete messages__\n» ❌ __Restrict users__\n» ❌ __Add users__\n» ❌ __Manage video chat__\n\nData is **updated** automatically after you **promote me**"
2021-11-03 00:01:25 +00:00
)
2021-11-02 17:03:24 +00:00
return
if not a.can_manage_voice_chats:
await m.reply_text(
2021-11-03 13:18:36 +00:00
"missing required permission:" + "\n\n» ❌ __Manage video chat__"
2021-11-03 00:01:25 +00:00
)
2021-11-02 17:03:24 +00:00
return
if not a.can_delete_messages:
await m.reply_text(
2021-11-03 00:01:25 +00:00
"missing required permission:" + "\n\n» ❌ __Delete messages__"
)
2021-11-02 17:03:24 +00:00
return
if not a.can_invite_users:
2021-11-03 00:01:25 +00:00
await m.reply_text("missing required permission:" + "\n\n» ❌ __Add users__")
2021-11-02 17:03:24 +00:00
return
if not a.can_restrict_members:
2021-11-03 13:18:36 +00:00
await m.reply_text("missing required permission:" + "\n\n» ❌ __Restrict users__")
2021-11-02 17:03:24 +00:00
return
try:
2021-11-03 00:01:25 +00:00
ubot = await user.get_me()
b = await c.get_chat_member(chat_id, ubot.id)
2021-11-02 17:03:24 +00:00
if b.status == "kicked":
2021-11-03 00:01:25 +00:00
await m.reply_text(
f"@{ASSISTANT_NAME} **is banned in group** {m.chat.title}\n\n» **unban the userbot first if you want to use this bot.**"
)
2021-11-02 16:59:36 +00:00
return
2021-11-02 17:03:24 +00:00
except UserNotParticipant:
if m.chat.username:
try:
2021-11-03 00:01:25 +00:00
await user.join_chat(m.chat.username)
2021-11-02 17:03:24 +00:00
except Exception as e:
await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
2021-11-02 07:56:48 +00:00
return
2021-11-03 00:01:25 +00:00
else:
try:
pope = await c.export_chat_invite_link(chat_id)
pepo = await c.revoke_chat_invite_link(chat_id, pope)
await user.join_chat(pepo.invite_link)
except UserAlreadyParticipant:
pass
except Exception as e:
return await m.reply_text(
f"❌ **userbot failed to join**\n\n**reason**:{e}"
)
2021-10-29 19:01:26 +00:00
if replied:
if replied.video or replied.document:
loser = await replied.reply("📥 **downloading video...**")
dl = await replied.download()
link = replied.link
if len(m.command) < 2:
Q = 720
2021-10-26 05:58:34 +00:00
else:
2021-10-29 19:01:26 +00:00
pq = m.text.split(None, 1)[1]
if pq == "720" or "480" or "360":
Q = int(pq)
else:
Q = 720
await loser.edit(
"» __only 720, 480, 360 allowed__ \n💡 **now streaming video in 720p**"
)
2021-11-01 03:15:46 +00:00
try:
if replied.video:
songname = replied.video.file_name[:70]
elif replied.document:
songname = replied.document.file_name[:70]
2021-11-01 04:21:29 +00:00
except BaseException:
2021-11-01 03:15:46 +00:00
songname = "Video"
2021-11-03 00:01:25 +00:00
2021-10-29 19:01:26 +00:00
if chat_id in QUEUE:
pos = add_to_queue(chat_id, songname, dl, link, "Video", Q)
await loser.delete()
2021-11-02 08:17:22 +00:00
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
2021-10-29 19:01:26 +00:00
await m.reply_photo(
photo=f"{IMG_1}",
2021-11-02 08:17:22 +00:00
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({link})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {requester}\n🔢 **At position »** `{pos}`",
2021-10-29 19:01:26 +00:00
reply_markup=keyboard,
)
2021-10-26 05:58:34 +00:00
else:
2021-10-29 19:01:26 +00:00
if Q == 720:
amaze = HighQualityVideo()
elif Q == 480:
amaze = MediumQualityVideo()
elif Q == 360:
amaze = LowQualityVideo()
await call_py.join_group_call(
chat_id,
2021-11-01 14:04:49 +00:00
AudioVideoPiped(
2021-11-03 00:01:25 +00:00
dl,
HighQualityAudio(),
2021-11-01 14:04:49 +00:00
amaze,
),
2021-10-29 19:01:26 +00:00
stream_type=StreamType().pulse_stream,
)
add_to_queue(chat_id, songname, dl, link, "Video", Q)
await loser.delete()
2021-11-02 08:17:22 +00:00
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
2021-10-29 19:01:26 +00:00
await m.reply_photo(
photo=f"{IMG_2}",
2021-11-02 08:17:22 +00:00
caption=f"💡 **video streaming started.**\n\n🏷 **Name:** [{songname}]({link})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {requester}",
2021-10-29 19:01:26 +00:00
reply_markup=keyboard,
)
else:
if len(m.command) < 2:
await m.reply(
"» reply to an **video file** or **give something to search.**"
)
else:
loser = await m.reply("🔎 **searching...**")
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]
url = search[1]
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:
pos = add_to_queue(
chat_id, songname, ytlink, url, "Video", Q
)
await loser.delete()
2021-11-02 08:17:22 +00:00
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
2021-10-29 19:01:26 +00:00
await m.reply_photo(
photo=f"{IMG_1}",
2021-11-02 08:17:22 +00:00
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {requester}\n🔢 **At position »** `{pos}`",
2021-10-29 19:01:26 +00:00
reply_markup=keyboard,
)
else:
try:
await call_py.join_group_call(
chat_id,
2021-11-01 14:04:49 +00:00
AudioVideoPiped(
2021-11-03 00:01:25 +00:00
ytlink,
HighQualityAudio(),
2021-11-01 14:04:49 +00:00
amaze,
),
2021-10-29 19:01:26 +00:00
stream_type=StreamType().pulse_stream,
)
add_to_queue(chat_id, songname, ytlink, url, "Video", Q)
await loser.delete()
2021-11-02 08:17:22 +00:00
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
2021-10-29 19:01:26 +00:00
await m.reply_photo(
photo=f"{IMG_2}",
2021-11-02 08:17:22 +00:00
caption=f"💡 **video streaming started.**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {requester}",
2021-10-29 19:01:26 +00:00
reply_markup=keyboard,
)
except Exception as ep:
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.**"
)
else:
2021-10-26 05:58:34 +00:00
loser = await m.reply("🔎 **searching...**")
query = m.text.split(None, 1)[1]
search = ytsearch(query)
Q = 720
amaze = HighQualityVideo()
2021-10-29 19:01:26 +00:00
if search == 0:
await loser.edit("❌ **no results found.**")
2021-10-26 05:58:34 +00:00
else:
2021-10-29 19:01:26 +00:00
songname = search[0]
url = search[1]
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:
pos = add_to_queue(chat_id, songname, ytlink, url, "Video", Q)
2021-10-27 08:53:08 +00:00
await loser.delete()
2021-11-03 00:01:25 +00:00
requester = (
f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
)
2021-10-27 08:53:08 +00:00
await m.reply_photo(
2021-10-29 19:01:26 +00:00
photo=f"{IMG_1}",
2021-11-02 08:17:22 +00:00
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {requester}\n🔢 **At position »** `{pos}`",
2021-10-29 19:01:26 +00:00
reply_markup=keyboard,
2021-10-27 08:53:08 +00:00
)
2021-10-29 19:01:26 +00:00
else:
try:
await call_py.join_group_call(
chat_id,
2021-11-01 14:04:49 +00:00
AudioVideoPiped(
2021-11-03 00:01:25 +00:00
ytlink,
HighQualityAudio(),
2021-11-01 14:09:30 +00:00
amaze,
2021-11-01 14:04:49 +00:00
),
2021-10-29 19:01:26 +00:00
stream_type=StreamType().pulse_stream,
)
add_to_queue(chat_id, songname, ytlink, url, "Video", Q)
await loser.delete()
2021-11-02 08:17:22 +00:00
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
2021-10-29 19:01:26 +00:00
await m.reply_photo(
photo=f"{IMG_2}",
2021-11-02 08:17:22 +00:00
caption=f"💡 **video streaming started.**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {requester}",
2021-10-29 19:01:26 +00:00
reply_markup=keyboard,
)
except Exception as ep:
await m.reply_text(f"🚫 error: `{ep}`")
2021-10-26 05:58:34 +00:00
@Client.on_message(command(["vstream", f"vstream@{BOT_USERNAME}"]) & other_filters)
2021-11-03 00:01:25 +00:00
async def vstream(c: Client, m: Message):
m.reply_to_message
chat_id = m.chat.id
2021-10-29 19:01:26 +00:00
keyboard = InlineKeyboardMarkup(
[
2021-10-27 08:53:08 +00:00
[
2021-11-03 00:01:25 +00:00
InlineKeyboardButton(text="• Mᴇɴ", callback_data="cbmenu"),
InlineKeyboardButton(text="• Cʟsᴇ", callback_data="cls"),
2021-10-27 08:53:08 +00:00
]
2021-10-29 19:01:26 +00:00
]
)
2021-11-02 15:12:22 +00:00
try:
2021-11-03 00:01:25 +00:00
aing = await c.get_me()
2021-11-02 17:03:24 +00:00
except Exception as e:
return await m.reply_text(f"error:\n\n{e}")
2021-11-03 00:01:25 +00:00
a = await c.get_chat_member(chat_id, aing.id)
2021-11-02 17:03:24 +00:00
if a.status != "administrator":
2021-11-03 00:01:25 +00:00
await m.reply_text(
2021-11-03 13:18:36 +00:00
f"💡 To use me, I need to be an **Administrator** with the following **permissions**:\n\n» ❌ __Delete messages__\n» ❌ __Restrict users__\n» ❌ __Add users__\n» ❌ __Manage video chat__\n\nData is **updated** automatically after you **promote me**"
2021-11-03 00:01:25 +00:00
)
2021-11-02 17:03:24 +00:00
return
if not a.can_manage_voice_chats:
await m.reply_text(
2021-11-03 13:18:36 +00:00
"missing required permission:" + "\n\n» ❌ __Manage video chat__"
2021-11-03 00:01:25 +00:00
)
2021-11-02 17:03:24 +00:00
return
if not a.can_delete_messages:
await m.reply_text(
2021-11-03 00:01:25 +00:00
"missing required permission:" + "\n\n» ❌ __Delete messages__"
)
2021-11-02 17:03:24 +00:00
return
if not a.can_invite_users:
2021-11-03 00:01:25 +00:00
await m.reply_text("missing required permission:" + "\n\n» ❌ __Add users__")
2021-11-02 17:03:24 +00:00
return
if not a.can_restrict_members:
2021-11-03 13:18:36 +00:00
await m.reply_text("missing required permission:" + "\n\n» ❌ __Restrict users__")
2021-11-02 17:03:24 +00:00
return
try:
2021-11-03 00:01:25 +00:00
ubot = await user.get_me()
b = await c.get_chat_member(chat_id, ubot.id)
2021-11-02 17:03:24 +00:00
if b.status == "kicked":
2021-11-03 00:01:25 +00:00
await m.reply_text(
f"@{ASSISTANT_NAME} **is banned in group** {m.chat.title}\n\n» **unban the userbot first if you want to use this bot.**"
)
2021-11-02 16:59:36 +00:00
return
2021-11-02 17:03:24 +00:00
except UserNotParticipant:
if m.chat.username:
try:
2021-11-03 00:01:25 +00:00
await user.join_chat(m.chat.username)
2021-11-02 17:03:24 +00:00
except Exception as e:
await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
2021-11-02 07:59:51 +00:00
return
2021-11-03 00:01:25 +00:00
else:
try:
pope = await c.export_chat_invite_link(chat_id)
pepo = await c.revoke_chat_invite_link(chat_id, pope)
await user.join_chat(pepo.invite_link)
except UserAlreadyParticipant:
pass
except Exception as e:
return await m.reply_text(
f"❌ **userbot failed to join**\n\n**reason**:{e}"
)
2021-10-29 19:01:26 +00:00
if len(m.command) < 2:
await m.reply("» give me a live-link/m3u8 url/youtube link to stream.")
else:
if len(m.command) == 2:
link = m.text.split(None, 1)[1]
2021-10-26 05:58:34 +00:00
Q = 720
2021-10-29 19:01:26 +00:00
loser = await m.reply("🔄 **processing stream...**")
elif len(m.command) == 3:
op = m.text.split(None, 1)[1]
link = op.split(None, 1)[0]
quality = op.split(None, 1)[1]
if quality == "720" or "480" or "360":
Q = int(quality)
else:
Q = 720
await m.reply(
"» __only 720, 480, 360 allowed__ \n💡 **now streaming video in 720p**"
)
loser = await m.reply("🔄 **processing stream...**")
else:
await m.reply("**/vstream {link} {720/480/360}**")
2021-10-26 05:58:34 +00:00
2021-10-29 19:01:26 +00:00
regex = r"^(https?\:\/\/)?(www\.youtube\.com|youtu\.?be)\/.+"
match = re.match(regex, link)
if match:
veez, livelink = await ytdl(link)
else:
livelink = link
veez = 1
2021-10-26 05:58:34 +00:00
2021-10-29 19:01:26 +00:00
if veez == 0:
await loser.edit(f"❌ yt-dl issues detected\n\n» `{ytlink}`")
else:
if chat_id in QUEUE:
pos = add_to_queue(chat_id, "Live Stream", livelink, link, "Video", Q)
await loser.delete()
2021-11-02 08:17:22 +00:00
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
2021-10-29 19:01:26 +00:00
await m.reply_photo(
photo=f"{IMG_1}",
2021-11-02 08:17:22 +00:00
caption=f"💡 **Track added to the queue**\n\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {requester}\n🔢 **At position »** `{pos}`",
2021-10-29 19:01:26 +00:00
reply_markup=keyboard,
)
else:
if Q == 720:
amaze = HighQualityVideo()
elif Q == 480:
amaze = MediumQualityVideo()
elif Q == 360:
amaze = LowQualityVideo()
try:
await call_py.join_group_call(
chat_id,
2021-11-01 14:04:49 +00:00
AudioVideoPiped(
2021-11-03 00:01:25 +00:00
livelink,
HighQualityAudio(),
2021-11-01 14:09:30 +00:00
amaze,
2021-11-01 14:04:49 +00:00
),
2021-10-29 19:01:26 +00:00
stream_type=StreamType().pulse_stream,
)
add_to_queue(chat_id, "Live Stream", livelink, link, "Video", Q)
await loser.delete()
2021-11-03 00:01:25 +00:00
requester = (
f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
)
2021-10-29 19:01:26 +00:00
await m.reply_photo(
photo=f"{IMG_2}",
2021-11-02 08:17:22 +00:00
caption=f"💡 **[Live stream video]({link}) started.**\n\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {requester}",
2021-10-29 19:01:26 +00:00
reply_markup=keyboard,
)
except Exception as ep:
await m.reply_text(f"🚫 error: `{ep}`")