Files
Ultroid-fork/plugins/giftools.py
Danish 68839e9dd0 Ultroid v0.0.7 2021/05/22
Co-authored-by: New-dev0 <New-dev0@notavailable.live>
Co-authored-by: Danish <danish@ultroid.tech>
Co-authored-by: Amit Sharma <48654350+buddhhu@users.noreply.github.com>
Co-authored-by: Programming Error <error@notavailable.live>
Co-authored-by: Aakash <BLUE-DEVIL1134@users.noreply.github.com>
Co-authored-by: Aditya <me@xditya.me>
Co-authored-by: sppidy <sppidy@users.noreply.github.com>
Co-authored-by: Arnab Paryali <Arnabxd@users.noreply.github.com>
Co-authored-by: divkix <divkix@users.noreply.github.com>
Co-authored-by: hellboi_atul <hellboi-atul@users.noreply.github.com>
2021-05-22 22:21:41 +05:30

138 lines
4.0 KiB
Python

# Ultroid - UserBot
# Copyright (C) 2020 TeamUltroid
#
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
# PLease read the GNU Affero General Public License in
# <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
"""
✘ Commands Available
•`{i}invertgif`
Make Gif Inverted(negative).
•`{i}bwgif`
Make Gif black and white
•`{i}vtog`
Reply To Video , It will Create Gif
Video to Gif
•`{i}gif <query>`
Send video regarding to query.
"""
import os
import random
import time
from datetime import datetime as dt
from . import *
@ultroid_cmd(pattern="bwgif$")
async def igif(e):
a = await e.get_reply_message()
if not (a and a.media):
return await eod(e, "`Reply To gif only`")
wut = mediainfo(a.media)
if "gif" not in wut:
return await eod(e, "`Reply To Gif Only`")
xx = await eor(e, "`Processing...`")
z = await ultroid_bot.download_media(a.media)
try:
await bash(f'ffmpeg -i "{z}" -vf format=gray ult.gif -y')
await e.client.send_file(e.chat_id, "ult.gif", support_stream=True)
os.remove(z)
os.remove("ult.gif")
await xx.delete()
except Exception as er:
LOGS.info(er)
@ultroid_cmd(pattern="invertgif$")
async def igif(e):
a = await e.get_reply_message()
if not (a and a.media):
return await eod(e, "`Reply To gif only`")
wut = mediainfo(a.media)
if "gif" not in wut:
return await eod(e, "`Reply To Gif Only`")
xx = await eor(e, "`Processing...`")
z = await ultroid_bot.download_media(a.media)
try:
await bash(
f'ffmpeg -i "{z}" -vf lutyuv="y=negval:u=negval:v=negval" ult.gif -y'
)
await e.client.send_file(e.chat_id, "ult.gif", support_stream=True)
os.remove(z)
os.remove("ult.gif")
await xx.delete()
except Exception as er:
LOGS.info(er)
@ultroid_cmd(pattern="gif ?(.*)")
async def gifs(ult):
get = ult.pattern_match.group(1)
xx = random.randint(0, 5)
n = 0
if ";" in get:
try:
n = int(get.split(";")[-1])
except BaseException:
pass
if not get:
return await eor(ult, "`{i}gif <query>`")
m = await eor(ult, "`Searching gif ...`")
gifs = await ultroid_bot.inline_query("gif", get)
if not n:
await gifs[xx].click(
ult.chat.id, reply_to=ult.reply_to_msg_id, silent=True, hide_via=True
)
else:
for x in range(n):
await gifs[x].click(
ult.chat.id, reply_to=ult.reply_to_msg_id, silent=True, hide_via=True
)
await m.delete()
@ultroid_cmd(pattern="vtog$")
async def vtogif(e):
a = await e.get_reply_message()
if not (a and a.media):
return await eod(e, "`Reply To video only`")
wut = mediainfo(a.media)
if "video" not in wut:
return await eod(e, "`Reply To Video Only`")
xx = await eor(e, "`Processing...`")
dur = a.media.document.attributes[0].duration
tt = time.time()
if int(dur) < 120:
z = await ultroid_bot.download_media(a.media)
await bash(
f'ffmpeg -i {z} -vf "fps=10,scale=320:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -loop 0 ult.gif -y'
)
await e.client.send_file(e.chat_id, "ult.gif", support_stream=True)
os.remove(z)
os.remove("ult.gif")
await xx.delete()
else:
filename = a.file.name
if not filename:
filename = "video_" + dt.now().isoformat("_", "seconds") + ".mp4"
vid = await downloader(filename, a.media.document, xx, tt, "Downloading...")
z = vid.name
await bash(
f'ffmpeg -ss 3 -t 100 -i {z} -vf "fps=10,scale=320:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -loop 0 ult.gif'
)
await e.client.send_file(e.chat_id, "ult.gif", support_stream=True)
os.remove(z)
os.remove("ult.gif")
await xx.delete()
HELP.update({f"{__name__.split('.')[1]}": f"{__doc__.format(i=HNDLR)}"})