Skip to main content

CriWare codec and container library with Python bindings.

Project description

CriCodecs and CriStudio

CriStudio logo

CriStudio is the desktop interface for inspecting, previewing, extracting, editing, and building CRI middleware files. It is powered by CriCodecs, a C++23 codec and container library with a standalone CLI and Python bindings.

Most users should download CriStudio. The CLI, Python package, and C++ SDK are available for automation, scripting, and application integration.

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.

Download

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

cricodecs-1.1.2-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.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

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

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

Uploaded CPython 3.14macOS 14.0+ x86-64

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

Uploaded CPython 3.14macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 14.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

cricodecs-1.1.2-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.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

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

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

Uploaded CPython 3.12macOS 14.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 14.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 14.0+ x86-64

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

Uploaded CPython 3.10macOS 14.0+ ARM64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 14.0+ x86-64

cricodecs-1.1.2-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.2.tar.gz.

File metadata

  • Download URL: cricodecs-1.1.2.tar.gz
  • Upload date:
  • Size: 704.3 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.2.tar.gz
Algorithm Hash digest
SHA256 3678dceb63c1471371c28c54b2726cbf39f6812558dd3a7ba89a74649cbdee53
MD5 299cebbcb873f2653d4ad75f44e79c1b
BLAKE2b-256 f445d3580c0923193622fec79c353091c8b7c7ec51aa1702aaf05e4bd4b3dc9e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.2-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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f68448033fa38a45bb2ebf1262ad995631cf929d388526bc969f4f687d285c1c
MD5 1087d94881309b01fb8eaceae55261cf
BLAKE2b-256 89ee856250d22fe963c197c125bd504d0760c4a7e1ceff1dd4e6ee3b95a64518

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.2-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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1e84f4247794618f5acf805ac6480e641c78f1887c37714544662c631f975051
MD5 1d0f86d0898da9873c5c6a5e43f19b13
BLAKE2b-256 9c4cf95dc026cc284330327060b3e388309b6dc5b87e59b1439bce9fd0b1426a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b664538a9c579666b8c09fd54e496a46e05efc5f934055973a43f312a20c867
MD5 59330fb1c2a2b55f71fe9c4cea5ac571
BLAKE2b-256 58afbd2193cce320e9effd66f2295afd6a6cc066a0ea7da5cb1fd15b03bdcb1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df3ec20545e095a5e40e4df28badb0c63cf0eebfaeee60fdfb41469c973d4ba7
MD5 d5f490b1b205a429111d1c11688a8e73
BLAKE2b-256 1270050d8e268ad2a5c90cd5d2198702193fb5df2dac6d354d806999cda50a9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 f2aa7b0cc7e1751a342890ad19e104522e1b85342b9793f7a491bbb8f0b7578b
MD5 08532a2599a00ea87a5b2c4448e6672a
BLAKE2b-256 b797bb396b06c804949208a5c84be32476e883eb8db0e4ba31c71febf430cb91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 22ade6b9313be5143b64cf6ee87f352981212563fd64b6371e9306dfdea07ce8
MD5 69040d49b29f7ce0022780d029b61dc8
BLAKE2b-256 2ff080f68c1def85887cf88bd76dd54fe3c2d13c71ddb9bee996bae53da7e5c3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.2-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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c0be1bf0e3f152c1f81d7853e74eb9841e18f6c0977b703d00be5a1e2d77bd9d
MD5 46d7d41a9a58243aa856f47dd6014339
BLAKE2b-256 46e13e1b78f0307d9fd9e5402846bbdea0101e6fa03d46c4bfd5327273c9fc1e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ebab80a938d853ca870fd97dcd02a2db240568f34eb6a5d399bac6ebaaec4e4e
MD5 2aaf2e51f768fb6ee3ee5b411d0378ec
BLAKE2b-256 db78878fef5a06f653fb5dc3799d1c12f549abcf7e8957892d3ef12105a2ff72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 588f460645db4a1f0c36fa22752d5f41d9e9887dc5c6fb6c810384942045821b
MD5 6cb9d1c639867f07635e9b5cc35ba44b
BLAKE2b-256 889de4fcfa70f51c5dbe65837594d41badc5c696c2e9ef10f389ff50a6ff822c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15df6150f5ae457b7b5c56d6839a91904dffcb9f0a89901cd3084fae1b6af805
MD5 55ef00282c853d5e78fcdf85a11bc848
BLAKE2b-256 9313b2896b6e9ca15e59d2c77fe1f30c592fd688815a1b645ca135ea9396531c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 82c8bc6d8573fdee034425e150927a6d00cc3a009d0e1af7f2a32f5f56c12bc7
MD5 184de6e1c85fa406ccff0262100786b1
BLAKE2b-256 234ee4cae3fff45fd50075b71bdc9a16ad457383e48d7a323a5097e2f395d4df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 941b3dc681d1c3615d101ea35f08c805259654447e38c71d51c1311abc4d8f37
MD5 038ade23fcc170f7ef70eb8738f9cb27
BLAKE2b-256 09040b80020df14a1a1219718f18565a73d938691c52fcdf1a7b51be1dfa005e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.2-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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1ddb90a7c80586d33abf3cb40294cc6005a72a635bfa3f08a6257821e1f8bbd0
MD5 fe52ca29567539e3b8bbfd5c9f97f3fc
BLAKE2b-256 88852ead0512e2df86ef408e3315777694c70d169cbbfe358a3c20be6ce859e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 be87b928869a33c365e8da57f2929872997b24e7d97d50e90a8272bb83adfbb7
MD5 aa3aeb8be355afaa620e8b25e4d94cef
BLAKE2b-256 818fe30fffb852213e3e840b933c4a542565017500b39a02b20cf56c6720dc3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a38022589a558bc96ece6c695dee8c39e8068ce67452b464257dacc232e83e06
MD5 9b31cf6a30b50a0508a4385efd386852
BLAKE2b-256 49c473db8a683a6558e4d74af47abf04568502d7f25d2ef10fc6ea8902513d07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ec8fa2ca843282bc6cdc976238ecdba5bc766d3839127d11147bb2b4b4af837
MD5 6339b3acbe2d4683610682189fbc2f85
BLAKE2b-256 186909bd4ee22d15c2c65e95e4173e7fe3b4f4f10b3a7a8e258a579c2b676dee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 7f1498c8c37c8fefe119114a33722e47c657d2d2c34354523cd9643c17d84b7a
MD5 ead6c539ccad794e36bf731f1757af0a
BLAKE2b-256 ea51290557cdd1629d592ccc7e8aab87a14af2b8aa3cf20a3bff4970f64a9884

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2f83e44bb003071cd705e1cae3a6a3813e8dbea5063e6153860fcd1074408f17
MD5 020382fa8e32647660b42e1b30cffa51
BLAKE2b-256 65beddb0ffcd42c4e318b3a214552001aa1ed3d2367a8096d043af4d0f3eb6a9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.2-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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2196655263a8d71b98958ab4723916ea9b380c06d8ba309d98fa67a81c105566
MD5 b1b2fc024350a037b5ff1efbd2a8081e
BLAKE2b-256 8d41796369f432ff4ad3133ae363724085c02d7fbfa7a21ec800ba0b11d759e5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8124e77cd0a83c9b465a4d0a184442c8299d47d68047a71c6e3a5a8b4f2eee43
MD5 58201855ece766d32e600a525e122cb3
BLAKE2b-256 24ad47f10e7c63c2561426a77efc9bdfa9a80b2f76092445c020017836f30ee4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c0cc2cd60d2f88276a9bfb1cdd8f9c22cc4c3020f7f9e1ede10fcabda1a9e64
MD5 07c839e870c246df684adb63c5b7480a
BLAKE2b-256 4aec40c453f605e390d62062d6d1a9f838d1fe1644a2ecce43b1ccf5f5b5e527

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 835ce80f6e3b6f34c7ce4a472e150db8b61c299b7df1e0d4c5f83e5ab97f8da6
MD5 e1ae638528bcc796513287ff7a6d4e91
BLAKE2b-256 ef2c42b4771bc20febba982acb894f40d6abc0b8b2c893291e64edc668fb5bdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 aca07dafe0b778cb6c3316458dddef4d9187757ac291941e069cf0a22e60c386
MD5 329d4c37560a5df96148ac23759a127b
BLAKE2b-256 f07df8fb562ab3a7b29222d6238890fa6790c14c4ace38c0c248335191b7c96d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5686b6211ee942bffb5219ad8b1f3e1315587a79ae229d114be2182fec700c73
MD5 b616837b1ee32b1c724026e0e8806b71
BLAKE2b-256 d8b8f86792d0f73e746a407ff6821107ba803b72119c705b9859209fff43f807

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.2-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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 1ec321a83253efd727d125631837eaaeefcd918f625127dcf20c15b0e48768a2
MD5 66600537601acc37747150e31c9fb660
BLAKE2b-256 77629b91e6a4f68c150cd7577815b63d6dfd1b473e8192f2d327b36df988752d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4c8fecb48459ebb1e94185b738e5ec71e41a4d8e4af702bc228de5ace0e7a48c
MD5 3dafe59322b3eedba2676bd27641ce33
BLAKE2b-256 b0911793ea449e373ed334f4f61dca3e0da4fe9a0494eafe0b878e047fa45334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d5acbbf4ebd21cf980ee23959f2e4b3f49012a66552b6ba9aeefda7eca486de
MD5 65da78d4e616434451968895a26f13ca
BLAKE2b-256 368776d2b90be00be781eea5d68cd485d0c4188fb6241106f5b9e190cf1aeac3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff3cf724a900b844ea314dc443beb9634baa10ac20c83538d3dd9a55df710e9e
MD5 0be052d64dc55ea2c30f9293094fba9d
BLAKE2b-256 512432467cc63be8224ed72971921461e1a364f4c3ef79fc9b71f648156cac18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 e14fac00602cc2b98453bb5fa9d1ea88d518585293ecd1dda5d3913a833373f7
MD5 43a14701b644f75efb326058d968fb31
BLAKE2b-256 5d0a6ac58675cd9cb5dda1ba53bb26d4a3e21526887dfd4722919f2813aac71d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 fe0a95651ea1923d1be6eeaf9c4dedbac7328a7c1acfb6fea06044b5703eb6b4
MD5 67c5b7efef168e1e1ca09e950a2367c9
BLAKE2b-256 76a2958f8f149ad83b2bb3a7e80d4feded7338a9f4bb53911ea72df58ccc7520

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.2-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.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 df11e24f3c3a30de0d64ddb744c17b4a8d353456daa936ddd5b5d4f6b4104162
MD5 e218665450d052a7ff47b63e528ca893
BLAKE2b-256 998a3538c7f3f3948d87ca098324d4b90699b0435f87b3632429a739a46fc544

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 825f2bf59b8e451904d79c79b73a5ece38622fe65a6f70b98cda709750cbfa62
MD5 78207e7d7296cd4ed8f670aa02315be0
BLAKE2b-256 a04b5150b998937e8b625cc3667b4a69fc5e3b0dfdb345aaebba7f578f7b5827

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 989b9f4229ec1df84cbd82416a6f0f0205c1e6013a40986be99d32f55d3a671b
MD5 ff616efeba144d190d4b9efffac565d4
BLAKE2b-256 c45409a6f5aa9ffbef9f6d734fc72abdc001d665117eca6d600b71bb583b13be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97cd3d00c2770a46dc87ab63773f7357a4c6194e099c653e6e9bfc5e04b231f9
MD5 f7600c6d3b81c2718c391dca164d40fa
BLAKE2b-256 52adfc393d64da9ef20faf2dc10b173b0a37c46bd240a5a4aa228ac43d8a4a25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 8d9663b6806f012967f5451f2784ce6b3879d39f44dcd57e2d027397d6011254
MD5 985d2097ef94ea53cd09f7c9e6f56ad6
BLAKE2b-256 9bca243157d29af35adfeda328e5eb8d3d3686342816d52f94fb60309d8b016c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.2-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3fe2bc9f23f26b5ca8c98e07631e15dbe99e93d84aa191513c44775b43f1e40c
MD5 42b78cdb4049e44a24eba13d1c01035c
BLAKE2b-256 7807bf7d4d45408c5e84b679d521dc0af00f2f107a33607a00f4b6451ceae3d4

See more details on using hashes here.

Provenance

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