1
Fork 0
poke/videobundler/main.py

108 lines
4 KiB
Python
Raw Normal View History

import asyncio
import aiohttp
from aiohttp import web
import string
2024-06-22 14:52:41 -04:00
import os
import random
import subprocess
2024-06-23 16:11:12 -04:00
from aiohttp.web import Response, FileResponse
2024-06-22 14:52:41 -04:00
app = web.Application()
app.router._frozen = False
2024-06-22 14:52:41 -04:00
def get_random_string(length):
2024-06-23 23:28:08 -04:00
# choose from all lowercase letter
letters = string.ascii_lowercase
result_str = "".join(random.choice(letters) for i in range(length))
return result_str
async def run_command(cmd):
# Create subprocess
process = await asyncio.create_subprocess_shell(
cmd,
stdout=asyncio.subprocess.PIPE,
)
# Wait for the subprocess to finish
stdout, stderr = await process.communicate()
# Check for errors
if process.returncode!= 0:
# Log or handle the error
print(f"Command '{args}' failed with return code {process.returncode}")
return None
# Decode stdout and return
return stdout
2024-06-22 18:02:30 -04:00
async def merge(request):
2024-06-23 23:28:08 -04:00
# register params
job_id = request.rel_url.query["id"]
video_id: str = request.rel_url.query["id"]
audio_itag: str = request.rel_url.query["audio_itag"]
video_itag: str = request.rel_url.query["video_itag"]
# validate
if " " in video_id or len(video_id) > 11:
print(f"Video {video_id} flagged as invalid, dropping request")
return
if not audio_itag.isdigit():
print(f"Audio itag {audio_itag} flagged as invalid, dropping request")
return
if not video_itag.isdigit():
print(f"Video itag {video_itag} flagged as invalid, dropping request")
return
if os.path.isfile(f"{job_id}.mp4"):
return web.FileResponse(
path=f"{job_id}.mp4"
)
cmdline = f"ffmpeg -i \"https://eu-proxy.poketube.fun/latest_version?id={video_id}&itag={audio_itag}&local=true\" -i \"https://eu-proxy.poketube.fun/latest_version?id={video_id}&itag={video_itag}&local=true\" -c copy -f mp4 -movflags frag_keyframe+empty_moov --duration 300 -"
2024-06-23 23:28:08 -04:00
#proc_ffmpeg = await asyncio.create_subprocess_shell(
# cmdline,
# stdout=asyncio.subprocess.PIPE
#)
#print(f"ffmpeg -i \"https://eu-proxy.poketube.fun/latest_version?id={video_id}&itag={audio_itag}&local=true\" -i \"https://eu-proxy.poketube.fun/latest_version?id={video_id}&itag={video_itag}&local=true\" -c copy -f mp4 -movflags frag_keyframe+empty_moov -")
#stdout, _ = await proc_ffmpeg.communicate()
2024-06-24 00:26:57 -04:00
#iwannakillmyself = await run_command(cmdline)
process = await asyncio.create_subprocess_shell(
cmdline,
stdout=asyncio.subprocess.PIPE,
)
# Wait for the subprocess to finish
#stdout, stderr = await process.communicate()
response = web.StreamResponse(status=200, reason='OK', headers={
'Content-Type': 'video/mp4',
'Transfer-Encoding': 'chunked',
})
await response.prepare(request)
try:
while True:
# Read data from stdout
chunk = await process.stdout.readline()
if not chunk:
break
# Write the chunk to the response
await response.write(chunk)
except Exception as e:
print(f"Error streaming FFmpeg output: {e}")
finally:
# Close the response
await response.write_eof()
return response
# Check for errors
#if process.returncode != 0: # Log or handle the error
#print(f"Command '{args}' failed with return code {process.returncode}")
#return None
# Decode stdout and return return stdout
#response = Response(body=stdout, content_type="video/mp4", headers="")
#return response
2024-06-22 14:52:41 -04:00
async def ping(request):
2024-06-23 23:28:08 -04:00
return web.Response(body='{"success": true}', content_type="application/json")
2024-06-22 14:52:41 -04:00
async def init_app():
2024-06-23 23:28:08 -04:00
app.router.add_get("/{id:.+}", merge)
app.router.add_get("/", ping)
return app
2024-06-22 18:02:30 -04:00
if __name__ == '__main__':
2024-06-23 23:28:08 -04:00
loop = asyncio.get_event_loop()
app = loop.run_until_complete(init_app())
web.run_app(app, port=3030)