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.

For ACB files, Browse changes the archive switch to Cue / List. Cue keeps every authored cue visible, exposes selector and static path choices, shows block, waveform, AWB ID/stream, timing, action-chain, and command counts, and automatically renders the selected static path in the normal audio preview without a separate render action. Authored audio-bearing infinite blocks use the normal selectable loop-range control; empty infinite holds are omitted unless explicitly included as finite silence. List remains the flat waveform view and extraction surface.

Decoded ACB extraction remains waveform-based by default. Enable Edit > Extract ACBs as Rendered Cues to replace those flat outputs with the deduplicated static cue renders and their selector-qualified filenames. In Cue view, Extract Entry exports the currently selected cue path directly.

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 Cue Graphs, AWB, And USM

from cricodecs import acb, usm

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

cue_index = 0
print(cue_sheet.selector_options(cue_index))
resolution = cue_sheet.resolve_cue(cue_index)
print(resolution.filenames())

# Choose one inspected static result; named selectors can also be passed to
# cue_sheet.cue_plan(...) when the ACB provides them.
plan = resolution.plans[0].plan
plan.export(cue_sheet, "cue.wav")

# Flat waveform extraction remains available separately.
cue_sheet.extract("sound_waveforms")

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

Uploaded CPython 3.14Windows ARM64

cricodecs-1.2.0-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

cricodecs-1.2.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

cricodecs-1.2.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

cricodecs-1.2.0-cp314-cp314-macosx_14_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

cricodecs-1.2.0-cp314-cp314-macosx_14_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

cricodecs-1.2.0-cp313-cp313-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows ARM64

cricodecs-1.2.0-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

cricodecs-1.2.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

cricodecs-1.2.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

cricodecs-1.2.0-cp313-cp313-macosx_14_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

cricodecs-1.2.0-cp313-cp313-macosx_14_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

cricodecs-1.2.0-cp312-cp312-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows ARM64

cricodecs-1.2.0-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

cricodecs-1.2.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

cricodecs-1.2.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

cricodecs-1.2.0-cp312-cp312-macosx_14_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

cricodecs-1.2.0-cp312-cp312-macosx_14_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

cricodecs-1.2.0-cp311-cp311-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows ARM64

cricodecs-1.2.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

cricodecs-1.2.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

cricodecs-1.2.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

cricodecs-1.2.0-cp311-cp311-macosx_14_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

cricodecs-1.2.0-cp311-cp311-macosx_14_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

cricodecs-1.2.0-cp310-cp310-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows ARM64

cricodecs-1.2.0-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

cricodecs-1.2.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

cricodecs-1.2.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

cricodecs-1.2.0-cp310-cp310-macosx_14_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

cricodecs-1.2.0-cp310-cp310-macosx_14_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

cricodecs-1.2.0-cp39-cp39-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9Windows ARM64

cricodecs-1.2.0-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86-64

cricodecs-1.2.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

cricodecs-1.2.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

cricodecs-1.2.0-cp39-cp39-macosx_14_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

