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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 14.0+ x86-64

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

Uploaded CPython 3.14macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 14.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 14.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 14.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 14.0+ x86-64

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

Uploaded CPython 3.10macOS 14.0+ ARM64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 14.0+ x86-64

cricodecs-1.1.1-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.1.tar.gz.

File metadata

  • Download URL: cricodecs-1.1.1.tar.gz
  • Upload date:
  • Size: 704.1 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.1.tar.gz
Algorithm Hash digest
SHA256 96280e2be1f123e954607f61f08c6632d80874767e47a3ecdc99b8c8d7e25058
MD5 06eb03b36cdea3a2a43ec34739cfb207
BLAKE2b-256 7cbed01e60977441c03532eeac3262d176dfa7ed0b60fbac6a4e7ae1a24dadba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.1-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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 423d695ed74f2f0845d40a9dd4c16d02f6017a7e5117ba8c4630f91051c7d558
MD5 04601a89dbc9718c63b9a8fb0e8cf743
BLAKE2b-256 ab7f2bb5697d3fbf90d4d10555e58cc51acf525a1d72d52830d8ffb521f32d63

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7545161569e62b1b3fc82d9dd2297d3a0fd5de375a943d46f90237af21b84c33
MD5 38df6bfaf7420e299a81f1cdeec58fd3
BLAKE2b-256 983793d71632b91811e6f6ba6d074acda0f667c69ef6720e4238feb136723808

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5acf1a346efbc984f01cb6d50ed5f605658d048d86df4e68b623c4f180eb2f7
MD5 2b8a680dcc777442fb02fb908944ca76
BLAKE2b-256 b9fdcff07e1e6995e86c495a406fa04f24244903627a0d02696b43a05f980f61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 288005890b7b62ae9da83c736292135b276666dfd74bb3099385a3bea78395d8
MD5 bc436c1412b5e53fc3eea5aaff596688
BLAKE2b-256 f8477b8d9649af1b402a73a03091e47a5b1cadde83cc48f41b7ed639565b3f6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 ebb0c29f98e2d1fb955ec94b246adb3d38ceafa4058917a6658a940acd6bf851
MD5 3d88ed0ee7644c054603f51908b25f9a
BLAKE2b-256 30332a0c4967b6818d029e5c9a6a178d0d07e9f67d2366f2498e73cd94c4969a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0e959c2724b7ff02205cd12a8e2527f83eb591511308b99263d1d5cfe64ead34
MD5 f9a301ae884a980d34349552dd126461
BLAKE2b-256 8b9182d00412e46adc9ca7a107c128343c19d562f3674f74b8ed6b6db7d47383

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.1-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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 78b22ebcd9250fec0e711ed9ed1be7cf6ed5e77b13052de06df59767cde3b0d1
MD5 f917910baeeeb57222653c6509ffb371
BLAKE2b-256 7ae5b943373e33367001bd06f6d5d065ea95180da9df64a943112d9e1506b80c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8a1427a88969f2e46c475ca36ac5e68071fd1d0fc3dfa8b840e37276c7cff367
MD5 68e3924b243f406e7b24d7ef2c98c535
BLAKE2b-256 a1c70d67e4ca9c363fd41efb7634ce6e7a69681162567e49ffe8df833c8bb420

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 846de772a3110dbf3df547edcdb512ffd77c31c8831593a9796808e2464b5e47
MD5 53844593b4fa9ad4f65beaa440f92a14
BLAKE2b-256 ebee03d1100890e3471961d299c5aab46b9237c9ee0c9ab59b37c58a006a693d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0fddf61a689d5a232d8a25bfd8eabfee6084d010313816fa16811dd56dff352
MD5 523ca0236183e2bed0a17cf0a5d0fca7
BLAKE2b-256 2a3422a08cd00cf018ed9855eec94d508239e0210022629fd2ce8fab6988b2cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 32947cf297f9c80a2386957f8189c57341c0ba32416256537baefc98c9031844
MD5 c97b83030c63f682cf82b9edbee81009
BLAKE2b-256 6e10c09217118309693288502742dd1f508dc3c63b5006c5bdc6828ff627d362

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d7e4e5e4be435669a911c5be6dcac011ade6f2893d643b22880b9ba7b5f96211
MD5 84e50517f39e8a35b415e48fa36685e3
BLAKE2b-256 fbdac94cdf61889f61a7efa3e53ad5fe73e1722735195b08b678c29f416500fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.1-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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0c75775d8116076ed19ecc13df0dfb766a43983173e06a14349de5e5d5dc4c1e
MD5 fd9c2972c51e3c35ea12f43ca821deb1
BLAKE2b-256 d22d7d8f687f4cf52e1d63f3e6dfe1aa412a9eb2b5e138eca78fbdbd46da0834

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a28722edc1f42f19b011820c54a10b51ba6b682b4483e82ece46329f8d1017a3
MD5 0d762355eaca46b5cd5eb33cfa8efece
BLAKE2b-256 cb6cd0765c542a482c443f05239c52251907abd2a16c0a686bca19cc8d4b1e2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26c4441ab0481bb90a76683125ea3459c746648b6fb7e7368bc75d3d307823d0
MD5 d605f88110db3318d6b40be1cde00203
BLAKE2b-256 b8af804a2a0341ad48ef2141ccdd87923b6f5cef0421db05839e7fe977db4d97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c20f10fd3a443f3f0dea4cedf4f8520d50355091fead44059614ae1ae895125b
MD5 5929fca489d3b851970b1f4e9fc18d05
BLAKE2b-256 057c29dc76f899b4c49be02471a7159a81d4593b8154961d2954f9aa1e09fb32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 dc14a974c8b2bce6f5fa1eda30f82f496693f58aa16a0f44c5cfe337dd11fc51
MD5 216b16aef1ff67bd4c0a85be424e2671
BLAKE2b-256 bee2ec26ea8b40f350e59a90de7f5c013bac6c3b5be482d670f00991d3c7c9eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0d1f1615a2a8c9f87b43bf067846eb3079ce2f6601769ed11f9b241f638334f5
MD5 732f80d44b322a00a6f2c74de32f7230
BLAKE2b-256 910cfd93167bd2b469201bd1d4a816163b95100c453444b39ee60a1950790baa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.1-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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 39d65438ae14ef325ca922bae8f82c9e58683ae9ca9adeaec8836b12658767bb
MD5 74c6ae80773d538f6905432ccbd2658c
BLAKE2b-256 28229f3a4298e3d0d0a66f6b5caf68e70fb387fcf73524808a070ec5bc551542

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f6e61452f61cbdbc92104f27cf353f793e08442c42ea3c95993974ab437fe302
MD5 f52c30874129fb53e958345f45ad62fe
BLAKE2b-256 b00abf45fef1c1a79a04ce7738c7ef7b042fc4f66f0bbfc7d6d4430d513c755f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a51934fb061150ce7ab2435b605cd0c61dbb63231ef1465cef04821fe3974c6
MD5 8911e4767b56292b43d0d8651bc81ac7
BLAKE2b-256 d2c8bf78f0285d46f8896773ed5b7c3a19cf284a967e82a26fe85a16c443ac62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be85b7ec91b04fd1a11ba911ee488de59b11a71f469b2858196b75ae94ca0c80
MD5 0178d9c95a52d65a1c92dcf2a74f202e
BLAKE2b-256 d8a83e2c9f0a403482cde23fed7f7e602271e1e818e5b8ea43fc60b42e783041

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 3dcead194adf341e64de1e4f76eab5b1a7cc0e78aeaa9ee4acd1886d18e89c0c
MD5 1d63b46ce034ece6139e5fe13e82b431
BLAKE2b-256 3221e362deeae7af8647cecd19295b6925aa9bd4bdd4730f64bf2f64a60da728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 aea814eb550da91bd4327a0d2528679898fdff22ad3b1cb998232e7f36a19d67
MD5 e6b565d0952a595f2e8dff2567f6e2d3
BLAKE2b-256 38e9d8cd12f77a1d6de5cdc8c9a7b3d4acb16c02b6e53f36940cfb208f5b4b67

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.1-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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3942d09b7a6777b0608fab08d2d0a84c33e4fe8a89a3da5c7574d3c9b9532a13
MD5 e7fe3c55cc95624c70e30e7eef6afec7
BLAKE2b-256 1c24534378e9b0603b0a465ab62395c5cd5c9e3f18ff2e76013bda28921031bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1515f5971465f56de0bc03ce888b52aa4a25587f8914adb12a7457c34323a7db
MD5 89dc55cffffc89e586adeb4ea4cf82c6
BLAKE2b-256 787267785a87d0f3076886078f26d8a799dc128e499fa8ee3ac7f78ccf142c6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf2132e78de42b6a0d0efff0855396c7d0f5a79fc49a9e4c0ac56f14ac2bb213
MD5 b5ac10f159da09e38bfaa1fc67b22929
BLAKE2b-256 25da2024fe38f824bda4e00a53721d94518549f27d435568d06c3c853217585c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 513466eb415cb66fe8f58eb782926ba94e21548704a20679890af7fff58e86d8
MD5 4176690c9e62eab2ed5212cc1a325b60
BLAKE2b-256 55524921381cd655818d842fd722371a4937db4148302575ea1634517e8790f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 d63cde285f56115d374235692fdc71a6208490520d4d274e54104f890c9a6df3
MD5 0742ee58497ba72d25105dd7ae90e824
BLAKE2b-256 e41d4ab043d4a093c656a59ff7b8ac955bcf48545a4f3f64c36006d183a117df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 aabb2cea5e932a27cf47bba9cac49821a2d9c3c03d3442601ab77dfc7e29b9ab
MD5 86260cf9e0d06a7fca6c438d9157e0d2
BLAKE2b-256 8720724d7828b1f6fedaf6c2eae5624f108764d1b988d03797855dfeb17bf69c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.1-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.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b5464a3e7264e8174a669f9b6e5f2557caac72e89a5fbef713fc96c42e099227
MD5 5d02b5b8ffc7b2c103f7a1c9edf684ce
BLAKE2b-256 9f3a42dedf68f0fce488e88db29ea2767fed5be4dedbbd9c4697cbdafb59a691

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8ffd421e0bc8d4da05a07ac100efcbb71ec18362b27723327adda01e953d4d02
MD5 839c8dc079fd301ae9cabb202b97dcbe
BLAKE2b-256 80f748ef56e26494538a243a36771146ed17ea39043e51d46e6597a5a905c801

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aba98e3f8d28924e91a337e693f3a5fd5840cbfe81f0bbb4aa60785529ad16c8
MD5 1313861d56c40f5c06bb68eb930340a1
BLAKE2b-256 569e52a9a7e345eee845d237408c42ec50efb29a014f1fc56966a0ec9b3104a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 316a29b9ac7e410f2994c4efcdd2d7c241bd7d64e9852a169b99bdd80504c152
MD5 2928f656ecabb78e5029f4d3c4166a80
BLAKE2b-256 07ed722ba90b0022a21181f9bb3e20890310d46b3c904ec0a44092a35d140081

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 2c0644f0d5d3c84db312cc90f3673e4f4105352bc33b897f9d85edb08341d6d9
MD5 05dccca8d1e8ca434918eb17bbacde73
BLAKE2b-256 9e2b2ed398042b6ff4dca9424d36c2ef24e2a46969214c63d546567af78fcc10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.1-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b5af9e14970a5f9b920ee08870e47cf6eb50bba89ecefb1223b5f5f8f5aa4cc0
MD5 21645a9ba9d0fca67777888945a88a00
BLAKE2b-256 e438c36e764e15dd72daade5f6db6acfc81ce3710395b8cdabb8d4ed8583e8be

See more details on using hashes here.

Provenance

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