diff --git a/modules/custdl.py b/modules/custdl.py index f8434f3..f2bd067 100644 --- a/modules/custdl.py +++ b/modules/custdl.py @@ -273,6 +273,7 @@ async def download_x(e): ffmpeg_command = generate_ffmpeg_command(f"{out_folder}/{out_filename}", subs_urls) await ms.edit("Merging subs...") + print("FFMPEG CMD: "+" ".join(ffmpeg_command)) (await create_subprocess_shell(" ".join(ffmpeg_command))).wait() # os.remove(f"{out_folder}/{out_filename}") @@ -280,7 +281,7 @@ async def download_x(e): await ms.edit(f"Downloaded {out_filename} in {time.time() - t:.2f} seconds.", buttons=[[Button.inline("Back", data=f"episode_{series_id}_{season_index}_{episode_index}_{category}_{season_index}_{episode_index}")], [Button.url("Index Link", f"{SERVIO_TEMP}")]]) - await remove(f"{out_folder}/{out_filename}") + # await remove(f"{out_folder}/{out_filename}") # move the file to downloads folder