Skip to main content

CriWare codec and container library with Python bindings.

Project description

CriStudio GUI and CriCodecs

CriStudio logo

Desktop GUI and Python/C++ toolkit for CRI middleware game files, including CPK, USM, ACB/AWB, HCA, ADX, and UTF.

Download CriStudio GUI pip install cricodecs

Download CriStudio GUI

Download the latest CriStudio release for Windows, Linux, or macOS →

The portable GUI is the recommended option for most users. It can inspect, preview, extract, edit, and build CRI middleware files without requiring Python.

Install CriCodecs for Python

pip install cricodecs

The Python package provides native codec/container bindings and the shared cricodecs command-line interface. CriCodecs is also available as a standalone C++23 library and CLI for application integration and batch workflows.

CriStudio USM playback

Inspect and play muxed VP9 and ADX streams directly from a USM container.

CriStudio CPK inspection

Browse nested CPK entries and inspect structured binary data without extracting it first.

Downloads and packages

The latest GitHub release provides platform-specific downloads:

Download Intended use
CriStudio portable Recommended. Extract and run; Qt and FFmpeg are included.
CriStudio slim Smaller advanced-user build; requires compatible Qt and FFmpeg on the system.
CriCodecs CLI Optimized command-line executable for scripts and batch work.
C++ SDK Headers, CMake package metadata, and static/shared libraries.
Python wheels Install from PyPI with python -m pip install cricodecs.

Portable CriStudio needs no installer. Windows packages expose only CriStudio.exe and an _internal runtime directory, Linux uses an AppImage, and macOS uses a self-contained application bundle.

CriStudio

CriStudio has two workspaces:

  • Browse loads files and archives, searches nested entries, previews audio, video, images, tables, and raw bytes, and extracts selected content.
  • Editor edits archive entries and tables, builds and muxes media, and manages encryption keys without changing the global CRI key implicitly.

Key recovery is available for supported HCA, ADX, AHX, USM, AWB, and ACB inputs. Multi-file recovery runs in the background and ranks a bounded set of candidates rather than blocking the interface.

Format coverage

Area Formats
Audio and audio containers ADX, AHX, HCA, WAV/PCM, AAX, AIX
Sound banks and tables ACB, AWB, ACX, CSB, UTF
Archives and disc containers AFS, CPK, CVM/ROFS
Video and stream containers USM, SFD/SofDec

Editing, encoding, muxing, and key-recovery actions appear only where supported.

CLI

Release builds provide a standalone cricodecs executable. Python installs also provide a cricodecs console command backed by the same native implementation.

Common usage is input-driven:

cricodecs input.hca
cricodecs input.cpk

Audio inputs such as ADX, AHX, HCA, and AAX decode to WAV by default. Archive and container inputs extract to a sibling directory by default. Use -m for metadata, -m --json for JSON metadata, -f to force the input format, and -o to choose the output path or extraction root.

Key recovery

cricodecs --recover-key -f hca music.hca
cricodecs --recover-key -f hca music.acb
cricodecs --recover-key -f usm movie.usm
cricodecs --recover-key -f adx music.adx
cricodecs --recover-key -f ahx voice_a.ahx voice_b.ahx
cricodecs --recover-key -f awb BGM.awb
cricodecs --recover-key -f acb BGM.acb --json

HCA recovery scans standalone files, AWB/ACB/USM containers, and folders. USM recovery combines supported video, encrypted HCA, and masked ADX evidence. ADX/AHX recovery returns directly usable start,mult,add triplets, while AWB/ACB recovery targets encrypted AAC/M4A entries. Multiple inputs are assumed to share one base key unless --independent is supplied.

HCA type 56 uses only bits 0 through 55, so recovery cannot determine the original 64-bit key's upper byte. If the exact stored value matters, the seven recovered bytes can be searched in application metadata or executables, but a match is only a heuristic; the key may instead be derived, obfuscated, split, or absent.

USM muxing

When building a USM, --audio accepts repeatable ADX or HCA inputs. Supplying --key masks the video and ADX audio by default, converts plain HCA audio to cipher type 56, and preserves HCA that is already encrypted:

