gh-14889: Add support for ffmpeg 63 (gh-14907)

This commit is contained in:
mr. m
2026-08-10 13:50:24 +02:00
committed by GitHub
parent 61275153eb
commit f2a2f7188b
3 changed files with 10734 additions and 1 deletions

View File

@@ -83,7 +83,7 @@ def main():
dest = patch.get("dest")
if not url or not dest:
die(f"Patch entry missing 'url' or 'dest': {patch}")
filename = url.split("/")[-1]
filename = patch.get("filename", url.split("/")[-1])
output_file = os.path.join(OUTPUT_DIR, dest, filename)
download_patch_from_url(url, output_file)
replaces = patch.get("replaces", {})