Skip to main content

CriStudio GUI and CriCodecs

CriStudio logo

Desktop GUI and Python/C++ toolkit for CRI middleware game files, including CPK, USM, ACB/AWB, HCA, ADX, and UTF.

Download CriStudio GUI pip install cricodecs

Download CriStudio GUI

Download the latest CriStudio release for Windows, Linux, or macOS →

The portable GUI is the recommended option for most users. It can inspect, preview, extract, edit, and build CRI middleware files without requiring Python.

Install CriCodecs for Python

pip install cricodecs

The Python package provides native codec/container bindings and the shared cricodecs command-line interface. CriCodecs is also available as a standalone C++23 library and CLI for application integration and batch workflows.

CriStudio USM playback

Inspect and play muxed VP9 and ADX streams directly from a USM container.

CriStudio CPK inspection

Browse nested CPK entries and inspect structured binary data without extracting it first.

Downloads and packages

The latest GitHub release provides platform-specific downloads:

Download Intended use
CriStudio portable Recommended. Extract and run; Qt and FFmpeg are included.
CriStudio slim Smaller advanced-user build; requires compatible Qt and FFmpeg on the system.
CriCodecs CLI Optimized command-line executable for scripts and batch work.
C++ SDK Headers, CMake package metadata, and static/shared libraries.
Python wheels Install from PyPI with python -m pip install cricodecs.

Portable CriStudio needs no installer. Windows packages expose only CriStudio.exe and an _internal runtime directory, Linux uses an AppImage, and macOS uses a self-contained application bundle.

CriStudio

CriStudio has two workspaces:

  • Browse loads files and archives, searches nested entries, previews audio, video, images, tables, and raw bytes, and extracts selected content.
  • Editor edits archive entries and tables, builds and muxes media, and manages encryption keys without changing the global CRI key implicitly.

Key recovery is available for supported HCA, ADX, AHX, USM, AWB, and ACB inputs. Multi-file recovery runs in the background and ranks a bounded set of candidates rather than blocking the interface.

Format coverage

Area Formats
Audio and audio containers ADX, AHX, HCA, WAV/PCM, AAX, AIX
Sound banks and tables ACB, AWB, ACX, CSB, UTF
Archives and disc containers AFS, CPK, CVM/ROFS
Video and stream containers USM, SFD/SofDec

Editing, encoding, muxing, and key-recovery actions appear only where supported.

CLI

Release builds provide a standalone cricodecs executable. Python installs also provide a cricodecs console command backed by the same native implementation.

Common usage is input-driven:

cricodecs input.hca
cricodecs input.cpk

Audio inputs such as ADX, AHX, HCA, and AAX decode to WAV by default. Archive and container inputs extract to a sibling directory by default. Use -m for metadata, -m --json for JSON metadata, -f to force the input format, and -o to choose the output path or extraction root.

Key recovery

cricodecs --recover-key -f hca music.hca
cricodecs --recover-key -f hca music.acb
cricodecs --recover-key -f usm movie.usm
cricodecs --recover-key -f adx music.adx
cricodecs --recover-key -f ahx voice_a.ahx voice_b.ahx
cricodecs --recover-key -f awb BGM.awb
cricodecs --recover-key -f acb BGM.acb --json

HCA recovery scans standalone files, AWB/ACB/USM containers, and folders. USM recovery combines supported video, encrypted HCA, and masked ADX evidence. ADX/AHX recovery returns directly usable start,mult,add triplets, while AWB/ACB recovery targets encrypted AAC/M4A entries. Multiple inputs are assumed to share one base key unless --independent is supplied.

HCA type 56 uses only bits 0 through 55, so recovery cannot determine the original 64-bit key's upper byte. If the exact stored value matters, the seven recovered bytes can be searched in application metadata or executables, but a match is only a heuristic; the key may instead be derived, obfuscated, split, or absent.

USM muxing

When building a USM, --audio accepts repeatable ADX or HCA inputs. Supplying --key masks the video and ADX audio by default, converts plain HCA audio to cipher type 56, and preserves HCA that is already encrypted:

cricodecs --build -f usm --key 0x165CF4E2138F7BDA \
  --audio dialogue.adx --audio music.hca -o movie.usm movie.ivf

See USAGE.md for the complete command and key-recovery options.

Python Usage

Install from PyPI and import the package as cricodecs:

python -m pip install cricodecs

The top-level cricodecs.load() helper accepts a path or bytes and returns the matching object. Individual modules expose operations such as load(), decode(), encode(), extract(), demux(), and save_bytes().

