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.3.tar.gz (705.7 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.3-cp314-cp314-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

cricodecs-1.1.3-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.3-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.3-cp314-cp314-macosx_14_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

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

Uploaded CPython 3.14macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

cricodecs-1.1.3-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.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

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

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

Uploaded CPython 3.13macOS 14.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

cricodecs-1.1.3-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.3-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.3-cp312-cp312-macosx_14_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

cricodecs-1.1.3-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.3-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.3-cp311-cp311-macosx_14_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

cricodecs-1.1.3-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.3-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.3-cp310-cp310-macosx_14_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

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

Uploaded CPython 3.10macOS 14.0+ ARM64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

cricodecs-1.1.3-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.3-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.3-cp39-cp39-macosx_14_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

cricodecs-1.1.3-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.3.tar.gz.

File metadata

  • Download URL: cricodecs-1.1.3.tar.gz
  • Upload date:
  • Size: 705.7 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.3.tar.gz
Algorithm Hash digest
SHA256 8f0d6be81f7ca50a40ef6571adcf924e8c1c92beb70b686f466ca2476fea8b49
MD5 b11a487100d3d45311eac1f734c90774
BLAKE2b-256 90dab230e1441de84fe17df039afdd49ad2be93770137b102b9bfad2d3fa2c5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3.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.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: cricodecs-1.1.3-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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8de8dfdb0cc9449e35b1316c06e290648db4817ec0994e3a99e45d2b1735b8ae
MD5 42df19a13966b35185f0d7a35fe12372
BLAKE2b-256 a5585727782b650a0121245e08a5d9b432e48b2015ab88c51eefd8cc8bbdbf03

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cricodecs-1.1.3-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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bec98b2f7fd3c3f9279698f95d2eac78a6bc432f7d209c4391b12dec211fab81
MD5 679e4934d8e43b10a4e945108307962b
BLAKE2b-256 d3bbf9f1fb80fa581999ba61194aa507d9c80faad5a926f19f33869b08438b97

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3badbc0140af95540db02471be527058396a841b55f152d0a6c03fb078540b20
MD5 4efc285295214a1695ec6d001544397b
BLAKE2b-256 49cbf8c4b2800b0ce336df6a2ebabc862a130262aa19c0a7b0b55b78e4e6e7fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b97c1e25e7ae314e000182c8e8255d9ff2b75390a4941207d319e5ed7a28cf9
MD5 efe7dfe271a4fb6862c4b8198ad26d28
BLAKE2b-256 fda2562184b93de628e4c004b9fd030666699b03a9685c9bcfec4bf8e9b92bf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp314-cp314-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 cb3dcb14821655f68e72d96885d1962c7e2d3cac679a4a8d58acbea3293e920b
MD5 6965de5a96e9b1690f8a3c079960b6bb
BLAKE2b-256 870d330840712ae0410931f54edade182b1ada0739e74c3cb4b9fb6c37c0713a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1358ae24e49be922ca46e3dba0f125a706e1e0ff9f6a06d3f89794720e815447
MD5 645acbb02966d32b392276b2c4d5b2ec
BLAKE2b-256 6007029f2a2df3a5927136c6fc8475779129eff66e4ccd7bfc4ca68e591a72b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: cricodecs-1.1.3-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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8d00a238817d4bcc618f6a26f966e7a04300da65d319b901c85a3e335fefc86d
MD5 3c21d6a1ef0024bf05efb1411ba1a046
BLAKE2b-256 878ad3abe08122a48529fb74d34773f63c73d338df141d0da5b4dd9248e33dc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cricodecs-1.1.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 afcc6f9752cad44f7732ff025339a0d2c4991a2fa3c618f69829cee66dfdc5d8
MD5 c1cfeaf138442fe945d7d200947cf677
BLAKE2b-256 8e744b2da78143ecafad9c70e839979e01473fc11666d48ac5471dc4c7c156d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c379b385f67f77424889b74fee94c61e2c1b05e0c7cb5a2479cc463971ba96e0
MD5 c46ea3eca5d13bc36c45f8718cfad9e0
BLAKE2b-256 4e38a52b7e6aa4184ddfb3d5f05c6d2c593bc0826addd4b483e9021b08886196

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86d5ff93952068257d942f6cc75c91c692a7b07723dfa9a10fc7910b3417b199
MD5 de33721a846cdea3f1316383a847121a
BLAKE2b-256 0977913b6307c5cb95f19134544021d9807bc469c752db34ad956a20a747726d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 01ed5421dd3300e3aeb9bc559c384fb57faf768a97bef6c60b9da211a66e74d7
MD5 5146b9c524cdda4694db7019aad5468d
BLAKE2b-256 cab7234c06312b6ab648d780128fca380c076685e4f5c8d909c88e98467c0e2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1cd7bc69443e4843879f7b8d9cb658c5464c09ece58c371e9a857c7c4da98749
MD5 1e0c4f87a038a7db7144d137c6875918
BLAKE2b-256 b56c0d86dec8ac8ce489b073565aa5ba4dc2da3a065aaa3d61a5339c17907b3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: cricodecs-1.1.3-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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 68766055e94625dfbff7d87469995e6440132b01c99543c51df92da206ef0951
MD5 47abf1e9ef0bffab5ed9feedd5c8ea7f
BLAKE2b-256 10ea64ab30e1a35ef946c3ce07b9f949a7108ff5e2e2d6d83b2c5812fbede204

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cricodecs-1.1.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bc05b5348604ab48903fb085a3397c75d804e737f2174352f4f01d8e8241d50f
MD5 801985abfc32c41355654d97167ee5b2
BLAKE2b-256 ddd50b8de1c70da68d6a30931f44889f01a5df3fe07356cc16618e00b6ef05b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20327cdc52569af1dac3f0be1f05711f285382bc6751880f376f44a70572f720
MD5 acbc5554e6c89f0cdc16504f632f94e8
BLAKE2b-256 d5489b0e4459ac3254f8913d4400b59dfba037c736c0e6fa45240f75b77b1bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2ebbb89437a089f55076083d67abadde6e0562c6656f6d64ba7786c8ec1a11c
MD5 0fc3dfc559c560ff7f214aaefc572c4e
BLAKE2b-256 798bad49adbbe103e91fac3283a6af8736b1d4870e9e0565d83252122a604841

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 491be171f82c0237cbabbbb85088e8610d05ce7ee46797c6fa55d795c644ce57
MD5 511b082539fd0fbdfa41d29132f5b6c4
BLAKE2b-256 b11ed769eaf91eed4d2c52f850f89be6ea66b00cc7fce178b275158bbbff608f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 cee0b4242bed9f92c8ef29ec1efdd19322b205456bc0c592edf061b859fcba03
MD5 b9b0ca2a219788ef3fe1ec6508d54ec9
BLAKE2b-256 1e4da40b209798ba51baa3b460d4d0e69bdd38b35997ba9e690fa24fdc75edd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: cricodecs-1.1.3-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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2718a6416f3a9461f84fb8a22ae059fabe62c0a95bf19533732d61315d0fb9ca
MD5 b154e68211ea28bb143b66f57596a3b6
BLAKE2b-256 1e091db68966328b6d43a5f1c5efda39c5234af6d244dd922ed732ab2833077b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cricodecs-1.1.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 57f0a4726b28c485feb60106e9a6a5c5190cfc322a35d0d098d12e39dc640d00
MD5 0df389202a33d2463162cb8cd9d97562
BLAKE2b-256 466b74cec50b1defaf9a4ebb615d50150600a6c3a0bcfa9ffa2ff0972ff45774

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31dbf4c1cff7ea8edf6e8ddcd4b2bb6430037747d9cfd25c3fd471b019a4ff5c
MD5 1e3e98486dd10bc40d51b57a92f6f676
BLAKE2b-256 50e7272ad0cf6647c6598519b6b966b22c12f0085b3fb0cf003babd8760f84ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f08b123582ff6e471f1108cb1ea068ff801eecb1db2dbea5731129567c2cbc2
MD5 d93fc3bfafe46c77f345db38be485eab
BLAKE2b-256 a292a07bb94f03a113623ebd6ea893e7974650f034d354ecb4ea0dc91a714873

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 2e1ce73d92179d5d71dcd9f42f24f3aa322c8d72d6992aadc782fbdf726b3403
MD5 46244d9f40ad17b34cd588c08eb79b1d
BLAKE2b-256 b5e082719c91008628d8244484abcbb271cc89e1612132744b4c464b0b57cb05

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c657d081e528738f36cbfcbeaffc9154e075c32dbdba76b8402217def475ec76
MD5 4a490eb18104c6d615fe41c461517a36
BLAKE2b-256 3f01d625268637b3e3a097c5938ee11f835ea8b1d102f464472cc758a48d427b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: cricodecs-1.1.3-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.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 82687a0c4ce599e3234edb28efab9245cd50dc853d564a8c87df7ef0068dcdc2
MD5 f2d991a23036b18100d3632e9e9b17a1
BLAKE2b-256 38535ded7535acb53b5a39680c6a03dbf74088004005f27ebde5cd8a75a4c995

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cricodecs-1.1.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6cba9f40a673fe7cac5a904a8f6ec6bf7b8bf63ced26a76248d00028f66b0d1d
MD5 c33d6d4d0526a590f146ed92463599f1
BLAKE2b-256 43534f79140964364d1a67426a42fd99ff084f3961479a6b30bdcb7cb0f3c2e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f08ae99c52fc7e034c62cb8a94a6f4e531adef574ef862230de11ec4bb918ff7
MD5 1b67fd8e1c35fe141384f6a9de3e10ed
BLAKE2b-256 b18066db3e181a8122fbddd090b2a42b3c7be1e2f56afff5e5a23b0695c2b523

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 349bb445f325a5e4b9c5310801defc742b53548526f0ed3b69b2d51c9f2c5922
MD5 f4f2365deabd7640ecf6893c28f83783
BLAKE2b-256 31ff280e62c7a1c0587454c70d7d4e6ebde4d579881391c0200fae8bf0bf88a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 b6ccc7d6ee7c8b548653113d072bc0643a10c67c8557475c50ea2b6460b7a662
MD5 69624ea35d5f9c4511d9b6ef58d0452d
BLAKE2b-256 6fdbd85de9732556c0f492ca4c210c6bbec830b49cbae909738f5383216990cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2dfd6d60463eac95c164e49e81de3159466663b63de5f4d343386f338599486d
MD5 48cda9070efeae99e36f1a7703dfc389
BLAKE2b-256 83939de0e42a8ec49bd8b4703681b7ddf29fa1c2cc2fa9774e7465ed6d2489ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: cricodecs-1.1.3-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.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 315b3450cffa91f7021272156da10d05b2f77c379f01c78c40d79b7a360cb0a1
MD5 64397e90267b63a9bbb5e6092a44ed5e
BLAKE2b-256 5f8b805411b0091e50eee3dd915961b32d055b1f97c5da0f8bc9a46000a4980e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cricodecs-1.1.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 097666004eab2c30c2b98a68db3b4493a4deca244c81497ab05f0881d5bf89d1
MD5 b6a4e3f92bdbb37807043243f3480e7a
BLAKE2b-256 1bcfa73097f766ab2b6b038b5513f82ead19d3c0bd8d76fed793cb073a49a614

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d88dbe3787cd04442b76f733d8b1b332d8f24d0f604b44407271b4b82d52a00
MD5 b0b20ec35c01ec8d8e17d75705176b7b
BLAKE2b-256 8da0b129ef4a22902bde3d18c5918bdff09e06434aea2235432a2991696c98f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2151dc64f677670f746844a0eb11319fe899153b96f33de4211729f0ed9e43bf
MD5 421603ba096090703467919d4f7789f5
BLAKE2b-256 7894f8cb3b308e5391314711f10946a28626e84bee0dccec03c03ebb49792ae9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 8a87870fbc6ed7a64ef7df651f604fe28bd330d785df9464973c39e107ca427d
MD5 8b51e6b2e77ea8ffe390d2ee0090321c
BLAKE2b-256 d1f17778b42e22fad6bb54ec7e4aeb670c9e0fb77f84426b43ea949d8430c758

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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.3-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cricodecs-1.1.3-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0812e74f12c990e3cc01086467922c8340e2c1d219883fa738fac8b575a14ba4
MD5 00a5039c75fc4db70c39dfae6430aba2
BLAKE2b-256 94f7e022be192255e985ba20dc91c0253742fb47a5ff90e9e081688d603246f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.3-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