cricodecs --build -f usm --key 0x165CF4E2138F7BDA \
  --audio dialogue.adx --audio music.hca -o movie.usm movie.ivf

See USAGE.md for the complete command and key-recovery options.

Python Usage

Install from PyPI and import the package as cricodecs:

python -m pip install cricodecs

The top-level cricodecs.load() helper accepts a path or bytes and returns the matching object. Individual modules expose operations such as load(), decode(), encode(), extract(), demux(), and save_bytes().

Top-Level Load

import cricodecs

obj = cricodecs.load("input.cpk")
print(type(obj))
print(repr(obj))

ADX Decode And Encode

from pathlib import Path

from cricodecs import adx

wav_bytes = adx.decode("input.adx")
Path("output.wav").write_bytes(wav_bytes)

encoded = adx.encode(Path("source.wav").read_bytes())
Path("output.adx").write_bytes(encoded)

HCA Decode, Encode, Encrypt

from pathlib import Path

from cricodecs import hca

wav_bytes = hca.decode("input.hca", keycode=0xCF222F1FE0748978)
Path("decoded.wav").write_bytes(wav_bytes)

config = hca.HcaEncodeConfig()
config.sample_rate = 48000
config.channel_count = 2
config.quality = hca.HcaQuality.HIGH

hca_bytes = hca.encode(Path("source.wav").read_bytes(), config)
Path("encoded.hca").write_bytes(hca_bytes)

encrypted = hca.encrypt(hca_bytes, cipher_type=56, keycode=0xCF222F1FE0748978)
Path("encrypted.hca").write_bytes(encrypted)

CPK Inspect, Extract, Build

from pathlib import Path

from cricodecs import cpk

archive = cpk.load("input.cpk")
print(archive.info())
archive.extract("input_extracted")

new_archive = cpk.create(cpk.CpkPreset.FILENAME)
new_archive.add_file("data/voice.adx", "voice/voice.adx")
new_archive.add_bytes(b"hello", "text/readme.txt")
Path("output.cpk").write_bytes(new_archive.save_bytes())

ACB/AWB And USM

from cricodecs import acb, usm

cue_sheet = acb.load("sound.acb")
print(cue_sheet.info())
cue_sheet.extract("sound")

movie = usm.load("movie.usm")
print(movie.info())
movie.extract("movie_streams")

config = usm.UsmMuxConfig(
    video_path="movie.264",
    audio_tracks=[usm.UsmMuxAudioTrack("movie.adx")],
    subtitle_tracks=[
        usm.UsmMuxSubtitleTrack(
            "subtitles_en.srt",
            language_id=0,
            format=usm.UsmSubtitleFormat.SRT,
        ),
    ],
)
usm.mux(config, "movie_with_subtitles.usm")

Objects and configuration structs provide useful repr() output:

from cricodecs import adx

print(repr(adx.AdxEncodeConfig()))

C++ Usage

Include the complete API and link the namespaced CMake target:

#include <cricodecs/cricodecs.hpp>
find_package(CriCodecs CONFIG REQUIRED)
target_link_libraries(my_app PRIVATE CriCodecs::CriCodecs)

Module headers are installed under <cricodecs/...>, so projects can include only the formats they use. Public operations report recoverable failures with std::expected<T, std::string>.

ADX

#include <filesystem>
#include <fstream>
#include <vector>

#include <cricodecs/adx/adx_codec.hpp>

int main() {
    auto adx = cricodecs::adx::Adx::load("input.adx");
    if (!adx) {
        return 1;
    }

    auto decoded = adx->decode();
    if (!decoded) {
        return 1;
    }

    const auto& pcm = decoded->pcm_data;
    (void)pcm;
}

HCA

#include <cstdint>
#include <vector>

#include <cricodecs/hca/hca_codec.hpp>

std::vector<int16_t> decode_hca(std::span<const uint8_t> bytes) {
    auto decoded = cricodecs::hca::decode(bytes, 0xCF222F1FE0748978ULL);
    if (!decoded) {
        return {};
    }
    return std::move(*decoded);
}