Top-Level Load

import cricodecs

obj = cricodecs.load("input.cpk")
print(type(obj))
print(repr(obj))

ADX Decode And Encode

from pathlib import Path

from cricodecs import adx

wav_bytes = adx.decode("input.adx")
Path("output.wav").write_bytes(wav_bytes)

encoded = adx.encode(Path("source.wav").read_bytes())
Path("output.adx").write_bytes(encoded)

HCA Decode, Encode, Encrypt

from pathlib import Path

from cricodecs import hca

wav_bytes = hca.decode("input.hca", keycode=0xCF222F1FE0748978)
Path("decoded.wav").write_bytes(wav_bytes)

config = hca.HcaEncodeConfig()
config.sample_rate = 48000
config.channel_count = 2
config.quality = hca.HcaQuality.HIGH

hca_bytes = hca.encode(Path("source.wav").read_bytes(), config)
Path("encoded.hca").write_bytes(hca_bytes)

encrypted = hca.encrypt(hca_bytes, cipher_type=56, keycode=0xCF222F1FE0748978)
Path("encrypted.hca").write_bytes(encrypted)

CPK Inspect, Extract, Build

from pathlib import Path

from cricodecs import cpk

archive = cpk.load("input.cpk")
print(archive.info())
archive.extract("input_extracted")

new_archive = cpk.create(cpk.CpkPreset.FILENAME)
new_archive.add_file("data/voice.adx", "voice/voice.adx")
new_archive.add_bytes(b"hello", "text/readme.txt")
Path("output.cpk").write_bytes(new_archive.save_bytes())

ACB/AWB And USM

from cricodecs import acb, usm

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

movie = usm.load("movie.usm")
print(movie.info())
movie.extract("movie_streams")

config = usm.UsmMuxConfig(
    video_path="movie.264",
    audio_tracks=[usm.UsmMuxAudioTrack("movie.adx")],
    subtitle_tracks=[
        usm.UsmMuxSubtitleTrack(
            "subtitles_en.srt",
            language_id=0,
            format=usm.UsmSubtitleFormat.SRT,
        ),
    ],
)
usm.mux(config, "movie_with_subtitles.usm")

Objects and configuration structs provide useful repr() output:

from cricodecs import adx

print(repr(adx.AdxEncodeConfig()))

C++ Usage

Include the complete API and link the namespaced CMake target:

#include <cricodecs/cricodecs.hpp>
find_package(CriCodecs CONFIG REQUIRED)
target_link_libraries(my_app PRIVATE CriCodecs::CriCodecs)

Module headers are installed under <cricodecs/...>, so projects can include only the formats they use. Public operations report recoverable failures with std::expected<T, std::string>.

ADX

#include <filesystem>
#include <fstream>
#include <vector>

#include <cricodecs/adx/adx_codec.hpp>

int main() {
    auto adx = cricodecs::adx::Adx::load("input.adx");
    if (!adx) {
        return 1;
    }

    auto decoded = adx->decode();
    if (!decoded) {
        return 1;
    }

    const auto& pcm = decoded->pcm_data;
    (void)pcm;
}

HCA

#include <cstdint>
#include <vector>

#include <cricodecs/hca/hca_codec.hpp>

std::vector<int16_t> decode_hca(std::span<const uint8_t> bytes) {
    auto decoded = cricodecs::hca::decode(bytes, 0xCF222F1FE0748978ULL);
    if (!decoded) {
        return {};
    }
    return std::move(*decoded);
}

CPK

#include <cricodecs/cpk/cpk_container.hpp>

int main() {
    auto archive = cricodecs::cpk::Cpk::load("input.cpk");
    if (!archive) {
        return 1;
    }

    return archive->files().empty() ? 1 : 0;
}

Build from source

Requirements

  • CMake 4.2 or newer
  • A C++23 compiler:
    • GCC 16.1 or newer on Linux
    • Visual Studio 2026 / MSVC v145 or newer on Windows
    • A current Apple Clang/Xcode toolchain on macOS
  • Python 3.9 or newer when building the Python package

Use a fresh build directory after changing the compiler, generator, Python version, or CMake version.

Python package

From the repository root:

python -m pip install .

For an editable development install:

python -m pip install --no-build-isolation -ve .

C++ SDK and CLI

Build and install an optimized static library and the CLI:

cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
cmake --build build --parallel 4
cmake --install build --prefix ./install

