Update music.py

ok
This commit is contained in:
Tofik Denianto 2021-10-30 03:24:14 +07:00 committed by GitHub
parent 617af04c04
commit 98ae3ce740
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,250 +2,258 @@
# Commit Start Date 20/10/2021 # Commit Start Date 20/10/2021
# Finished On 28/10/2021 # Finished On 28/10/2021
import os
import re
import asyncio import asyncio
from driver.veez import call_py import re
from pytgcalls import StreamType
from config import BOT_USERNAME, GROUP_SUPPORT, IMG_1, IMG_2, UPDATES_CHANNEL
from driver.filters import command, other_filters from driver.filters import command, other_filters
from pyrogram import Client, filters
from youtubesearchpython import VideosSearch
from driver.queues import QUEUE, add_to_queue from driver.queues import QUEUE, add_to_queue
from driver.veez import call_py
from pyrogram import Client
from pyrogram.types import InlineKeyboardButton, InlineKeyboardMarkup, Message
from pytgcalls import StreamType
from pytgcalls.types.input_stream import AudioPiped from pytgcalls.types.input_stream import AudioPiped
from config import BOT_USERNAME, IMG_1, IMG_2, GROUP_SUPPORT, UPDATES_CHANNEL from youtubesearchpython import VideosSearch
from pyrogram.types import Message, InlineKeyboardButton, InlineKeyboardMarkup
def ytsearch(query): def ytsearch(query):
try: try:
search = VideosSearch(query, limit=1) search = VideosSearch(query, limit=1)
for r in search.result()["result"]: for r in search.result()["result"]:
ytid = r['id'] ytid = r["id"]
if len(r['title']) > 34: if len(r["title"]) > 34:
songname = r['title'][:60] + "..." songname = r["title"][:60] + "..."
else: else:
songname = r['title'] songname = r["title"]
url = f"https://www.youtube.com/watch?v={ytid}" url = f"https://www.youtube.com/watch?v={ytid}"
return [songname, url] return [songname, url]
except Exception as e: except Exception as e:
print(e) print(e)
return 0 return 0
async def ytdl(link): async def ytdl(link):
proc = await asyncio.create_subprocess_exec( proc = await asyncio.create_subprocess_exec(
'yt-dlp', "yt-dlp",
'-g', "-g",
'-f', "-f",
'bestaudio', "bestaudio",
f'{link}', f"{link}",
stdout=asyncio.subprocess.PIPE, stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE,
) )
stdout, stderr = await proc.communicate() stdout, stderr = await proc.communicate()
if stdout: if stdout:
return 1, stdout.decode().split('\n')[0] return 1, stdout.decode().split("\n")[0]
else: else:
return 0, stderr.decode() return 0, stderr.decode()
@Client.on_message(command(["play", f"play@{BOT_USERNAME}"]) & other_filters) @Client.on_message(command(["play", f"play@{BOT_USERNAME}"]) & other_filters)
async def play(client, m: Message): async def play(client, m: Message):
keyboard = InlineKeyboardMarkup( keyboard = InlineKeyboardMarkup(
[
[ [
[ InlineKeyboardButton(
InlineKeyboardButton( text="✨ ɢʀᴏᴜᴘ", url=f"https://t.me/{GROUP_SUPPORT}"
text="✨ ɢʀᴏᴜᴘ", ),
url=f"https://t.me/{GROUP_SUPPORT}"), InlineKeyboardButton(
InlineKeyboardButton( text="🌻 ᴄʜᴀɴɴᴇʟ", url=f"https://t.me/{UPDATES_CHANNEL}"
text="🌻 ᴄʜᴀɴɴᴇʟ", ),
url=f"https://t.me/{UPDATES_CHANNEL}")
]
] ]
) ]
)
replied = m.reply_to_message
chat_id = m.chat.id replied = m.reply_to_message
if replied: chat_id = m.chat.id
if replied.audio or replied.voice: if replied:
suhu = await replied.reply("📥 **downloading audio...**") if replied.audio or replied.voice:
dl = await replied.download() suhu = await replied.reply("📥 **downloading audio...**")
link = replied.link dl = await replied.download()
if replied.audio: link = replied.link
if replied.audio.title: if replied.audio:
songname = replied.audio.title[:60] + "..." if replied.audio.title:
songname = replied.audio.title[:60] + "..."
else:
songname = replied.audio.file_name[:60] + "..."
elif replied.voice:
songname = "Voice Note"
if chat_id in QUEUE:
pos = add_to_queue(chat_id, songname, dl, link, "Audio", 0)
await suhu.delete()
await m.reply_photo(
photo=f"{IMG_1}",
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({link})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {m.from_user.mention()}\n🔢 **At position »** `{pos}`",
reply_markup=keyboard,
)
else: else:
songname = replied.audio.file_name[:60] + "..." await call_py.join_group_call(
elif replied.voice: chat_id,
songname = "Voice Note" AudioPiped(
if chat_id in QUEUE: dl,
pos = add_to_queue(chat_id, songname, dl, link, "Audio", 0) ),
await suhu.delete() stream_type=StreamType().pulse_stream,
await m.reply_photo( )
photo=f"{IMG_1}", add_to_queue(chat_id, songname, dl, link, "Audio", 0)
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({link})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {m.from_user.mention()}\n🔢 **At position »** `{pos}`", await m.reply_photo(
reply_markup=keyboard, photo=f"{IMG_2}",
caption=f"💡 **music streaming started.**\n\n🏷 **Name:** [{songname}]({link})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {m.from_user.mention()}",
reply_markup=keyboard,
)
else:
if len(m.command) < 2:
await m.reply(
"» reply to an **audio file** or **give something to search.**"
)
else:
suhu = await m.reply("🔎 **searching...**")
query = m.text.split(None, 1)[1]
search = ytsearch(query)
if search == 0:
await suhu.edit("❌ **no results found.**")
else:
songname = search[0]
url = search[1]
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:
pos = add_to_queue(
chat_id, songname, ytlink, url, "Audio", 0
)
await suhu.delete()
await m.reply_photo(
photo=f"{IMG_1}",
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {m.from_user.mention()}\n🔢 **At position »** `{pos}`",
reply_markup=keyboard,
)
else:
try:
await call_py.join_group_call(
chat_id,
AudioPiped(
ytlink,
),
stream_type=StreamType().pulse_stream,
)
add_to_queue(chat_id, songname, ytlink, url, "Audio", 0)
await suhu.delete()
await m.reply_photo(
photo=f"{IMG_2}",
caption=f"💡 **music streaming started.**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {m.from_user.mention()}",
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 **audio file** or **give something to search.**"
) )
else: else:
await call_py.join_group_call(
chat_id,
AudioPiped(
dl,
),
stream_type=StreamType().pulse_stream,
)
add_to_queue(chat_id, songname, dl, link, "Audio", 0)
await m.reply_photo(
photo=f"{IMG_2}",
caption=f"💡 **music streaming started.**\n\n🏷 **Name:** [{songname}]({link})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {m.from_user.mention()}",
reply_markup=keyboard,
)
else:
if len(m.command) < 2:
await m.reply("» reply to an **audio file** or **give something to search.**")
else:
suhu = await m.reply("🔎 **searching...**") suhu = await m.reply("🔎 **searching...**")
query = m.text.split(None, 1)[1] query = m.text.split(None, 1)[1]
search = ytsearch(query) search = ytsearch(query)
if search==0: if search == 0:
await suhu.edit("❌ **no results found.**") await suhu.edit("❌ **no results found.**")
else: else:
songname = search[0] songname = search[0]
url = search[1] url = search[1]
veez, ytlink = await ytdl(url) veez, ytlink = await ytdl(url)
if veez==0: if veez == 0:
await suhu.edit(f"❌ yt-dl issues detected\n\n» `{ytlink}`") await suhu.edit(f"❌ youtube-dl issues detected\n\n» `{ytlink}`")
else: else:
if chat_id in QUEUE: if chat_id in QUEUE:
pos = add_to_queue(chat_id, songname, ytlink, url, "Audio", 0) pos = add_to_queue(chat_id, songname, ytlink, url, "Audio", 0)
await suhu.delete()
await m.reply_photo(
photo=f"{IMG_1}",
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {m.from_user.mention()}\n🔢 **At position »** `{pos}`",
reply_markup=keyboard,
)
else:
try:
await call_py.join_group_call(
chat_id,
AudioPiped(
ytlink,
),
stream_type=StreamType().pulse_stream,
)
add_to_queue(chat_id, songname, ytlink, url, "Audio", 0)
await suhu.delete() await suhu.delete()
await m.reply_photo( await m.reply_photo(
photo=f"{IMG_2}", photo=f"{IMG_1}",
caption=f"💡 **music streaming started.**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {m.from_user.mention()}", caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {m.from_user.mention()}\n🔢 **At position »** `{pos}`",
reply_markup=keyboard, reply_markup=keyboard,
) )
except Exception as ep: else:
await m.reply_text(f"🚫 error: `{ep}`") try:
await call_py.join_group_call(
else: chat_id,
if len(m.command) < 2: AudioPiped(
await m.reply("» reply to an **audio file** or **give something to search.**") ytlink,
else: ),
suhu = await m.reply("🔎 **searching...**") stream_type=StreamType().pulse_stream,
query = m.text.split(None, 1)[1] )
search = ytsearch(query) add_to_queue(chat_id, songname, ytlink, url, "Audio", 0)
if search==0: await suhu.delete()
await suhu.edit("❌ **no results found.**") await m.reply_photo(
else: photo=f"{IMG_2}",
songname = search[0] caption=f"💡 **music streaming started.**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {m.from_user.mention()}",
url = search[1] reply_markup=keyboard,
veez, ytlink = await ytdl(url) )
if veez==0: except Exception as ep:
await suhu.edit(f"❌ youtube-dl issues detected\n\n» `{ytlink}`") await m.reply_text(f"🚫 error: `{ep}`")
else:
if chat_id in QUEUE:
pos = add_to_queue(chat_id, songname, ytlink, url, "Audio", 0)
await suhu.delete()
await m.reply_photo(
photo=f"{IMG_1}",
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {m.from_user.mention()}\n🔢 **At position »** `{pos}`",
reply_markup=keyboard,
)
else:
try:
await call_py.join_group_call(
chat_id,
AudioPiped(
ytlink,
),
stream_type=StreamType().pulse_stream,
)
add_to_queue(chat_id, songname, ytlink, url, "Audio", 0)
await suhu.delete()
await m.reply_photo(
photo=f"{IMG_2}",
caption=f"💡 **music streaming started.**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {m.from_user.mention()}",
reply_markup=keyboard,
)
except Exception as ep:
await m.reply_text(f"🚫 error: `{ep}`")
# stream is used for live streaming only # stream is used for live streaming only
@Client.on_message(command(["stream", f"stream@{BOT_USERNAME}"]) & other_filters) @Client.on_message(command(["stream", f"stream@{BOT_USERNAME}"]) & other_filters)
async def stream(client, m: Message): async def stream(client, m: Message):
keyboard = InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
text="✨ ɢʀᴏᴜᴘ",
url=f"https://t.me/{GROUP_SUPPORT}"),
InlineKeyboardButton(
text="🌻 ᴄʜᴀɴɴᴇʟ",
url=f"https://t.me/{UPDATES_CHANNEL}")
]
]
)
chat_id = m.chat.id
if len(m.command) < 2:
await m.reply("» give me a live-link/m3u8 url/youtube link to stream.")
else:
link = m.text.split(None, 1)[1]
suhu = await m.reply("🔄 **processing stream...**")
regex = r"^(https?\:\/\/)?(www\.youtube\.com|youtu\.?be)\/.+" keyboard = InlineKeyboardMarkup(
match = re.match(regex,link) [
if match: [
veez, livelink = await ytdl(link) InlineKeyboardButton(
else: text="✨ ɢʀᴏᴜᴘ", url=f"https://t.me/{GROUP_SUPPORT}"
livelink = link ),
veez = 1 InlineKeyboardButton(
text="🌻 ᴄʜᴀɴɴᴇʟ", url=f"https://t.me/{UPDATES_CHANNEL}"
if veez==0: ),
await suhu.edit(f"❌ yt-dl issues detected\n\n» `{ytlink}`") ]
else: ]
if chat_id in QUEUE: )
pos = add_to_queue(chat_id, "Radio", livelink, link, "Audio", 0)
await suhu.delete() chat_id = m.chat.id
await m.reply_photo( if len(m.command) < 2:
photo=f"{IMG_1}", await m.reply("» give me a live-link/m3u8 url/youtube link to stream.")
caption=f"💡 **Track added to the queue**\n\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {m.from_user.mention()}\n🔢 **At position »** `{pos}`", else:
reply_markup=keyboard, link = m.text.split(None, 1)[1]
) suhu = await m.reply("🔄 **processing stream...**")
else:
try: regex = r"^(https?\:\/\/)?(www\.youtube\.com|youtu\.?be)\/.+"
await call_py.join_group_call( match = re.match(regex, link)
chat_id, if match:
AudioPiped( veez, livelink = await ytdl(link)
livelink, else:
), livelink = link
stream_type=StreamType().pulse_stream, veez = 1
)
add_to_queue(chat_id, "Radio", livelink, link, "Audio", 0) if veez == 0:
await suhu.delete() await suhu.edit(f"❌ yt-dl issues detected\n\n» `{ytlink}`")
await m.reply_photo( else:
photo=f"{IMG_2}", if chat_id in QUEUE:
caption=f"💡 **[Radio live]({link}) stream started.**\n\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {m.from_user.mention()}", pos = add_to_queue(chat_id, "Radio", livelink, link, "Audio", 0)
reply_markup=keyboard, await suhu.delete()
) await m.reply_photo(
except Exception as ep: photo=f"{IMG_1}",
await m.reply_text(f"🚫 error: `{ep}`") caption=f"💡 **Track added to the queue**\n\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {m.from_user.mention()}\n🔢 **At position »** `{pos}`",
reply_markup=keyboard,
)
else:
try:
await call_py.join_group_call(
chat_id,
AudioPiped(
livelink,
),
stream_type=StreamType().pulse_stream,
)
add_to_queue(chat_id, "Radio", livelink, link, "Audio", 0)
await suhu.delete()
await m.reply_photo(
photo=f"{IMG_2}",
caption=f"💡 **[Radio live]({link}) stream started.**\n\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {m.from_user.mention()}",
reply_markup=keyboard,
)
except Exception as ep:
await m.reply_text(f"🚫 error: `{ep}`")