video-stream/program/music_stream.py

384 lines
17 KiB
Python
Raw Normal View History

2022-02-22 23:32:42 +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-13 06:27:09 +00:00
import traceback
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:32:42 +00:00
2022-02-07 05:05:41 +00:00
from pytgcalls import idle
2022-01-31 12:42:18 +00:00
from pytgcalls import StreamType
from pytgcalls.types.input_stream import AudioPiped
from pytgcalls.types.input_stream.quality import HighQualityAudio
2022-02-24 02:32:23 +00:00
from pytgcalls.exceptions import NoAudioSourceFound, NoActiveGroupCall, GroupCallNotFound
2022-02-22 23:32:42 +00:00
from driver.decorators import require_admin, check_blacklist
2022-01-31 12:42:18 +00:00
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
2022-02-16 13:19:44 +00:00
from driver.core import calls, user, me_user
from driver.utils import bash, remove_if_exists, from_tg_get_msg
2022-02-09 15:35:35 +00:00
from driver.database.dbqueue import add_active_chat, remove_active_chat, music_on
2022-02-03 00:45:24 +00:00
from config import BOT_USERNAME, IMG_5
2022-02-22 23:32:42 +00:00
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:44:47 +00:00
thumbnail = data["thumbnails"][0]["url"]
2022-01-31 12:42:18 +00:00
return [songname, url, duration, thumbnail]
except Exception as e:
print(e)
return 0
async def ytdl(link: str):
stdout, stderr = await bash(
2022-02-21 06:01:59 +00:00
f'yt-dlp --geo-bypass -g -f "best[height<=?720][width<=?1280]/best" {link}'
2022-01-31 12:42:18 +00:00
)
if stdout:
return 1, stdout
return 0, stderr
2022-02-08 01:44:47 +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:
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.audio or replied.voice:
2022-02-16 13:49:50 +00:00
if not link:
suhu = await replied.reply("📥 downloading audio...")
else:
suhu = await m.reply("📥 downloading audio...")
2022-02-16 13:19:44 +00:00
dl = await replied.download()
link = replied.link
2022-02-21 01:27:30 +00:00
songname = "music"
2022-02-16 13:19:44 +00:00
thumbnail = f"{IMG_5}"
duration = "00:00"
try:
if replied.audio:
if replied.audio.title:
songname = replied.audio.title[:80]
else:
songname = replied.audio.file_name[:80]
if replied.audio.thumbs:
2022-02-16 13:49:50 +00:00
if not link:
thumbnail = await c.download_media(replied.audio.thumbs[0].file_id)
else:
thumbnail = await user.download_media(replied.audio.thumbs[0].file_id)
2022-02-16 13:19:44 +00:00
duration = convert_seconds(replied.audio.duration)
elif replied.voice:
2022-02-21 01:27:30 +00:00
songname = "voice note"
2022-02-16 13:19:44 +00:00
duration = convert_seconds(replied.voice.duration)
except BaseException:
pass
2022-02-20 22:54:42 +00:00
2022-02-16 19:28:53 +00:00
if not thumbnail:
thumbnail = f"{IMG_5}"
2022-02-16 13:19:44 +00:00
if chat_id in QUEUE:
await suhu.edit("🔄 Queueing Track...")
gcname = m.chat.title
ctitle = await CHAT_TITLE(gcname)
title = songname
userid = m.from_user.id
image = await thumb(thumbnail, title, userid, ctitle)
2022-02-21 01:27:30 +00:00
pos = add_to_queue(chat_id, songname, dl, link, "music", 0)
2022-02-16 13:19:44 +00:00
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
buttons = stream_markup(user_id)
await suhu.delete()
await m.reply_photo(
photo=image,
reply_markup=InlineKeyboardMarkup(buttons),
caption=f"💡 **Track added to queue »** `{pos}`\n\n"
f"🗂 **Name:** [{songname}]({link}) | `music`\n"
f"⏱️ **Duration:** `{duration}`\n"
f"🧸 **Request by:** {requester}",
)
remove_if_exists(image)
else:
try:
gcname = m.chat.title
ctitle = await CHAT_TITLE(gcname)
title = songname
userid = m.from_user.id
image = await thumb(thumbnail, title, userid, ctitle)
await suhu.edit("🔄 Joining Group Call...")
await music_on(chat_id)
await add_active_chat(chat_id)
await calls.join_group_call(
chat_id,
AudioPiped(
dl,
HighQualityAudio(),
),
stream_type=StreamType().pulse_stream,
)
2022-02-21 01:27:30 +00:00
add_to_queue(chat_id, songname, dl, link, "music", 0)
2022-02-16 13:19:44 +00:00
await suhu.delete()
buttons = stream_markup(user_id)
requester = (
f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
)
await m.reply_photo(
photo=image,
reply_markup=InlineKeyboardMarkup(buttons),
caption=f"🗂 **Name:** [{songname}]({link}) | `music`\n"
f"⏱️ **Duration:** `{duration}`\n"
f"🧸 **Request by:** {requester}",
)
await idle()
remove_if_exists(image)
2022-02-24 02:32:23 +00:00
except (NoActiveGroupCall, GroupCallNotFound):
2022-02-16 13:19:44 +00:00
await suhu.delete()
await remove_active_chat(chat_id)
traceback.print_exc()
2022-02-24 02:32:23 +00:00
await m.reply_text("❌ The bot can't find the Group call or it's inactive.\n\n» Use /startvc command to turn on the Group call !")
2022-02-16 13:19:44 +00:00
else:
await m.reply(
"» reply to an **audio file** or **give something to search.**"
)
2022-01-31 12:42:18 +00:00
@Client.on_message(command(["play", f"play@{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 play(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-02-03 00:45:24 +00:00
"you're an __Anonymous__ user !\n\n» revert back to your real user account to use this bot."
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 02:32:23 +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 !")
return
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 00:14:15 +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 00:14:15 +00:00
await remove_active_chat(chat_id)
2022-01-31 12:42:18 +00:00
except UserAlreadyParticipant:
pass
except Exception as e:
2022-02-13 06:27:09 +00:00
traceback.print_exc()
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.audio or replied.voice:
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(
"» reply to an **audio file** or **give something to search.**"
)
else:
2022-02-11 15:24:09 +00:00
suhu = await c.send_message(chat_id, "🔍 **Loading...**")
2022-01-31 12:42:18 +00:00
query = m.text.split(None, 1)[1]
search = ytsearch(query)
if search == 0:
2022-02-21 01:27:30 +00:00
await suhu.edit("❌ **no results found**")
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:
await suhu.edit(f"❌ yt-dl issues detected\n\n» `{ytlink}`")
else:
if chat_id in QUEUE:
2022-02-11 15:24:09 +00:00
await suhu.edit("🔄 Queueing Track...")
2022-01-31 12:42:18 +00:00
pos = add_to_queue(
2022-02-21 01:27:30 +00:00
chat_id, songname, ytlink, url, "music", 0
2022-01-31 12:42:18 +00:00
)
await suhu.delete()
buttons = stream_markup(user_id)
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
await m.reply_photo(
photo=image,
reply_markup=InlineKeyboardMarkup(buttons),
caption=f"💡 **Track added to queue »** `{pos}`\n\n🗂 **Name:** [{songname}]({url}) | `music`\n**⏱ Duration:** `{duration}`\n🧸 **Request by:** {requester}",
)
2022-02-13 06:43:13 +00:00
remove_if_exists(image)
2022-01-31 12:42:18 +00:00
else:
try:
2022-02-11 15:24:09 +00:00
await suhu.edit("🔄 Joining Group Call...")
2022-02-09 00:14:15 +00:00
await music_on(chat_id)
2022-02-09 02:44:46 +00:00
await add_active_chat(chat_id)
2022-02-07 16:17:40 +00:00
await calls.join_group_call(
2022-01-31 12:42:18 +00:00
chat_id,
AudioPiped(
ytlink,
HighQualityAudio(),
),
stream_type=StreamType().local_stream,
)
2022-02-21 01:27:30 +00:00
add_to_queue(chat_id, songname, ytlink, url, "music", 0)
2022-01-31 12:42:18 +00:00
await suhu.delete()
buttons = stream_markup(user_id)
requester = (
f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
)
await m.reply_photo(
photo=image,
reply_markup=InlineKeyboardMarkup(buttons),
caption=f"🗂 **Name:** [{songname}]({url}) | `music`\n**⏱ Duration:** `{duration}`\n🧸 **Request by:** {requester}",
)
2022-02-07 05:05:41 +00:00
await idle()
2022-02-13 06:43:13 +00:00
remove_if_exists(image)
2022-02-24 02:32:23 +00:00
except (NoActiveGroupCall, GroupCallNotFound):
await suhu.delete()
await remove_active_chat(chat_id)
await m.reply_text("❌ The bot can't find the Group call or it's inactive.\n\n» Use /startvc command to turn on the Group call !")
except NoAudioSourceFound:
2022-01-31 12:42:18 +00:00
await suhu.delete()
2022-02-09 00:14:15 +00:00
await remove_active_chat(chat_id)
2022-02-24 02:32:23 +00:00
await m.reply_text("❌ The content you provide to play has no audio source")
2022-01-31 12:42:18 +00:00
else:
if len(m.command) < 2:
await m.reply(
"» reply to an **audio file** or **give something to search.**"
)
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-02-11 15:24:09 +00:00
suhu = await c.send_message(chat_id, "🔍 **Loading...**")
2022-01-31 12:42:18 +00:00
query = m.text.split(None, 1)[1]
search = ytsearch(query)
if search == 0:
2022-02-20 22:54:42 +00:00
await suhu.edit("❌ **no results found**")
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)
2022-01-31 12:58:43 +00:00
veez, ytlink = await ytdl(url)
2022-01-31 12:42:18 +00:00
if veez == 0:
await suhu.edit(f"❌ yt-dl issues detected\n\n» `{ytlink}`")
else:
if chat_id in QUEUE:
2022-02-11 15:24:09 +00:00
await suhu.edit("🔄 Queueing Track...")
2022-02-21 01:27:30 +00:00
pos = add_to_queue(chat_id, songname, ytlink, url, "music", 0)
2022-01-31 12:42:18 +00:00
await suhu.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}) | `music`\n**⏱ Duration:** `{duration}`\n🧸 **Request by:** {requester}",
)
2022-02-13 06:43:13 +00:00
remove_if_exists(image)
2022-01-31 12:42:18 +00:00
else:
try:
2022-02-11 15:24:09 +00:00
await suhu.edit("🔄 Joining Group Call...")
2022-02-09 00:14:15 +00:00
await music_on(chat_id)
2022-02-09 02:44:46 +00:00
await add_active_chat(chat_id)
2022-02-07 16:17:40 +00:00
await calls.join_group_call(
2022-01-31 12:42:18 +00:00
chat_id,
AudioPiped(
ytlink,
HighQualityAudio(),
),
stream_type=StreamType().local_stream,
)
2022-02-21 01:27:30 +00:00
add_to_queue(chat_id, songname, ytlink, url, "music", 0)
2022-01-31 12:42:18 +00:00
await suhu.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}) | `music`\n**⏱ Duration:** `{duration}`\n🧸 **Request by:** {requester}",
)
2022-02-07 05:05:41 +00:00
await idle()
2022-02-13 06:43:13 +00:00
remove_if_exists(image)
2022-02-24 02:32:23 +00:00
except (NoActiveGroupCall, GroupCallNotFound):
await suhu.delete()
await remove_active_chat(chat_id)
await m.reply_text("❌ The bot can't find the Group call or it's inactive.\n\n» Use /startvc command to turn on the Group call !")
except NoAudioSourceFound:
2022-01-31 12:42:18 +00:00
await suhu.delete()
2022-02-09 00:14:15 +00:00
await remove_active_chat(chat_id)
2022-02-24 02:32:23 +00:00
await m.reply_text("❌ The content you provide to play has no audio source.\n\n» Try to play another song or try again later !")