Set -DBUILD_SHARED_LIBS=ON for a shared library. To omit the CLI, set -DCRICODECS_BUILD_CLI=OFF.

On Windows with Visual Studio 2026:

cmake -S . -B build-vs -G "Visual Studio 18 2026" -A x64
cmake --build build-vs --config Release --parallel 4
cmake --install build-vs --config Release --prefix install

Credits

CriCodecs builds on public knowledge and prior open-source work around CRI formats. Many thanks and credits to:

  • vgmstream for HCA and CRI audio research.
  • VGAudio for ADX and HCA codec behavior references.
  • bnnm for CRI audio-format research and tooling.
  • Nyagamon for CRI format research.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cricodecs-1.1.5.tar.gz (706.6 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.5-cp314-cp314-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

cricodecs-1.1.5-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.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

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

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

Uploaded CPython 3.14macOS 14.0+ x86-64

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

Uploaded CPython 3.14macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

cricodecs-1.1.5-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.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

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

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

Uploaded CPython 3.13macOS 14.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

cricodecs-1.1.5-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.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

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

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

Uploaded CPython 3.12macOS 14.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 14.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 14.0+ x86-64

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

Uploaded CPython 3.10macOS 14.0+ ARM64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 14.0+ x86-64

cricodecs-1.1.5-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.5.tar.gz.

File metadata

  • Download URL: cricodecs-1.1.5.tar.gz
  • Upload date:
  • Size: 706.6 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.5.tar.gz
Algorithm Hash digest
SHA256 eb504c2d899eda87a082da9afc58875fce45e431c59ffa35f67f9428bfb4a4c8
MD5 ca109e6719489881893a996d15325c1b
BLAKE2b-256 f52bf0ae9441f04b321a1ce90b42e513a12e48119007b6e9c5842d93ed23d4fd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.5-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.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 967992d9c24f9fda4dd39ea76a15ab8fffdbb938cc2d7d3819087d32593974c5
MD5 a86ecb7d6e121931d9c223f245639d8c
BLAKE2b-256 755cc4f100a610fcefa28e451e4725a1801161d587189f1851bfa3a26af5d43a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.5-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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 59b79ea1285048899314d5c870e8fb204e6572d6aa773f2de3df1ffe3163e69b
MD5 cbf3efef448ded1d4e05bcdf5d00c35b
BLAKE2b-256 52daaae7acd404ac3eafce6ca9774a7391ff910be55060d5e724a8f8939cdf0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d8b335d83975563fd14e021e5fd03acdda0b257d99a1a82d5af9d1a48abd39a
MD5 a56c13fd5d86b8af3d95f27d3b30de8e
BLAKE2b-256 f89e51b25305844d2e074c2a03982ab2df6f5fb401c5c859cb70399317d4a642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01c23dfde7323d7d8dbc57580064ac9b9c518614e8bb2c0785412afd8698b080
MD5 150902bc776bb346f440bb143e4fc696
BLAKE2b-256 755b99f5b981cb0e872814b099d14df75153007bf020556bfaf7971c33aaf60a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 4c38a6fd1af06808370971c30d5fdfb24c83bbbb35ae3569d880ba26f5aace4d
MD5 4a9e61652561251b30cd5bb614a64ab9
BLAKE2b-256 31370d86271086906788225577cc5bec5ed8dc4e768771621eae136a18bb2894

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 75c6f9cafca3abcb1b659644a01c081b5330abd92130808672678ed607c47f7a
MD5 bb1eb183cc2392857350e19f63c7f398
BLAKE2b-256 75304c9d5c5e9e8a0913ac30e7a835b8f99bd932927f27e5bc4d6376a9940e47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.5-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.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7528124229d9b8684ec5863ed64a31bc1b820f7650f62a88f025bcfd5b1f1200
MD5 fd531d12c354ce7dca0bc73b58a98600
BLAKE2b-256 3c3ec52fb63a2e72b007068861cfbf84acfc94f98c6d42cf03aa2b99065c4dce

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.5-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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5c278f80365ea621fddeabe9d5ca40a1a9bd16cdd1d1cb8fe27df5e58680bf1f
MD5 565bfb11a8bede81afc113063acc7ad0
BLAKE2b-256 5ff7fb25c81d13bbeda216b9df3bfb5e9ffc7b6356e940928ea59f753e7b3ddd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7903d9e02d47601c36124a1f246834f3a9029fa9041ba122ee8070b05603d701
MD5 849797c616451c3ec69518c4ec252496
BLAKE2b-256 8670f96e5eff551ece0dccfc951a1656f4bec10df1c1ed25e63c9458fd7f3358

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 495876f092279d7181981ebbd80cd483bce9b46c7d42358755748effdcc52fbb
MD5 ea096830e683391f5fae9a12ab6b35e1
BLAKE2b-256 b99e97e89d1d1d2e8d11c0464b60ac5e6d97e1c79a693bb79a9d580605f18460

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 c6a905a25b6b0ca15be44b64a01d6c59e0bd94951d8b73a4b870206c1d45af79
MD5 9fb4b758b5952ca9b43d84f0558edbb7
BLAKE2b-256 08bb4ee632ba333b8150d1e953b5fa27d16beef62ff49af79b758818402811c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 48fc73f2253b4689bf80445a3fe4c5df5eb290088a1c8f225b36f7dd93fb7344
MD5 8522831a4d1609afc23d604d8a08b8ce
BLAKE2b-256 6541d7e40e28298efd3c2872f88c2d66ecc6317969d8069216ab192013b349d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.5-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.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6e80f41d443c61fc5c32b71cb2ba2653d65d1e528ffd2c63de8f0ae55448f098
MD5 5d77263eedcdef9a53d6c0746f787272
BLAKE2b-256 395a6387e38a0f42e5682d37aea1568b3db3e114d56355e8d19bb089024c2ffb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.5-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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 601eedd5721d3ad727ca1e77ebaecaf5fae171e7f24107f6da82309ce7e20953
MD5 04ca942b98490b1c978e6f041736161f
BLAKE2b-256 1af6df5992687e94ef155617f9e54c64dad990a90a8b3e46aa9d092ec5ffa3c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 814c9f96963aef20b5845507b846690b7b3de3accb379e656420581f39f8a1fc
MD5 c860b052f426750870810ec8eecc9a8b
BLAKE2b-256 649c3beed97f2593462ce42d3d22a5328f0d6f844ab944d434ca60b91ddbff6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ec2a8409f0895fb336074bf0151d2886be57cbbc253d99ec4c3ef4b031c94ea
MD5 e944c89c8e75fadbdbda59916b64b0a5
BLAKE2b-256 a2c8a3f8f029b84056aba2c33afab375c9ecd074ec8952b468f12969506c92d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 e73e70a41836d515392ffa45492779970085ef79f686a26ba7c7749118013282
MD5 09267d18a5624ce81af128b61c51f410
BLAKE2b-256 87e00e1023a4ce99cb4c1b203af6129591140b3d68615269b9e072afef7977fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ffc59cc98d08a0d4f3994a6f4fb66f4d754acfa50db243a326ac9989143f1ee0
MD5 26d9681d6405aabb30e024fb61de2d1e
BLAKE2b-256 a6fb2003634d2372e1cfeac49e9b37faee5ec05c000aaadb78083adab476ee1e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.5-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.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 565e5e8c3a093dfc181fb45379bdf22a64023714b9f6f6a0d660a978e4fd9bb8
MD5 c0fec3d03a59e4c6e2d5a9203595835a
BLAKE2b-256 1acbc3d8a22b4283dd4065afe8eef7028481f9fe1bf06c6ae30d511f1bdf08b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.5-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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 60a9e8fa67eeb00c8703e5470def46d4610d1b491440e3b5647f0fc077040986
MD5 94c7cdcde49be6dd9dbb27ff8e6c589f
BLAKE2b-256 9a5841a6fe91c7a4c812f6405bf3974ca748ab426e7a0068757045e744d542d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 709dde8dd4bbcc81dcaf1778fb11fc7b6bac32138a5ee53ed6a08785c2147f21
MD5 b5083723e65b95e9785ccb5518213a5c
BLAKE2b-256 59302b6f29b8e00976de36c5b8015a2466ae34269d5de798c35325a48847f81d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0674451c091b6a0396fe29a64e117a97ba95b3526fabad12065cb2fd2e28df9e
MD5 eedb52d1a4e01e56e160556df0b7e59b
BLAKE2b-256 bf8bc660c91f70a7f31bc8d75c6997cc843510571dd6adcfcd73cc9c10573ceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 b176bf5ca72b419879fe14dd0b8e159ff61e856984a0e38ff5c10431d633cead
MD5 93bf001d656c72351bcd3c124c88ca15
BLAKE2b-256 59a42eae5a09609cd2920e88016c197566150cff70fc6b938c60f8032f5abc8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b34bb11405d7badbb15b4f677a247b0969b1c2457d3f11209d3b0524a0071e97
MD5 23038aca5bf589d48c65a772fa28a38a
BLAKE2b-256 c24a9a270b5287b86cb725a5ea4cb1717cb4812ec61e567aab89f10bbb7c2b25

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.5-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.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e2aa2291817388e6db9a1bd0932441e266e57fac6198f3c42c5aebbf3fe26a9b
MD5 edf302775a7c35ead41542d75fe7ebe0
BLAKE2b-256 3aef5bde963379a5fac74f0ec7a946838e7c414a5f6c9d1108f3e01bb8cf4de4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.5-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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f07a315378ee165893149c051c616534239b05e367a7487b520e7e9e171b38b
MD5 6be3c22b7f39041a692aa438ec1fd632
BLAKE2b-256 00fef778703bc68cfd0989180c40f58cab70796c2602c67e6892bd7de130758c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fca3fdc5fd3378f42c45a0ab4120b911d8d5021807b6767f1f01dd41bcea565
MD5 72cfb4e5978105ab30e41caa58fe1d83
BLAKE2b-256 da1ff88b70cdeeae005d0cd1e78617d72cc16ad7e27863fb816d85402c074e7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32b0de6d5ca408d66ce443dd48953b3a02d96b237a8063a9eba5e67eb8aacbdd
MD5 3000452e2126215523384a593fef9b2d
BLAKE2b-256 5f08650060cb1df7974365f8e05ec5d32f1b4b8070e9508cf2f59aad54d74677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 f7d81faa86232817b7feb24b3fdea43634e0263f316a05c33cd001d0d98a75bb
MD5 9f714a8feb930ff21ae6c6eb71614978
BLAKE2b-256 12a9c7e53509c7a3b6bafd343f16944502bddc1a35d9bc0c8fe4bd0271a87a25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 aceff543a33a6a09baff0af9c8816bfdc47e62784e18e73da905a2a3788d9e1d
MD5 33bcaee0cb0bd9bce470aa114075f67d
BLAKE2b-256 e24401304c34937c1adf58c68378bb05e55949a26d0f0441e1dc0f3937bf744b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.5-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.5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 5beee19ff19b11d05b37acd733b75e60a5ec6c8a66d4dba07806696826cf19dc
MD5 53cea3cbffa3bc054540397d071a401d
BLAKE2b-256 f62e61d09aa956dd7eabebc070d4c54195c63e5fe1255eb49b96f1194a2c12f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cricodecs-1.1.5-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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7ca41b9c625aede479256804e80c8b3fbd36f8511239b73aa19f98b6b82e5b88
MD5 fecf95c3e6a1c27f93c84b439ae3703e
BLAKE2b-256 bcf5e39611f1d7b5e66b5e2cbade4c7f6ccdbb8fd77bb6290ddba587f4cd0df6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c994167d4e44aebec2a75f6ecf6187f9a19005ce50c57e0f810d7856dca62c40
MD5 4fe79220a72a22908e3cd3195bf7c73f
BLAKE2b-256 fffc1d086502c3cd5c53bf04d390c5e65d8ceadeddb3376423ca7edfe5ac55b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7b37c57e7ea0179d19243e8671a9d7a5ebd7460daaabc7a893dd85e6949b960
MD5 99beb1995c35f47482cf5f7db7a9c7b0
BLAKE2b-256 dfffe0b7616f1cc316a3cba3e224e6c78b75082f7d6e92f25bb0bb13dede5283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 2482c79ddf93c3517b184913cf338f8bedeaf35250191a04c90461fa14ff45fd
MD5 b449df67f6d25b00983e589d5a952fe4
BLAKE2b-256 461d3a7de7b3b2b64670f2b6d2ff43d1c06f3ba4c7e1a5a07d437b24927f0c7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cricodecs-1.1.5-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 60b8c984dfd468102a16e65333d10b23c0da16879288a8b6a04511b42f53fde6
MD5 e21bb26c492d4de104ca96eb8f103331
BLAKE2b-256 0b5c966d8f587b5e686f24a216142204e66c847732086f7bfb2a9a9690d90e3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cricodecs-1.1.5-cp39-cp39-macosx_14_0_arm64.whl:

Publisher: release.yml on Youjose/CriCodecs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.2.0

37 files

1.1.6

37 files

This release

1.1.5 This release

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