This commit is contained in:
√(noham)²
2026-01-11 11:50:59 +01:00
parent 7a73e9618b
commit 5fca8dffbf

View File

@@ -298,11 +298,10 @@ if __name__ == "__main__":
)
# Generate and save the manifest
generated_mpd_content = generate_mpd_manifest(manifest_info)
manifest_output_path = args.manifest_output
os.makedirs(os.path.dirname(manifest_output_path), exist_ok=True)
with open(manifest_output_path, "w", encoding="utf-8") as f:
f.write(generated_mpd_content)
f.write(generate_mpd_manifest(manifest_info))
logger.info("Manifest saved to %s", manifest_output_path)
sys.exit(0)