CPK

#include <cricodecs/cpk/cpk_container.hpp>

int main() {
    auto archive = cricodecs::cpk::Cpk::load("input.cpk");
    if (!archive) {
        return 1;
    }

    return archive->files().empty() ? 1 : 0;
}

Build from source

Requirements

  • CMake 4.2 or newer
  • A C++23 compiler:
    • GCC 16.1 or newer on Linux
    • Visual Studio 2026 / MSVC v145 or newer on Windows
    • A current Apple Clang/Xcode toolchain on macOS
  • Python 3.9 or newer when building the Python package

Use a fresh build directory after changing the compiler, generator, Python version, or CMake version.

Python package

From the repository root:

python -m pip install .

For an editable development install:

python -m pip install --no-build-isolation -ve .

C++ SDK and CLI

Build and install an optimized static library and the CLI:

cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
cmake --build build --parallel 4
cmake --install build --prefix ./install

Set -DBUILD_SHARED_LIBS=ON for a shared library. To omit the CLI, set -DCRICODECS_BUILD_CLI=OFF.

On Windows with Visual Studio 2026:

cmake -S . -B build-vs -G "Visual Studio 18 2026" -A x64
cmake --build build-vs --config Release --parallel 4
cmake --install build-vs --config Release --prefix install

Credits

