This commit is contained in:
FA Tulloh 2021-08-11 06:09:02 +08:00 committed by GitHub
parent 3801f4b283
commit 55b95c5b47
Signed by untrusted user: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,7 @@ def _watch(bot: Bot, update, isTar=False):
mssg = update.message.text
message_args = mssg.split(' ')
name_args = mssg.split('|')
try:
link = message_args[1]
except IndexError:
@ -23,6 +24,7 @@ def _watch(bot: Bot, update, isTar=False):
msg += "This file will be downloaded in 720p quality and it's name will be <b>Slam</b>"
sendMessage(msg, bot, update)
return
try:
if "|" in mssg:
mssg = mssg.split("|")
@ -35,11 +37,12 @@ def _watch(bot: Bot, update, isTar=False):
qual = f'bestvideo[height<={qual}]+bestaudio/best[height<={qual}]'
except IndexError:
qual = "bestvideo+bestaudio/best"
try:
name = name_args[1]
except IndexError:
name = ""
reply_to = update.message.reply_to_message
pswd = ""
listener = MirrorListener(bot, update, pswd, isTar)
ydl = YoutubeDLHelper(listener)
@ -55,9 +58,18 @@ def watch(update, context):
_watch(context.bot, update)
mirror_handler = CommandHandler(BotCommands.WatchCommand, watch,
filters=CustomFilters.authorized_chat | CustomFilters.authorized_user, run_async=True)
tar_mirror_handler = CommandHandler(BotCommands.TarWatchCommand, watchTar,
filters=CustomFilters.authorized_chat | CustomFilters.authorized_user, run_async=True)
mirror_handler = CommandHandler(
BotCommands.WatchCommand,
watch,
filters=CustomFilters.authorized_chat | CustomFilters.authorized_user,
run_async=True,
)
tar_mirror_handler = CommandHandler(
BotCommands.TarWatchCommand,
watchTar,
filters=CustomFilters.authorized_chat | CustomFilters.authorized_user,
run_async=True,
)
dispatcher.add_handler(mirror_handler)
dispatcher.add_handler(tar_mirror_handler)