Fix and add cinema on windows

This commit is contained in:
pleb
2026-07-11 16:20:58 -07:00
parent bcfada09f9
commit f40f3ddc56
2 changed files with 4 additions and 3 deletions
@@ -89,6 +89,7 @@ def _read_ffmpeg_exe(archive_path: Path) -> bytes:
def _write_member(archive: ZipFile, name: str, data: bytes) -> None:
info = ZipInfo(name, date_time=ZIP_TIMESTAMP)
info.compress_type = ZIP_STORED
info.create_system = 3 # Unix; keep the bundle hash stable across hosts
info.external_attr = 0o644 << 16
archive.writestr(info, data)