Files
Ultroid-fork/plugins/giftools.py
1Danish-00 386eff647c v0.0.9 18/07/2021
Co-authored-by: New-dev0 <New-dev0@users.noreply.github.com>
Co-authored-by: Aditya <me@xditya.me>
Co-authored-by: Amit Sharma <48654350+buddhhu@users.noreply.github.com>
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>
Co-authored-by: Programming Error <error@notavailable.live>
2021-07-18 17:47:15 +05:30

132 lines
3.9 KiB
Python

# Ultroid - UserBot
# Copyright (C) 2021 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 a.download_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 a.download_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, f"`{HNDLR}gif <query>`")
m = await eor(ult, "`Searching gif ...`")
gifs = await ult.client.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 a.download_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()