cricodecs-1.2.0-cp39-cp39-macosx_14_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0.tar.gz
Algorithm Hash digest
SHA256 00e657c6ec4f95c552bd69066b7c3b7825ec44330616fce01b4fff626e9501b9
MD5 80feb4b930adc21bcf11a7ab99a3fc5d
BLAKE2b-256 0bf893ef405157e11c224f1bbcc9d91c9a42b04b654da1931f0bdd31b79466e7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 98e54a57a566b60f23ca617a41f3d5ac96b294d9a23fa50bf17a1370fb13d7a4
MD5 15579d5307238510de1adf1d56267a8e
BLAKE2b-256 313c171d784cb5e03c46112ed1183c2757608ebbd847b38712df070b5b656dc2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d3939e8bf7363c5aed52fe024b917c89d7c1c58f6008836966f3027ddb27ef18
MD5 d9533e5423ce6431a47b0e6ffaebf461
BLAKE2b-256 f12b7c79373b720b16a592c16667dba0bad3ebf9b91a5253563e791081446f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afbe3c06eb3bf2700ea176e1e4bc0114e7d9bdbdc4ff89f9fa31d4d41ba66743
MD5 580db674e5a88ae269263e24ca29d183
BLAKE2b-256 681ebc28314b594cd7f8c20aaa6b0bdd6727b10a04c4740af4c0139fc4dad3ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8236ef59fe851f634a6f54cc0c2ec2de8980d49bb75ab2e85386e2c056a1c5f
MD5 c41d9e86c7ade9265479f98ea7f9fe1c
BLAKE2b-256 e5c0e2e84c1a26ec76cf2b455b18fee08eb42dc4e93d7fcbcd5df0b9f7da383a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 0c652f64ec8875865d4779e41b1417a39e3a5a62a1870c4b8737ebc486ba1abc
MD5 8aacfb30e905cb38d6b07b59de49f3a7
BLAKE2b-256 6af0b060973ee76c2a12527c5a5b7a027515a5294955ef372c8d8bd61eeac793

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c907fabf8d5fb86ce3d9b59066dfbc7ba81513d3a1c340b9ccab5f6fef850840
MD5 917457289280e2193528e7ec5a4dadab
BLAKE2b-256 5e9beca655f9d50b2cfd94c4e572a80a6ce3643eb9488a8aeb4b3ba053fd889f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9c87a72111d02360f3702a79f66c3ca8a600072782b25c86f481be27d54e42e7
MD5 05ae378b14a59e3748a5cd04c79533fe
BLAKE2b-256 1a676c35812d47fd34a1be07635f267225cf6ec103a45efb20f5b2296428c013

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3d98259c42a0884744172f4e8330827b5ef8d390369ad012d9f060bdf228ad1a
MD5 b95ea451840fb7e96b2ceff8cf49b39d
BLAKE2b-256 dba2a5a7a6ad8a5dff41af358d11c7fe96a9b96cba6327abf4da27b3c4064d81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 931532dc28867d2a6da0b2346f8d48300605d33cc47af6e3783e2133a7e0f734
MD5 f958eac3f56c3e3c03c4c366c3b891ad
BLAKE2b-256 4d5a0c7dd9b12e9592178e4640b285b979d7590a4dac5190493f475cce150f09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ecad5c1811eb281cf351c50a6f6150a2be1fb9b0fd6ce24e6269bbc65ab867c0
MD5 052f983c4e5de9dac9c0484f56342dc5
BLAKE2b-256 92ff4ef8c8b5affdde401cb475ff97a81e794cef9f6325ab4ec0f7b7fb993d79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 0e03f1c9024ddd663765e40767dfe5f811fe00207088cb79b214f87fcfa5740b
MD5 3f3cbfbdb2f6a38d5bee0a095db69390
BLAKE2b-256 f2a07b6a25d86c0a2f7c20d5e9f7c50ea2520c4db447ad68039d69666a2b1497

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 015b67b35075869437f3c95f3d28948622bbdd6e9efe9232787008a4a7b3423c
MD5 0cccf03eb7f9131a81d19bad9d7ecb84
BLAKE2b-256 b1ac86f16e30c087aa014971c6ca2dd94fcb32c99d6cfddafff890e05ba45ef2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a6b4ac30f9d351db0d09e41582e50c713a0a179c2ad153299436e0e052316596
MD5 e6b40ffec85ef8f021574aff8fdedc65
BLAKE2b-256 9088caad72d705cb44dd353d230adde3503f9f365a71ffc7f93e3b26b19ea6ef

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ee6cfab8b17fffdb6fc0be73769b00b23ef4e5cf4839e698da564e305927f5f4
MD5 5daaac21eecad571c26b5a4fe94b0306
BLAKE2b-256 c89dba8776e6cdf753c88c5e2119a542207d0b62c27a7dcd052569f20cba729e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14a5d3f80d1ed40db38272cfe5ea1f9d4e998a038b8f3e930250921377fbb0df
MD5 57f0d352003ca62882da540d0b36e8ae
BLAKE2b-256 dced698e3cb74595eb03c9ce76e5af40752bad1598954670ecbac4c8e8700551

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fa9fe97e7dd75aa24c8d0fac6b0e2ed4858dcb70da115a3002dc4956fe14ab5
MD5 3c71da20e249156fea3971ee2af11911
BLAKE2b-256 881d42dd1301473ffb0383006022b3d3b676561e3e89c7e33da6e1697b0fd96c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 db645c8b4e0e5622525fc91faa46def1695fe55769aa60472e3975961d0b2ad0
MD5 2ea7823ee35e7a5f3ead1d97a4b2ff16
BLAKE2b-256 5d6801a5ad1e88e43364c8e6aff1e321de948200a4bafbedd35ff0393944910d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2370006b5ac7432acaf9444c7690ce8dab715a0e69c4dfb31b9865e00f45146c
MD5 3f203b3890d444ef38828815fd3046aa
BLAKE2b-256 5d97f41a3c61afe3a26d108877cf6436e069e74ac4d7ad6127aab21c47372de6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 63003623565946730e5a084f5571e2480ffe66195955ec4dd0ee210e38b7c007
MD5 09c677d78ce68cf2cfa570a1a1a6a8e8
BLAKE2b-256 1e6b32bc7a9bd0f7a0f180992d85ad810f69676bbbe62e360dabc1f38ebd6f98

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ace3269a6d156fe8737b3e06ad3e80cd8c4899c3bc8df208df6314ceee4346de
MD5 081cd2be67c7fbfa619c04f5445d6f3e
BLAKE2b-256 630ae025145fb178acb1f840f435f9ee862a79f3e3b8d38bf3aadb2809b42107

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af915da1934d95621f63e8d5d6c02b392ea6ddab8a0f54a95ede70a958729b13
MD5 1e62ac7c01fb533ece509761ee054bbc
BLAKE2b-256 e3b0877633772636fb4923521bdacf9831382b24f832b6a9d07479c1324970ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2bb0a5ea67868d20aa5c0e7fda29ae5492f97a430a7b25a3b105673b3b78c62f
MD5 2401f90d839b15924d0fc11a2be4879e
BLAKE2b-256 325dc6449609df0db299ed638e6adb899492477f41b971c9be5595a1dc87ca11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 cb7c46d8e103496e3630ca163cbb3dccd12d7ad481fb5666ae67d1b2ae947d3f
MD5 be3281515353d8be9f0925a6c1183456
BLAKE2b-256 f45484a61df00c9f0ed67bb85001f68d6b0d9461c925cee799aabaf24fdcd523

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 97409f2ce5a9daba079afbb1a8f8c52c9e456d0d4563c384d07a3a6eaaf08a6d
MD5 dd28ee7af2c51adbe1a8c3796abd89c8
BLAKE2b-256 121da614435e069004c18f57398623f80354e85a60862c0f5e5694c0c02a62fb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 45ca0143956ad692a45096c4ff7e8ed1d9b637f99c49faeb9cfd5507ad07312b
MD5 e4b217edbc2446738e4c16df92501bd5
BLAKE2b-256 ae2b90a01d92472215a3f2067b81130807798aff4e71841c4bbdd7110f210bcf

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ba6a1c67b89f6c99bf77fe05b0cf4e67f37e6ed0df18e16db2faaac53876e78
MD5 65161a4f6a770d23b9f7b65d33a78772
BLAKE2b-256 ff33014218eeeab6eb07a146d947be1bc6e4d7616406920802224c7fc112b9c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aebd45f2249428b06cb67055a25da22f2881e7f39564f98119d50b22b790ebf6
MD5 648db8dbca2d21ce02249e02c4fa7244
BLAKE2b-256 aeeb0e4e0d67807b60770a55dbcf81c14c56dc49ad5a02aa56063fa7a8a3f236

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86511a8bb77f0e537bab3dcb849a1de2ddacb9250345d0d84337676c3e75d54b
MD5 7651999d99b7e2fe6e1e1ca409272764
BLAKE2b-256 01975de39785e6820e97a0643da8b157dedcbcf10ca446b55d1b1a07edd2ae77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 8c1bd71b8c33925bd932b3b845d1f47f7bdc255be139255479bfd7283e6e452a
MD5 9cce44400abaa53947bfa34b4133fd8e
BLAKE2b-256 5835e499bb3320434d9ffc44270d510a6dae73450c9a418c818b189f0b2c7c0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6fdfe91fc639a4757c53b6e49883bdfaf30c62187b17c14a3b1234f8700d235c
MD5 4153cf6ae180b2656e4f81a7d0e2a143
BLAKE2b-256 557414b3c5b584daa018a76aa6e680b06e66db3464b79003b145f840f4aa7c78

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4069b457fbf671e345712973abd84ddefc1bcbef3df55b6049bee0f72e616e87
MD5 2a9697b9f35244d1fb236f966b5ec687
BLAKE2b-256 383398b2cd532f9cf428bea352fc0514b29967413871863a3be223018cd2ce92

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cricodecs-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 73e504fc10792c74972331604b53b48e88cebf802ee4b6c069d0fdd38cddebdd
MD5 c2ab797871bf18a34b2dcba08a104d1b
BLAKE2b-256 7b9ec87de4694a36de20526c3b48ef5c54537b5ef6fef98e07c4d0f97b0f042e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32d4f8eff9b7a140c88d2ec1dacb05ceff14db6b5d94e509122586dca92685d2
MD5 f9b6d4821a802da38dde07e55726dd06
BLAKE2b-256 46684abd8296d8c80667235b606d8a0314430ec16399833b3d19a305594d87be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd88a19a92da3828681992108befa82f2aa769511cd4dff8736999d2360dc17f
MD5 02741d2cfe63c3002a6b3407f1a08a21
BLAKE2b-256 b4e858a2568d8e80218efcd9dbf9ea6bc06dfc1283237cc23971f90ea703149b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 14bfadb20eee55609c3586812ae78e7b487e45028c706860accad8191e0b2df4
MD5 28d743f14feca94ccb6036454a993d4f
BLAKE2b-256 a012bcb29d6aef5f1841eaf28c8c0ef2a80fb6a6f730904ebed0ac5d62f3fc51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.2.0-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 52795a75cc2747cdeb24cefda600f696f2c7d34dc175c9cf265b10566953e358
MD5 52ec771a7b193756f6a0a83c18ec3d88
BLAKE2b-256 c3340fc088ba4e05e64c13ee7ea90b398b3dc708d0de1f55950329d6414ab9fa

See more details on using hashes here.

Provenance

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

This release

1.2.0 This release

37 files

1.1.6

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