video-stream/bot/videoplayer.py

158 lines
5.9 KiB
Python
Raw Normal View History

2021-09-09 01:18:24 +00:00
import os
import asyncio
import subprocess
from pytgcalls import idle
from pytgcalls import PyTgCalls
from pytgcalls import StreamType
from pytgcalls.types.input_stream import AudioParameters
from pytgcalls.types.input_stream import InputAudioStream
from pytgcalls.types.input_stream import InputVideoStream
from pytgcalls.types.input_stream import VideoParameters
2021-09-09 01:18:24 +00:00
from pyrogram import Client, filters
from pyrogram.types import Message
from config import API_ID, API_HASH, SESSION_NAME, BOT_USERNAME
from helpers.decorators import authorized_users_only
from helpers.filters import command
2021-09-09 20:54:36 +00:00
from youtube_dl import YoutubeDL
from youtube_dl.utils import ExtractorError
2021-09-09 01:18:24 +00:00
2021-09-09 20:54:36 +00:00
SIGINT: int = 2
2021-09-09 01:18:24 +00:00
app = Client(SESSION_NAME, API_ID, API_HASH)
call_py = PyTgCalls(app)
FFMPEG_PROCESSES = {}
2021-09-09 01:18:24 +00:00
def raw_converter(dl, song, video):
2021-09-09 20:54:36 +00:00
return subprocess.Popen(
2021-09-09 13:02:59 +00:00
['ffmpeg', '-i', dl, '-f', 's16le', '-ac', '1', '-ar', '48000', song, '-y', '-f', 'rawvideo', '-r', '20', '-pix_fmt', 'yuv420p', '-vf', 'scale=854:480', video, '-y'],
stdin=None,
stdout=None,
stderr=None,
cwd=None,
)
2021-09-09 01:18:24 +00:00
2021-09-09 20:54:36 +00:00
def youtube(url: str):
try:
params = {"format": "best[height=?720]/best", "noplaylist": True}
yt = YoutubeDL(params)
info = yt.extract_info(url, download=False)
return info['url']
except ExtractorError: # do whatever
return
except Exception:
return
2021-09-09 01:18:24 +00:00
@Client.on_message(command(["vstream", f"vstream@{BOT_USERNAME}"]) & filters.group & ~filters.edited)
@authorized_users_only
async def startvideo(client, m: Message):
2021-09-09 01:18:24 +00:00
replied = m.reply_to_message
if not replied:
if len(m.command) < 2:
await m.reply("💡 reply to video or provide youtube/live video url to start video streaming")
2021-09-09 01:18:24 +00:00
else:
livelink = m.text.split(None, 1)[1]
chat_id = m.chat.id
2021-09-09 20:54:36 +00:00
try:
livelink = await asyncio.wait_for(
app.loop.run_in_executor(
None,
lambda : youtube(livelink)
),
timeout=None # Add timeout (recommended)
)
except asyncio.TimeoutError:
await m.reply("TimeoutError: process is taking unexpected time")
return
if not livelink:
await m.reply("failed to get video data")
return
process = raw_converter(livelink, f'audio{chat_id}.raw', f'video{chat_id}.raw')
FFMPEG_PROCESSES[chat_id] = process
msg = await m.reply("🔁 **starting video streaming...**")
await asyncio.sleep(10)
try:
audio_file = f'audio{chat_id}.raw'
video_file = f'video{chat_id}.raw'
while not os.path.exists(audio_file) or \
not os.path.exists(video_file):
await asyncio.sleep(2)
await call_py.join_group_call(
chat_id,
InputAudioStream(
audio_file,
AudioParameters(
bitrate=48000,
),
),
InputVideoStream(
video_file,
VideoParameters(
2021-09-09 14:18:14 +00:00
width=854,
height=480,
frame_rate=20,
),
),
stream_type=StreamType().local_stream,
)
await msg.edit("💡 **video streaming started!**\n\n» **join to video chat on the top to watch the video.**")
await idle()
except Exception as e:
await msg.edit(f"🚫 **error** | `{e}`")
2021-09-09 01:18:24 +00:00
elif replied.video or replied.document:
msg = await m.reply("📥 downloading video...")
video = await client.download_media(m.reply_to_message)
chat_id = m.chat.id
await msg.edit("🔁 **preparing...**")
os.system(f"ffmpeg -i '{video}' -f s16le -ac 1 -ar 48000 'audio{chat_id}.raw' -y -f rawvideo -r 20 -pix_fmt yuv420p -vf scale=640:360 'video{chat_id}.raw' -y")
2021-09-09 01:18:24 +00:00
try:
audio_file = f'audio{chat_id}.raw'
video_file = f'video{chat_id}.raw'
while not os.path.exists(audio_file) or \
not os.path.exists(video_file):
await asyncio.sleep(2)
await call_py.join_group_call(
chat_id,
InputAudioStream(
audio_file,
AudioParameters(
bitrate=48000,
),
),
InputVideoStream(
video_file,
VideoParameters(
width=640,
height=360,
frame_rate=20,
),
),
stream_type=StreamType().local_stream,
)
await msg.edit("💡 **video streaming started!**\n\n» **join to video chat on the top to watch the video.**")
2021-09-09 01:18:24 +00:00
except Exception as e:
await msg.edit(f"🚫 **error** | `{e}`")
await idle()
2021-09-09 01:18:24 +00:00
else:
await m.reply("💭 please reply to video or video file to stream")
@Client.on_message(command(["vstop", f"vstop@{BOT_USERNAME}"]) & filters.group & ~filters.edited)
@authorized_users_only
async def stopvideo(client, m: Message):
chat_id = m.chat.id
try:
process = FFMPEG_PROCESSES.get(chat_id)
if process:
try:
process.send_signal(SIGINT)
await asyncio.sleep(3)
except Exception as e:
print(e)
await call_py.leave_group_call(chat_id)
await m.reply("✅ **disconnected from vc !**")
2021-09-09 01:18:24 +00:00
except Exception as e:
await m.reply(f"🚫 **error** | `{e}`")