Skip to main content

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.

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 14.0+ x86-64

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

Uploaded CPython 3.14macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

cricodecs-1.1.6-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.6-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.6-cp313-cp313-macosx_14_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 14.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 14.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 14.0+ x86-64

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

Uploaded CPython 3.10macOS 14.0+ ARM64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 14.0+ x86-64

cricodecs-1.1.6-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.6.tar.gz.

File metadata

  • Download URL: cricodecs-1.1.6.tar.gz
  • Upload date:
  • Size: 707.0 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.6.tar.gz
Algorithm Hash digest
SHA256 87362f4ce170c171177646c0171133cb5e5fef7a7645acd8f7c206fcd807a145
MD5 4cfca4737de1223368c36c04304ca9a8
BLAKE2b-256 934a0733fd5672ffbc6d52fbb50e112fc48ee455819b77630c055d30a20b516d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.6-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.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 51f083f013826a9fe2e3f1b68af86b3cda678889df73643f9892e3b4464dc9e8
MD5 d24ec83b663b32f3e91a5e8d51fc8a10
BLAKE2b-256 42a76aacfb95e2ada8ceb2fc011518ac1e0c483bb4dd6c7d022e12f2a83f879e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.6-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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d7aeef6e6950aa5b4e3b0c2e95cfc285897853d2ecd5a492ddf6ac29582464c1
MD5 13fcc0398f4a7ec46d76cacb7b65a392
BLAKE2b-256 ca1e1c53e02dd337ed45ac85e6adaf33ae9f8bf8ecfa59b6be398dd2984e99c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7089e3fe176f570f423e19b588e1732602808836f658bd925e3f3ba58b37396f
MD5 834eebb0d7bdbe281f2c9c477e6c3b04
BLAKE2b-256 cd825ba9537fc2f8700d0ed305392df97e73aa2184f2ab7dbd4e8a8d1daef57b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f74d68886474d97dff543daed56b044b5a777f97be14c832890d20bb1b4a923e
MD5 d753f5f61f3800aa97208ef66a9313c5
BLAKE2b-256 e77255b1bfb6fbe1030c1219395cf50d0d24e781c594ee415d5c8ecddeb76100

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 41d1a3684e1e0063b7332f78085d2b6e64851fbcd71ac8361a98f8dc5e72c63f
MD5 9a6d962819e2cd149fa77d93daea60b2
BLAKE2b-256 72d99ecfec103e849d79afb38df0b05c86bb0aedd1f72cf5dc8ef12fb7dccf7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9de07877dba41a47f22da77dacfdf21608ca65ff9d572039dfdc3c6aa7e06bb1
MD5 e3cb958c70e0d23870d420eb91ed1b6e
BLAKE2b-256 07b5dd2daef71cfb7721aa5a2fdeaaeb21083aeaa78b574d80cafa0d1be239c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.6-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.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b87fba4c2b6e5f9c92c06514bafe3b4fc35ffe55a073e533a8b7e4c90522460a
MD5 dc331e6f5cfbf35be4136c3fb5a5a859
BLAKE2b-256 fab8b47a2126fcd7b6ec5831c21482f564e32e97676035362672042066ca0aca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c68078dcc411df957bf15d7e0f3d994b274ed6c3ece9066068ee65136ea4cd3a
MD5 24d91dad83a34acf82b210311a846fd1
BLAKE2b-256 1dd4fbe068a3093c3c186b4d200cd85e1906faf99773cd57a5bef4a9306e78e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c5ecdbf2a90d01221eb4d50c353aa4f8b194336b0db0e3b794c8c8a439d8c16
MD5 b96373df4ea94c72c51056b9d325cb50
BLAKE2b-256 e8cc9807157ce60f674c95d1c1b8e61dab7f7987868ae98932f397a8f83dbde9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3561baa73ddaeebdab95880204d27ea3276797b9f8fd1b80d626a15640cf0b9
MD5 8e54e78e489ea55b9d6ca41bf49639e1
BLAKE2b-256 08ff1045e53b53662b6d3bcd100b3b9130b1360befad2816c208e0dc33f85d95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 4e8d54b7dd5d82db17ec0239a0a7e6a0d67d00784e40bcba55608d2069ccfa2d
MD5 bb5ae7689747de3900b5459d7a530a32
BLAKE2b-256 22ec37a424f42bd7e2bba54be923f7ab7f2377dd3da73ec0b7c872ebf0f0c161

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9e17043000e8cb48238ce0507aeb1665e64056436f46997f73be58259657bcf0
MD5 3eb6d12ff978b9aac2e86a424617386e
BLAKE2b-256 a24bd466a4e42d2759407221cc3f085d17435fe65426c91abeae65a2fe047aa3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.6-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.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 034e7d726fd57dee6b990364520386829806c7f55af41bfbaa37c70183f5c168
MD5 0902556ba3e16dad21dab71c2e46bd1d
BLAKE2b-256 58d46fda50c0b25864474deb21c276cbe7d92abc48c3e57c3f61b57f28636185

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 06297b36a5882569bd9670ded66fcbeadfd213f590556c5fc0a6a256080daa14
MD5 f0f72c0f3d2000233cf5645d9452b691
BLAKE2b-256 a6c800d3beeda0d269cf6a8d8decbcf6cddd2ccd05694ae49d43f254144da8db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afd4c11d0d8c89ebda4f3124dec8153514a9a2f1df5aa69e6cc905194f570c69
MD5 6f49bb8fc309edf81bcf40a3841d8263
BLAKE2b-256 0aa73b91de95ea760271b39af21e9cd940b6065579bfe406d45c4f66220fde50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5288579ba80aad6ba1c614aa9d7dd457380c81922a3dff08d7228e35d8f64988
MD5 3913f4e90b5d021f513451fec48a26f9
BLAKE2b-256 20e205fa241233142e319e2301dd284fb1db2ec94cfd2d70cdd378a2ddd3ea15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 bf14e8863d08f046e8cedba8be5f8cd1571a85ab959df11b034f3f280673fcee
MD5 1f366dae48407338b41e0e55302feb15
BLAKE2b-256 12b347864be0c02ec78c0d474a449592b59013f02adf3cb771f4602d7bebcad4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7a8659130f87a43d948e68253d7b38d317879040c140868edc11537ccac5de65
MD5 53bffd644217931297de139aa3c436d6
BLAKE2b-256 b4f9d5ea03d76621e0c90df18b82a2af78fedff79f2f915035bd9026a303f8b9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.6-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.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4466c765ee92a5c130efce9ee910310789b51a7e03d04ad847a2b64679620451
MD5 a271288e40c7b1ab1fd3725514c1e06d
BLAKE2b-256 8c0242ca0915771145f94648316ef0612a3aae4038277bbdcfebc913e9e1b7c7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e95cda60082964df0a3216bd0895ee2e52fe78578c25e33efff6f9e2a13648c8
MD5 7c70356fcca074b40b1343f264d09cb4
BLAKE2b-256 4b779403018a1d1e5cd21da1557fd2e3050384b8bd9182e5af9cf2cf3ab76629

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68a73f0d943b1df160e81cdad75e403c374cf64506f1e7e462484821d624c3cb
MD5 b4ff8187824cdc3d608bc71582f2d914
BLAKE2b-256 c84bfcd3cf9fefdd864d78b974cde2e9c38c66115286b70481b88d656e396891

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79203e8db91c88ea8edc6a30443a1f87f8a3d2fc02d203da6fe4b992ebc7dd8f
MD5 7a7b4e0e9473a94de1f745db7d6995d2
BLAKE2b-256 e6c8791cacb18c65e866411d402f6d869ce5b13d909cbf5236da7dc68bc1f309

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 d8d0f8493a9438755ff4c71f114cebe0a5d45b18cee85b8e83c7fa124d2f6543
MD5 de035733f48af7c8c81ba467cd49bdf1
BLAKE2b-256 c011c3d3a5b7f036b180da7800a198f74dbbb511f75976755e4b9afd19d5ef3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 cdeb3832aad35930f924ef8d5a57643d10a75cec87f5559346f3c7c4e949b509
MD5 cd9de329fe14887678e1e28e6350ac41
BLAKE2b-256 cb3ed397a843bede506311d04c4c3dbe959b1368f92086ada4f5451aa6060a6e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.6-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.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 11cd7f67d1c1f26b6cbe3e374e44aa42d76b5c5fe9e4445d0f248fd881eba0a5
MD5 0729c6f3cb4799f021a40c360b9657e8
BLAKE2b-256 f4b8c4534ceb0932c877b6367a3deb7369b958e24f896c7b5635c9626e464940

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ff2dd491f9a3a11b3eba9bc5b9055924fe7c8b22bf4b0941342b6ef833f14a2f
MD5 d1819d7ede45ef77804373023da14844
BLAKE2b-256 64203db52ef70617d2b6dc267eb164d617153589e781dc827935c83957bb2772

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0033a71c0772cf17e145e4773e40bad03eb90a59f2b406af4b00bc2b087369b2
MD5 e10c6c137cc1cb893c27b095419ccd3b
BLAKE2b-256 3c4ef3da8496a99d69b6a076c3fdbdb07a278a130472abebc0b9f1f874fecb2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c2340a19dc3b829237a6c97d5f95bad9e7dfea09bf6500be0392978f8cabf1a
MD5 4a19a5ef4b98965c75fa9c2b8499546f
BLAKE2b-256 aa0fa8251dae3a8b288e98d6269d45f25cfd3b8164e89438c9bd264c8bffee3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 e0a00bb916c5cb8cde35b71d1192434153c06bcdc03f08741aeff258be4c6551
MD5 b90efd897d463cf47a36d288dad20ab7
BLAKE2b-256 819b7f57975aae042b59e5dfd3f3d5ea07752bf1b7a70de147781563cab07581

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f580d5e400be08a99c2551d32dcf3db500c3197009a430800c0a947f9e6a442c
MD5 6f7e2ec6be535120891d18bbd0072dfc
BLAKE2b-256 ffedc543737c06f717c81431f210d9a3ce2f159b8e887e8acded1670738bac67

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.6-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.6-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 19ec407b7e6f6380f30bc02fa3614296a2e9c829b5a81f22948c5de6e4f245ac
MD5 76c8afefc6f9df99177761868af9f9e0
BLAKE2b-256 f27929b67ec21e6d72a0fe3619d0cad8b9b69cd319cc8c2c09734a3b6114d9f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.6-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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f89bcc97f92465ebdfe57aa3d83be3a0ac2bb612de006af5a825ffecb247952d
MD5 c31dda340cee8d19bfab51f8c2ae1a38
BLAKE2b-256 84457a3f87493e102bf3dbde346c18f2ca76083799bfc10a8b00f2bca3b8fc6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b116e93a51affc5c4a8ebeec05a866b2a31d31e04c21319b50b1daeefe3c9455
MD5 76254d45e36a15835009bd30ab12d96b
BLAKE2b-256 5cfc078e245dd60830f2e20b5f8de33ba2d675d67bc43dba93d0b3290dfde513

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7dc775fcad26f82d1c61bcf2c5af0d6ecf1e676f0ca085d2a470c8f4029dba5d
MD5 cc42ac8217ac7e3fa1e9f17e269b9ea2
BLAKE2b-256 5cb7e7f34ed62470d9048cf8c62305a3a34ffacfdc0322b5b7f762d5bf74eec8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 01d4fa61b1cbe707279b39b371000e9deb69eeb2cbb9260dcfc7021fa49355f5
MD5 49d6dd3079cf9d07541b68df4a724db2
BLAKE2b-256 15a537f0adb980c803b6a2582ad9b94892f49d0508d8350448a80aa063bac239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.6-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 784b0eb3dcba2a16af4d33f5ead8fe9e1d7b6e206c38db171afb1465ff0dc6f9
MD5 bbd2cc8497f556b27a4af38d9116fd3e
BLAKE2b-256 08117557694db4d62311cb06c2d1b1b378da80f2cd9bace0ac6f6a2870754a9c

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

1.2.0

37 files

This release

1.1.6 This release

37 files

1.1.5

37 files

1.1.4

37 files

1.1.3

37 files

1.1.2

37 files

1.1.1

37 files

1.1.0

31 files

1.0.0

31 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page