Skip to main content

CRI codec library for ACB/AWB, HCA audio, and USM video extraction

Project description

cridecoder

A pure Rust library for CRI Middleware codec decoding. Supports ACB/AWB audio containers, HCA (High Compression Audio) decoding, and USM video container extraction.

Credits

This project's CRI format implementation is based on and inspired by vgmstream, a library for playing streamed audio from video games. Many thanks to the vgmstream contributors for their reverse-engineering work on CRI Middleware formats.

Features

  • ACB/AWB Extraction — Parse CRI ACB audio containers and extract embedded/external audio tracks
  • HCA Decoding — Decode HCA audio to PCM samples (f32 or i16) or WAV files
  • USM Extraction — Extract MPEG2 video and ADX audio streams from USM video containers
  • USM Metadata — Read and export USM metadata as structured JSON
  • Key Testing — Test decryption keys for encrypted HCA files
  • Pure Rust — No C dependencies, works on any platform Rust supports

Usage

Add to your Cargo.toml:

[dependencies]
cridecoder = "0.1"

ACB Extraction

use std::path::Path;
use cridecoder::extract_acb_from_file;

let tracks = extract_acb_from_file(
    Path::new("audio.acb"),
    Path::new("output/"),
).unwrap();

if let Some(tracks) = tracks {
    for track in &tracks {
        println!("Extracted: {}", track);
    }
}

HCA to WAV

use std::fs::File;
use cridecoder::HcaDecoder;

let mut decoder = HcaDecoder::from_file("audio.hca").unwrap();
let info = decoder.info();
println!("Sample rate: {}, Channels: {}", info.sampling_rate, info.channel_count);

let mut output = File::create("output.wav").unwrap();
decoder.decode_to_wav(&mut output).unwrap();

USM Extraction

use std::path::Path;
use cridecoder::extract_usm_file;

let files = extract_usm_file(
    Path::new("video.usm"),
    Path::new("output/"),
    None,   // optional video decryption key
    false,  // export audio
).unwrap();

for file in &files {
    println!("Extracted: {:?}", file);
}

Supported Formats

Format Description Operation
ACB CRI Audio Container Extract embedded HCA/ADX tracks
AWB CRI Audio Waveform Bank External track storage for ACB
HCA High Compression Audio Decode to WAV/PCM
USM CRI Video Container Extract M2V video + ADX audio

License

MIT

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