CriCodecs builds on public knowledge and prior open-source work around CRI formats. Many thanks and credits to:

  • vgmstream for HCA and CRI audio research.
  • VGAudio for ADX and HCA codec behavior references.
  • bnnm for CRI audio-format research and tooling.
  • Nyagamon for CRI format research.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cricodecs-1.1.4.tar.gz (705.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cricodecs-1.1.4-cp314-cp314-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows ARM64

cricodecs-1.1.4-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

cricodecs-1.1.4-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

cricodecs-1.1.4-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

cricodecs-1.1.4-cp314-cp314-macosx_14_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

cricodecs-1.1.4-cp314-cp314-macosx_14_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

cricodecs-1.1.4-cp313-cp313-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows ARM64

cricodecs-1.1.4-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

cricodecs-1.1.4-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

cricodecs-1.1.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

cricodecs-1.1.4-cp313-cp313-macosx_14_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

cricodecs-1.1.4-cp313-cp313-macosx_14_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

cricodecs-1.1.4-cp312-cp312-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows ARM64

cricodecs-1.1.4-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

cricodecs-1.1.4-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

cricodecs-1.1.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

cricodecs-1.1.4-cp312-cp312-macosx_14_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

cricodecs-1.1.4-cp312-cp312-macosx_14_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

cricodecs-1.1.4-cp311-cp311-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows ARM64

cricodecs-1.1.4-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

cricodecs-1.1.4-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

cricodecs-1.1.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

cricodecs-1.1.4-cp311-cp311-macosx_14_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

cricodecs-1.1.4-cp311-cp311-macosx_14_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

cricodecs-1.1.4-cp310-cp310-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows ARM64

cricodecs-1.1.4-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

cricodecs-1.1.4-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

cricodecs-1.1.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

cricodecs-1.1.4-cp310-cp310-macosx_14_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

cricodecs-1.1.4-cp310-cp310-macosx_14_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

cricodecs-1.1.4-cp39-cp39-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows ARM64

cricodecs-1.1.4-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

cricodecs-1.1.4-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

cricodecs-1.1.4-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

cricodecs-1.1.4-cp39-cp39-macosx_14_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

cricodecs-1.1.4-cp39-cp39-macosx_14_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

Details for the file cricodecs-1.1.4.tar.gz.

File metadata

  • Download URL: cricodecs-1.1.4.tar.gz
  • Upload date:
  • Size: 705.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4.tar.gz
Algorithm Hash digest
SHA256 8325949abff4ce3005a75315e6b8899a4d94817df79096595cd072a7de18be71
MD5 80a4259842114288608179cd07e84e35
BLAKE2b-256 da16825546ad40925e664064e7ba7fa7ce8bcb7e5722312e9191a7767d531116

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4.tar.gz:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: cricodecs-1.1.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0ec8add24642cb6d0bdca95161b3f47a1a30d80655a204f6e2efd15a4f3cb6d8
MD5 6a2042e53a5d24b4f682f5592b722ba6
BLAKE2b-256 8ffb7b98d1d6a8230063f7143a95148eef9b834699d33e546f6f55ebdb9616e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp314-cp314-win_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cricodecs-1.1.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 466ca410ec81cbd4cde1a4d810fa52041d024808440b222cbfa2f58b17d13232
MD5 726cbd9eba52c576e30313612b651002
BLAKE2b-256 35ebe7aeef751bdfffd26f15ff8f5b4fab79ef1a98bb7ad2826a836822bcbae2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp314-cp314-win_amd64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06e65c36d5c69d4b25dffb7c6e2ced1eac03275130b60a39fc6a5251a2f528eb
MD5 a993356c5c052e75cb9d7e4f94308e89
BLAKE2b-256 876c8ce8872a81aedfe4aa77cfc77ce58564836e5b054cf1cc5377e5b2a97b66

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 787b0370b15a25fbdcd53782c67edac3c417de7b6f8781430cc58134fc03dfbe
MD5 6ff194798d6b5c11555e9ecc1e3452f0
BLAKE2b-256 1c465494ae3e72a5f30096d8ec4a5dc2f070b791d9d28acb9aa03824af68fb69

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp314-cp314-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 e7a62bfb28ca5d45e235329c203f77b17afc3d1ce72fbb1e4828cd7d9c87e65b
MD5 cc04bf2f12f3319150cad8a2ca3859e9
BLAKE2b-256 f28b0190078a3080bb911d05ea78324499d22cebd575d40726afdacc24b70634

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp314-cp314-macosx_14_0_x86_64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b20a199d1f3fce33d79da779c9df89464b14dabe7aaaa9801150351b59f4fb9c
MD5 78f88f78ff6cc39dc2e33f63b33421eb
BLAKE2b-256 2aa10092f47606dd529ef3e0b78dc4ef077fb8466066adf21dfe3dd4cacbeb7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: cricodecs-1.1.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8412fb5094e1f1bacfdb898be6d6e7843ade056593103673de3e9ce39d3bc557
MD5 0b37464445d19dafd061d4f8d05c43b1
BLAKE2b-256 266813120bb3c74be4e13720063082d4c35b99e07d6585e0375788210a4ec859

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp313-cp313-win_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cricodecs-1.1.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9b31b91d223084fe08aa5c224d479baed2d7950d1b6ae58fd8037be5d01c3e49
MD5 115b3db2419d554d2d078bcdfc2e8407
BLAKE2b-256 883503984b609b13c1c60bafc67cecae9178ef8a3021c6f8825a5063aac7406b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp313-cp313-win_amd64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb6efd4749eca00f7ac367267df5d406c4f62fbddd893309172457b02afed215
MD5 aa42a4f204407c0100957febcaca5945
BLAKE2b-256 7af380dcddab757d9aab9b2a27ccb3271285429a7d2caeaee32bfa4970684374

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 388c16f41f0566b4e7065e1e113440f88588978b57e7ec419479dace169c92aa
MD5 839148d635509b5b32004b30e1479771
BLAKE2b-256 7d30693ef47e0ea2adeccc953836369aed49ed483cee15eea9dbc90f00853623

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 db67b6f4e00246958aec7d71c7235c372791fcd5bf9340bdf00a1fe50517d7da
MD5 b22f79b34ed1caec5c5eefd1a0d9b0c3
BLAKE2b-256 da6036d664fee76c551e3bedbbbd7497459a484a9936f5066a312218fa69484b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp313-cp313-macosx_14_0_x86_64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8d2e6649b440a883c25c3b2331c8c92fb740c6702f223859136b2455fbb92d26
MD5 7998593bfcbe08bbcd5b9fcb2805a5c3
BLAKE2b-256 1025af6b232f0603f7168fed4277d3d053cde8c0bfcb69e50d277ee86b052736

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: cricodecs-1.1.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 053911fb5bd0a307fc900beb561c9b84294b714d1487395ba8197c2a3fba338d
MD5 13e298177b595d3ac05f75768f77a07d
BLAKE2b-256 321babe234429234937857ad331db412c04d13dc2e9551b02658fae5097a1e0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp312-cp312-win_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cricodecs-1.1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bcb2da0ce28de864409620dce9b142befe000ae1e0d344c27d71834c15873df2
MD5 41a1565df71e7e38d35ea8759090cc40
BLAKE2b-256 e9f8f6bbee8ef0605b4438d82924b06ae6454191f41a2ce9efe594c6e7dbbd90

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp312-cp312-win_amd64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8a302984816c1a4f702d100b2a217003ecd0536cb6218f40cd17db97d0ae7ba
MD5 e21c3a0d1dae438d212caddbfa531f07
BLAKE2b-256 a35c7a4182a990120e6479d6b3035e02ee9eba968e6e6a4d51a1b89bfdf8755d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f68cd781810d1306def729b2eb8d2ad19bd73741b9d4d98502a6633e596311b1
MD5 d29ed1a8c93a6216d4612b6dc300055b
BLAKE2b-256 496d0d10305f6ff436fa2af56a4967863b2c06a5fe0b92b8c66241fc0ae246c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 6e368fd774236fbf6ca9937e1ff231e7d99175b6047639005e9e101c016aa4d8
MD5 134fc32c2a201ecab8fa007ef25d5437
BLAKE2b-256 327aa7f031dc3297ccbdcb783908c7423ea11978917d77a645862984c1bdad5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp312-cp312-macosx_14_0_x86_64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a18e7f4d83f2be3a0f5f7a66b8d9ff66848bc4ce682ae72fd73f8ca27b6992a5
MD5 6a14ba8cf42fdab3d7bfa47090297d00
BLAKE2b-256 d4309f399c86086a4289ab12d9ba77935b114b690e68e3da7ec404371de48218

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: cricodecs-1.1.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6e669d7e734566347b240e542cf4d8c685badf18e3d86395bba6079cc72e8312
MD5 8719ae275d253d1372e71c2e105802b8
BLAKE2b-256 377edeaf22e65a73ea1a359dba7bf0c198d0b5d6177895a118ab46cde87b2ff7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp311-cp311-win_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cricodecs-1.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c70605ceeb2b0c2b30da8582ac699f93925979ab938ce9f8e8a4a153500ac43e
MD5 3235bbb07dd294a01260b5cf52dee17e
BLAKE2b-256 8ca9bebbc5b06f54700a8768624ffc71deb27b30672e0c0f56b4aa1bd97d4a5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp311-cp311-win_amd64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cab3d512325268dc6f94b2e163c62857666d9e46c0b6198a3d9f673afeda295f
MD5 b6ca837cac31f4fd77b567048519d602
BLAKE2b-256 f019b882ba9e12cbdaa33642de8677f22d97ab255203912b9cc3153cd62c58bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ffad5c8131d9c453ed3309785565511f66a5c9fea6b39f1b7ea58ddcc433d18
MD5 e9268a2bf95f541079615dcbaab0bd7d
BLAKE2b-256 9d03ff57cd05cb5c0714b1f6cd40b20cde2058bb5df6d60094e21d6813dfec5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 fd5d2e78b7f2192a789720713a574043bf4612e87459ee40c9bdde885500a96d
MD5 887c7014427eb20bd69e9f17b7546129
BLAKE2b-256 c60c46b21287583526147959463c0067692bb0f449e7fa8c159f4157be92592e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp311-cp311-macosx_14_0_x86_64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b348c6560efb841f7073077993a7b8dfbadf01464990115ed8ba33a9b0937ce2
MD5 90b8056d396e1a8a8fa8b24299adc6a4
BLAKE2b-256 d4e17c25c60cd0bd4f60b5cf1f21061e2bcc516a929e8508f314edd55de4efe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: cricodecs-1.1.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7b78d58ddc679b1ec18f9347683a326cd8dff5e3a9e015d990ab2c04cd40d122
MD5 765147566e127674f68fd522b365eae0
BLAKE2b-256 8371af6ec1552416bcdc9121693a1f71696a533be7df1ef0907aa27f704fbf3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp310-cp310-win_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cricodecs-1.1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 995a49642357d78118f70bb34b774b266b7e0267ee31752a2afb29dcf6ae635a
MD5 706d6a35a4eac58ffd1a7ac461c7653b
BLAKE2b-256 de794db29d651aaa4b389e2b966957dbd765a34611c1205a6ea28c9e87220097

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp310-cp310-win_amd64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6190cb0e66042d9202763467deacf1d00838267c566bc03db3f9ebff37772de1
MD5 96f5507b87fe84a3efb4c6f08cc058bd
BLAKE2b-256 a25e8d0dbf77520c4687294f3398f961e3a9657f5ded6107e027f9d69dcc2d29

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4c6f598699d8abf6fbc5e872d7bac5c9e2faaea30deb635bb862106186fe2067
MD5 ca152719ab98022b0b58a74a72e350f7
BLAKE2b-256 c7434d64e319df1e7854b6a317b8f799d4f846321f38ddbf7b157c2ce1e4270f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 7b5aec378c566c978e01695408299d163f4d384eea2d957802d7975a26f693d7
MD5 8b5852b0f159be505d5c7afbb2537812
BLAKE2b-256 06da9875bdd661fafa72b6ef12ad3365c8114ab0e2c2dc1757056609035310b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp310-cp310-macosx_14_0_x86_64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9d75f688a77278d95bfc13520a4cb7af8007b09359477c4f54403dc3115151b0
MD5 e87d5ac774dccc3c3567f932222e4b3b
BLAKE2b-256 b764136635733fb22a9c8bfa7e89f8cbc366762f62d31e914cac62fee9125bc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: cricodecs-1.1.4-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 52ef28ab1425f7cdc5934f58b9f6a38e1a126845d97832f0d911127ef34ed951
MD5 41b13bd74f2c072211cac12f2697fb8b
BLAKE2b-256 b44e62561f5b3ca3a4671b7b746405fb06f30326ffb9a074d0f1e7506d91a393

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp39-cp39-win_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cricodecs-1.1.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cricodecs-1.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 024b3e3f451d9ad9bc01aa84ab49322cc6c8287401e757d2efa225200c38783d
MD5 736c3797d35d468ce7507af19e1e187a
BLAKE2b-256 fbb86e5eddf4c21f8282bd0fe9d579ecaf912b9e2def0dcb9f83d27cd0bab968

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp39-cp39-win_amd64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44eb1c608a047ccb7b3cf146541a8684717d820b135e43f79d95270d2055311b
MD5 06840bb1303b1edea5b25ac11a8603e0
BLAKE2b-256 08412bb53c390ef7962217c9e30863a10fff21656456f95c2dbe6fd3bdd67c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7a438650b44d7611c421e8b8a3e8aaf58c6c215b07eed2047c74108e2e5453e
MD5 aa15c001125902a2db5669383edecb0b
BLAKE2b-256 fef3cf28966fbb8a134725c7dc852e89f83b8ffa5e5e743399f55fc3df5e464c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 c0499f566da43fa88f4aec0828cf9833350408f88a36ab79fcfc45f1edda1c55
MD5 a779eb1396fbb985aa6cbc9e31c70de0
BLAKE2b-256 ba00c1128d190b86db82123bb6a5014e1a13e02995a5931378795f0c11e12be0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp39-cp39-macosx_14_0_x86_64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cricodecs-1.1.4-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.4-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 dd402ce101c8b859950b3fbb1f9802fa733bef5b82de3ddf01d68fec54a3eb88
MD5 a7380b434359071ed111d61a226ba2a8
BLAKE2b-256 fb40babf27770686e84e2f963441ae519f06640f38a4f4bf2e9ba1831f3362a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.4-cp39-cp39-macosx_14_0_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page