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.1.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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (512.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cridecoder-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cridecoder-0.1.1-cp314-cp314t-win_amd64.whl (359.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

cridecoder-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cridecoder-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl (461.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cridecoder-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl (467.2 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cridecoder-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cridecoder-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (497.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cridecoder-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (496.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

cridecoder-0.1.1-cp313-cp313-win_amd64.whl (359.8 kB view details)

Uploaded CPython 3.13Windows x86-64

cridecoder-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (506.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cridecoder-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (497.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cridecoder-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (462.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cridecoder-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (468.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cridecoder-0.1.1-cp312-cp312-win_amd64.whl (360.2 kB view details)

Uploaded CPython 3.12Windows x86-64

cridecoder-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cridecoder-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (497.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cridecoder-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (462.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cridecoder-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (468.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cridecoder-0.1.1-cp311-cp311-win_amd64.whl (361.8 kB view details)

Uploaded CPython 3.11Windows x86-64

cridecoder-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (510.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cridecoder-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cridecoder-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (463.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cridecoder-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (470.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cridecoder-0.1.1-cp310-cp310-win_amd64.whl (361.6 kB view details)

Uploaded CPython 3.10Windows x86-64

cridecoder-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (510.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cridecoder-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (498.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cridecoder-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (463.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cridecoder-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (470.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

cridecoder-0.1.1-cp39-cp39-win_amd64.whl (361.6 kB view details)

Uploaded CPython 3.9Windows x86-64

cridecoder-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (511.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cridecoder-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

cridecoder-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (463.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cridecoder-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl (470.3 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cridecoder-0.1.1.tar.gz
Algorithm Hash digest
SHA256 bbefe5dcf4c3eb5232d37fa56e712b0d7745d86eb723eac5357cd4d55a126797
MD5 9dafdca2aa094b9f5e08196de476ddbe
BLAKE2b-256 02591239dbecfe717e11ae6a76f6bcc8c48c3f6111d211d304e32b4259f567b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d38a78e73ee3279abc9690940700bff30963606d508e0d0d4dc4b325906d7aff
MD5 8ea16d5aa32dc106627ad7044e541ecf
BLAKE2b-256 3e0151a064410488ca8a5804fd6309e8dfa17ab2e1fb63bd75cbd4f83b69d86d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e836226489b194026622f49927b3d7d4e7c6823ce2f488e67b67d92f67d63ac4
MD5 d2df4b9490240c452e2fb77990eea943
BLAKE2b-256 78ec97267072e0a829fd40022722166d3b3dbb8be160d0ca8794f38e9f617a02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ed71feb471ea72ea50de3d6877323a3eb65cb053f63da22b27c3d776948d6e17
MD5 41e5dcd4f2700bed3582aa6410c28a10
BLAKE2b-256 46e3da6316438ceb54ac9f1555e6cbd322f4d0e266ebc8e2126a10fab50f6c1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6981bfec0285a3c0c486c9471a77d0bed069292486a32167ba4a2d488b3d500a
MD5 4f6efad2abfc680238c399813eb54929
BLAKE2b-256 883f125a95e0b84e7939938cbc3693f2959c262a62e2aa6c5efb6190877d9ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d514dc24428c0fa8830b54532edc365814df56bacc7105a35ccb9958676ba61c
MD5 905fbf6a915a697863dd69932bfb67f9
BLAKE2b-256 2cf1562fef74a73eae2833f5b0bdbedc1ede730b21df4b11e627674ab4e01ac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38de7826cbcbf60113e30a535261834e9d84d9cf5ab9a0b134d00a0a90a779bc
MD5 81ae6dcc41a13351adee15a7866542ca
BLAKE2b-256 41216fe2f17f1ac1f7143fd6ed75673c5c829ebcac09e053736ef22119934f26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00dd4c1a88588ce0fc08f9c07952e6dcbc53899747ef9ecf41f67dd8891a0f20
MD5 f8533ab75c842ac4aaa7de3e820c8178
BLAKE2b-256 4e4a6aa4944447f209bab67d148bd9dbf5692b476f7d79c6c19ca559844e9e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 432adab10de993e64d1ffedd116410db2cfc911b9f0faf93978259648aa77997
MD5 dad6ad60c1962efb9b559a90ff8c8a4d
BLAKE2b-256 ec5ad062b261b39ceaa1bff9a54404b9037f1c1d71162d784bf5a323bfff11c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20b579c90ffd4c821c53bd0ea3878631983252364e52a84e926055e4f75af31a
MD5 19517433bcc591eea9fbf1bcdaf884d3
BLAKE2b-256 1351debf45d071d274cc010738452448e9ca54c777de5470fd4ab95082a8c943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a424add134aaf3aea9f0787d611a5930e796d7879e78a879b8ed83a5b3babf42
MD5 8ec1644d888dbbb7dbc9f8a25855fbad
BLAKE2b-256 823e78781bd58408a36914da8968b4b90c1fa71b418ee9e8086bdb36c7a5c65d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee39a606ff547118319d7bbf7947b2b3d4401980c729e6bd8289e336d5c98912
MD5 f8a38e38595ccc5c059bad641cc69b53
BLAKE2b-256 4c13c3a3d1998ac9e9af778392fcbe2e4515ccc17d1380c32ac7937b4de32f02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf1ec8bb116c4af1bf3dd067f3c89786735a74e4954c489fb1c5de73796d0c2e
MD5 99264f116204d517dc89d93b0a7e8f94
BLAKE2b-256 ed134785fbc7c9d717691ff87624a82b1fc7bbd0c76b44da2735d6ecf0bf5827

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9f92c18792016fb8dc3ecea295f458b59acb9aa7c5dd9941723294041071ead
MD5 a1bf2127f67a20889bb4800fda01938b
BLAKE2b-256 ac99275cc3b41fe613b9e45d1a565df30065016956d3821b57d30b785f5dd77d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6df618ee6d34a43c3ff9f88bef27c7ead72b3982c4ff79047a9a26bafa9bda2
MD5 73b5f2907be31a81c6291e7f4d455113
BLAKE2b-256 2b33055293408b5ea900e6d13d81699afdb3ef2a506d5abf42040d7d136105ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2b596e930d98f19bda72869f0b44b4890ee0c82be938a5ddbd2de0dc689c67e0
MD5 2f65d569d19712726752ba2376bc301c
BLAKE2b-256 06c7531efc08e9f2f3db80fe59b0e8a4e87e5c7d75c8c19436c752e50e42cdd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d40de35b018ff09b2dee26f9ced3d68e8167c2f35fe2a1a945cb01ee5241596
MD5 48455748121c9b1b7e881497cec43f80
BLAKE2b-256 be80f5ca18e5e79e0732d4c5af8fc0ea026f7e05ad478e8320688f10c451167a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fdd921ccc9aedf94efd456ab5768149c5b5dad5a90475e95f90408eeb4dc961
MD5 968e9aab33f992a8bf801020aa035f84
BLAKE2b-256 18330949f04c69e2fce2838e71086a6b2d5a3f9951e040568d81c1957be71c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06a7461115da6576a6f28c69d9d088842fd4e9d51a96efd6fc3e4250da9552ee
MD5 82efaee12d84f34a654bb878a27848f9
BLAKE2b-256 2ea894e8cb4a95ba04d3ccf577084a188956ceded29e48d885e8f416152ae063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9827a1e60daff34e38b55df81b64f78aadae713465aca309706087b8469f7afa
MD5 6fc98df9f5fe05d5731f6a9d0c4a17c4
BLAKE2b-256 3f0a8ffca5e83e515a06bbe323fa5c1065e837f489efbb91da40d1eae1f39100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 17d749266f6fc85089f8eab9086393c1d47eaf70753c6aa2603d7ac0c3aab48f
MD5 c1212c5d77b5fab2168d68b5e6b5e1a6
BLAKE2b-256 f5f9ee7a622113278032d756b73405c594706aae5bb4ba98f0d7bb451797e116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c8c96173e9fcb46ecc391737ae9c416b205bc502b98cf63e591666f912a599c
MD5 3ac614cb5854cabc07cd935b0e16a9ad
BLAKE2b-256 af0e60b2ad30071e88fd78e94981c37536022d21efc559637f7948f6afe162d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22710c88875cc0d1795cbfa89ad5608152c3f0265c734f1c8855c79e9484ad9e
MD5 ed2a2b043892ee79d74a0f7780bdaff6
BLAKE2b-256 3223879a57f5db7e24095c008beaca9ca531a7b026c1453c0e3a8963b85b6cdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53978d6fd107f50a7842965b58d0b34e52bcf02f5d635003fa5a80bf693b7508
MD5 0cc0da47894243bfa0e64ff0b3950088
BLAKE2b-256 5764d6d5f58a8c3d1a41c2c34358eeb549a4bc03d91fe1d79853ac76cc1e4611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5dadd4b8463904e91013dbb2fab93013d7c849475464fe2e3e029d883f9a6845
MD5 6bc5eb824617dde9a64aa1ad83603617
BLAKE2b-256 f69f7918f5d63e48fb9b44eabbb5350c673bc62ca99c6a32a0c9be39e219a9ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c1aa4b30fc5517d9acd09ac124919c306bcf26f1bae180521b1abb4b39b0008d
MD5 73fb2f900e45366c170a6a658428aea6
BLAKE2b-256 1d16aa0d9162ed69c3657fd45811b2b94a40b3452514da3a2a212d9a0bcb8dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94b716282497aca64c885a139aef1734e9f569e15414c1edd0950bde5c34dcb3
MD5 b71eaf060ce65b6e77af47e2cc4e69c0
BLAKE2b-256 82e27a6cf1c1537d1af21187562ddbba1cdb8570a213e345202f605e88c92625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 476b18d4f9ca0ce87a61c0271b48123e2ed0b9ee2ecced448e12be61faf1d0f0
MD5 225bb53c726a206738119b018ebbc35c
BLAKE2b-256 84e035cbec7731fdd5f463bf8a720e67bdbd202cee5ed6fe57131725295645cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbc71d720439c7bc01f171a9d007b04d155a7a6615d33413aca2bd4f1776e552
MD5 aef1cd125835fb5072e53d60a1c3274e
BLAKE2b-256 39fda728795fba4f8a892a3d87cfca57c40bffe882d8836576871b90bb89cdae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b7f323b0ceab6ccf670fc6d817d15cd6a7bb3848bfc48e45d8e6c93c55bb7b1
MD5 433cc604a16b4811ba80781771e7b442
BLAKE2b-256 cdbd697a567f8a61c845b4a71cfaf27882179af29cf050dd5185d374799d49b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6f170e89d7cf08aeca2deabb62c3f9333939bea545d5b0b0fc14b659c60b3bbc
MD5 49cccd4ed40b0a6479d10978eb15e1eb
BLAKE2b-256 5a7dc7687ca4fe9221f0831d426122aa433fd54f7082accb78b1b907980fc6e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09ad099b8d14849bfe8074e8d52d34615f2805239638c0b87560a057ae2ff601
MD5 d47348c24f6d5e3bd9a4af1994046abb
BLAKE2b-256 14a2f9ed9167ef8ac380ee6bc96f92a3e3e6102acddf200a69fdde0aa98cfa61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e8345a96c720ed9f8328d71869ab7c7e67385bfdebaae77ae126304e9949259
MD5 8ebce64f90365335eec13b2afa96d24f
BLAKE2b-256 d8d0c8e0b04d621d2a34fa5df313df4238696ce627e6215c234966b38ac2c6db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 163ccc2f9caaa1f93182e8b7eb0b320df62078c7af903f7ecbcbdf63e43d46b5
MD5 0801dab3e8cfddcbd54bc0208d9b00a2
BLAKE2b-256 4a297b5095dde62a2c2670453c8fc50bbca4cb74f13085c1d81ef0db26ae99d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 868efc2630aa1f9cc8c79f80bf28e56bb354ad516b4d3c72a2807ae17276176b
MD5 57d9d55621c6f7d69498662527bfa302
BLAKE2b-256 9339f13d8bbedc41b37066f32ef127ed57e6cefdbdf1a2513a03dd7c4cee710d

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