cridecoder-0.1.2.tar.gz (55.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cridecoder-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (497.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cridecoder-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (497.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cridecoder-0.1.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

cridecoder-0.1.2-cp314-cp314t-win_amd64.whl (358.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

cridecoder-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (489.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cridecoder-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl (460.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cridecoder-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl (465.6 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cridecoder-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cridecoder-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (492.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cridecoder-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (490.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

cridecoder-0.1.2-cp313-cp313-win_amd64.whl (358.7 kB view details)

Uploaded CPython 3.13Windows x86-64

cridecoder-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cridecoder-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (492.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cridecoder-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (460.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cridecoder-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (466.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cridecoder-0.1.2-cp312-cp312-win_amd64.whl (359.2 kB view details)

Uploaded CPython 3.12Windows x86-64

cridecoder-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cridecoder-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (493.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cridecoder-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (461.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cridecoder-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (467.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cridecoder-0.1.2-cp311-cp311-win_amd64.whl (360.7 kB view details)

Uploaded CPython 3.11Windows x86-64

cridecoder-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (496.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cridecoder-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cridecoder-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (462.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cridecoder-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (467.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cridecoder-0.1.2-cp310-cp310-win_amd64.whl (360.6 kB view details)

Uploaded CPython 3.10Windows x86-64

cridecoder-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (496.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cridecoder-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (494.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cridecoder-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (462.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cridecoder-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl (467.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

cridecoder-0.1.2-cp39-cp39-win_amd64.whl (360.6 kB view details)

Uploaded CPython 3.9Windows x86-64

cridecoder-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (496.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cridecoder-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (494.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

cridecoder-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (462.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cridecoder-0.1.2-cp39-cp39-macosx_10_12_x86_64.whl (467.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file cridecoder-0.1.2.tar.gz.

File metadata

  • Download URL: cridecoder-0.1.2.tar.gz
  • Upload date:
  • Size: 55.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for cridecoder-0.1.2.tar.gz
Algorithm Hash digest
SHA256 91261a04b03f15c9ac1d80f214d44d9a2cbb3b6b1d150f4a5b2064a88450c4a4
MD5 7f9f8f715c9b674907dca8bdc8625221
BLAKE2b-256 2ce4e0cc77785c30cd414592ba272b1eef996494f876850eee69330d56cb0027

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96096dc288f867824ca56390fc84eec823b03c7a37133430431ff3a8c8dd4a57
MD5 675745e7cf8df19b670ee3cda14d1ae3
BLAKE2b-256 85ba4cd70e2eabcb5d46184f2df93eb98158fecd4ade07b3c926721b480c911f

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72955780d8a40246ffc47e70adc3355b82c17955d2f0229544caca2553b094ee
MD5 c44eee5fb50c19b349f42ed6b73a40ab
BLAKE2b-256 c45477a3fa607be2f82507c593f901adfad65346aab632651399287d2239b29b

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e329f8ce15b7bb7a5f0c12a9fb30bb7fc99435e652c7ea3055d72791af847e84
MD5 19b2265138069e5ac09893053edf4c66
BLAKE2b-256 bf492deb86fba7d651e7fb26aee7cbc01eb8808285151444b198cebeea93686c

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 436374318311f87436278708c8e7d01e67a30ab180291226cc26981a8c35e551
MD5 01e987d1bcdc01a5dfdbfa92875a0689
BLAKE2b-256 9720f9f3a91829841ea14275e5e20adfcf4713ac830c0428b68260a4234cb505

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd16f5d7bc7042917abcb393090a66c2eb6760c965922497ddcc1dbd93efd48f
MD5 c10bf55c1c627ff2ac5bb0d89676c4e4
BLAKE2b-256 316d9af7e466de98daff79d6a5e7b6cba27dcc64b4411b345debcab71c53af9e

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04ba63eb911742bb5abb0d8741bad40a54abe3a6a51272f9790b9fbfb25928f9
MD5 6c4277fa719a2fa56dd419cb5a19c986
BLAKE2b-256 73eecda4a91e5dc4ca8fe4224323104ad0f1bc80732ba78a6e00715863c93517

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9aae9a78e6911335f41521aeb081718688f50b36214bd0528ea08cef2c68700
MD5 c3e7b009a7cc328f5757d01e1031b6eb
BLAKE2b-256 f1dcb4201aa2d5abb33515235ca0bf66a087fc4e1730a0e20aee899a9baac0b0

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70343695c8ec137d1602402cc7317d38e2ee1268288fae98141f1fedc7ca3150
MD5 d50fea27e32e74ccf519041d964aaf62
BLAKE2b-256 eb28b645972da1041cf913840b511b54d1f603b381178d3ee29b50a5cfcf7980

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7e09fc6f9f79acad289aefec6744c6ab832594a1053287b8b43285f7d0c3155
MD5 14f0064dd5c6a6822468207b79204a86
BLAKE2b-256 4e2b6430e43b3f9ae431ce5128cd9298745f7188336c16d34e97ca21d1021245

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db476b49524cb1c0036c0f44251d913db78973ca06ba41ba559a52279bb451e2
MD5 b41e4fda706ce44cd1bbf7ae16b60706
BLAKE2b-256 272a27e838a955eeb9226c5d6b09b8bbf264de3663aeedab946e3d614b200528

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e0763affc5ebef9fcae0cda87cb299dafcbc0c5acfc3a4e8e6cb2a63e67a29cb
MD5 943fd1b1b4a1f74d62c5de73a90b0e5d
BLAKE2b-256 fc3f2bcde17c93ab8f2a09bf39085a350e13e0288cdf7c7a80a00e99f6d74d24

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41a522f4ec96c2edb891a8fa6eb44b6924e65547943b512dcfe03b807aa9e0fc
MD5 c5ef5af56a832a0eae12b71aa985492b
BLAKE2b-256 37565d435e7291c63946edd4872f0340cfea0672fbd5e9ea608d61a01587d8f9

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f78cbf663819216f152b922466cf5b36b983e9a1e67073f8c6bf38f9600d09e2
MD5 055f461b14f10bbfb62960506c514183
BLAKE2b-256 fe02d47c6fdabe6376c9f806be0014e1293c66114ad03a42fd09e2992e6c2908

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32446d004a1f5ef35c93bf6a1608e9c58cf24ab0edfcab2b187ead7aabed3980
MD5 27a399a716f1c2a584e32c4a3a83512f
BLAKE2b-256 520c510be8377d46805080cb17f1d9a30f585f4fde10ac4313cf8261a3f4aa50

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 64291d052cbb170cd747910060f553b81ab490f6a1ab8fd6d883a6ac5478afac
MD5 7c52d34bbe3b6b4cbfa56ba829f03579
BLAKE2b-256 682cf7340de2964ec2fba328dc29fbd3ef65c6aeb3add8731f3e99ee0d2de098

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bebc3b480802e6355fcb98b1790f7534557eb8e5ac9e4092ccb3e69a0861ad6f
MD5 dd67c165fff807e68467c37030eff980
BLAKE2b-256 ed6b508f7dd7e8b9cdf39e2de0cc4c8637d92c306c4d990f2d663872ae5559fc

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2134fe07195ba8d6f60c191f4f6159275a6bba201f549d18f4342aecab0a46ac
MD5 5e70fb93df01fa57fdc014b64b708b33
BLAKE2b-256 883f292a442f0082ee9ebbe4398fcbe5a8096b3113ad67fde5963b91841603f6

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bc8b6eb635726b4f63c36e8941dbdbf95d06e82612eea05a6b5866d09497fa9
MD5 2a080180581dfc8b58eae3dcabd0475b
BLAKE2b-256 e03a9701d000836935edd78c9b5048fc170c5a985886513c9aa1f0268acc14d6

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bfe2f971a3213875b5583957df8a4f3a032a453c8029ff5ea9122ef588485ce
MD5 936b3eee7f7747294b262f8ee7772256
BLAKE2b-256 b38ec00f36046e9115a845106e313ff3cee088b28adb41416c2bab2636731cae

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 37ac9531b940fc04e98af1f51aaf2bc0d23c5146d33ab7345ad3d728d62de988
MD5 a3d025eac6297fb5eb0d918fde0d44f0
BLAKE2b-256 19c9ca984a1b284b579be95dad62bdb8ea184e5f3f4490c78004cd9bcbfca6ac

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a4709dc438ff1ea780f0e3009ea2f3b22cc6ef4115100a9584e3e58deae20d55
MD5 2ded732f42feb306a1347962369c3935
BLAKE2b-256 b55a7f3a9d0ba985d04d5874d000c502276ccf8c421dc9b5b1d6e79aa44e2941

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c01598e30705be1a118edb7093f3bba962211e8070c71aa92b1b3971c30e627e
MD5 df3efd35a23b270843bbc9b167bc24ad
BLAKE2b-256 a314bb0c7d63e3992c683da9f1bc522937f41fecd22151ebbf6470cc14ed9d2a

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19ce60d952f5a7151136bc606d9e8cd8d4c78dfcd0c0922835eeeb967cc22561
MD5 e638f6a8562f41fabbc911ce58dde1c2
BLAKE2b-256 e0e84c749319bdd4e977749121c9dbc56ea0c3805addb63e3051169d9359eecf

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 035393aaed5948d5fca2109395121ed77f99b48a92514ecd12c65aab3092d3f1
MD5 1223bc1f1205a99c47a598965f9b0921
BLAKE2b-256 715ad84a4071b5ad3bc055f05ee1a4ec39c58acad1a7117e46ee18e7078c0d6b

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5dcbaa8213f0be26902c1d6174357f6a4b79ebeff87ba7524870ed6777bf49c
MD5 fbc970249e7cfd1379b2905b69f84ce3
BLAKE2b-256 fdb8d088fe118cfee23f5f5d437ec111ced911c625b59ecca639f30a61581be1

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ca74ad8d411febd86d627efd0a7aacd284ff6428f46f46d22a9ece14168a42cc
MD5 bc0c64eff0f49141018af30c4f7549cf
BLAKE2b-256 96262b200705e83c87c8563ee1d18d070a12f1f7bc1ebd23d221217a6a18b1e0

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93f7fb6ea31f03ede8fb86e307beba08830cf93e48d96562140c98457c0551af
MD5 a0f832538aeb3f0ab2ac0e84ef138c99
BLAKE2b-256 252de95771e9982a173010346f611ffd3fac73bd454789a50eb3dc942c5abe1b

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fea9393cabd0e6a960752154bf5922e97fe79703d00802b1e469469396e73ac
MD5 907b595ec120e1c1bb7374f55aed2310
BLAKE2b-256 7bc70d3a2ea1807fe58eeacb89f8c92f94da074dfd789677c2ba169385135fda

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72a7a9513d2b03eb9ad5bbfc5bbf029c521d891dfc33aa3ad0608ee850e0be0b
MD5 6128322959842f680859667946fb674f
BLAKE2b-256 98fa2141b5686c563c6e850226424a412443f33fe33aaf71af0be5a23cc8a654

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6331bac83625d38a2d7a398538c453d3083a225da6af66a83e5c2a83a39c0d0d
MD5 80331fd140c6fcdc2f4bf621c12b1cb3
BLAKE2b-256 c09169b53ae14f0e29b12a049f7780d8f03f4325a8da07153df4b9fc9f18d23f

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d6cb9c9f19e92bfccf5996ab28c03ab797c554e4529691067b90349fdc23cfdb
MD5 c48cd3821514126717aea3c99a9e229c
BLAKE2b-256 cbf50323a6e00cdb9d1e5103cc28c6bd34065ef85d68181e937d761c658173c6

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96acc340879ab5b5b82df8676a2e4e1abaa57fbf6f03d9bc871bbb8346db20a4
MD5 e259ed6ae5f8c71fc4d4ccb7599691c6
BLAKE2b-256 709e122ecfad6a1dc36d6fe0c1171491025485e1b03ccb8b67e34cf3a9b9a87a

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50396235d5dc9ca6b54764b0eb76785995c1ce0aa7b71e786915c8eee956e3c3
MD5 327712c2d0dcdebd67261ff8b3d9a659
BLAKE2b-256 35c37c4da3184bb396d5779ddb0f65dbcce40a03ec96a7aa1b5bb15daf619728

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b3e877d77b43c35e578f23759ffa32ed9e6217c2b09176c85cb4414c1c26f58
MD5 a35f2b2ba2245ffe29563eb72c48cc42
BLAKE2b-256 4b3c0215c5bc1c91fe9f6ae3e55227e154906e1007296c1a190e4d6e86af6b7b

See more details on using hashes here.

File details

Details for the file cridecoder-0.1.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cridecoder-0.1.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 685585a23cfa7ddfcc701c6593ad5b29a0f5da281ca6f3caf50f7068195290d8
MD5 b227f118af655e27cb488bda4b607d47
BLAKE2b-256 caebc9c6172c887ac1bd61d4cce8ae5f12f02c5df707a71248c1e5acf5f3f606

See more details on using hashes here.

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