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.0.tar.gz (55.5 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.0-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.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

cridecoder-0.1.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl (461.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cridecoder-0.1.0-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.0-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.0-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.0-cp313-cp313-win_amd64.whl (359.8 kB view details)

Uploaded CPython 3.13Windows x86-64

cridecoder-0.1.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (462.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

cridecoder-0.1.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (462.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

cridecoder-0.1.0-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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

cridecoder-0.1.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (463.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

cridecoder-0.1.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (463.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cridecoder-0.1.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for cridecoder-0.1.0.tar.gz
Algorithm Hash digest
SHA256 6de63e03674545c643f8d60991e7cb04fcd8de33ff52cd4f85ef77181e12c76d
MD5 f2dadad5db43809e03bc52f38cd01769
BLAKE2b-256 473888b44ddc0da6c9838cba218c32dbe710b635a744f0e618a2ce9ebd3a4ead

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e309db73553bc43f3767874e174d976c46c9b49b77b4ee3e94d69e567d30429
MD5 6efe6158aa72b9332ac71dd0390ba2e7
BLAKE2b-256 9c5fdca223ff12196cad1de221dbdde1e224ee9c0e235735384992a6c518880c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a9a015ed93645a67262ce253cc082f5105cc96515c2b28813c35a5b98101ee6
MD5 4d17277b9e343e856cdffc36f31ebfcb
BLAKE2b-256 f4a9b918728de469e89eb315cbe4abda6bb9d999e37366e1d53ad56d617b3bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a3195e8d5a4e6f8ae94a1c675d7193a4aca08b0f9f643388dd68e6a1ebe9798b
MD5 13abe77afd1d129888f89b0238d472db
BLAKE2b-256 e78919d4490f287511ea0670e9d8abff120d51c3af1627349df83351901d2338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75f8858d7d344452e672fa7a7bdf2617f07b0cdd80c40544b96ee492ac250580
MD5 190527b7dc44ffbd70b470f026640119
BLAKE2b-256 798d3701fca8bc4b1a63ee9727271a307fd991dcbd90ae8eee4d7c5513a683e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0696341ea2478cd3c3a3b8cb6e0bc009cc16e188d54897a2d85c9aa3d1740379
MD5 e359ac983d5ab284d90e90caa15fd3a1
BLAKE2b-256 2dff9f2fb560f7ca0b9a76b0564e617c10143d8cded38f76bec52b80c24180fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9555f2a994c792a3387f7b02be44c9b9c2d67379444df3d7614374079216893
MD5 2b54f5acc736372b5204441e3677d0a5
BLAKE2b-256 cd1139218f96a8da26367e5c9cca8686174669dabd0b47d65889b68384aad27a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75d594eab10e4cb370bfe67b2b9434b20cc3756d102738e14e8366246974361e
MD5 4d10ad7eba3677af905362da4af17cf0
BLAKE2b-256 ebb6890ab384119f054ecb7fe26886d0ab8517fbd8511d9c37dcca94efa65cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c97e56f49481416bd84f8932cc86cd26cfee9779cfe2efc28a9aa2c41a526d4f
MD5 4edc41a9eed67650ee1f6fb56c98775d
BLAKE2b-256 3c0b41c5a15a890ac058644d4820b09eb19f01643b6f13f7ec968a1efb2c0d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ee3a720a78a61cd64659e799c236f719bb9b038c3553fc647988b9be6f6f183
MD5 b05947e228700379abcb93165a2c6d1d
BLAKE2b-256 05d7f2ceb6d2e88f9faae4e2b51b780c7af1ea54b79fb88967a494b9fe0875fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 11ac537bf5c2dd21e8c7b1350382761916acd0dae8052b5261f75f4adb941af4
MD5 4950db855b77adc28b3bcb8ea0f9b949
BLAKE2b-256 125c35dff91c6f33ed51735e182c37770ae2099b35f8d167114e425706075b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 368c35ab5bf56c79b244f36a90fdb0bd56e266ff9a917df07b5ae572b30fea8c
MD5 af1a6163755acc0ee5f72b28baccddef
BLAKE2b-256 239d3a3bae6bbe51893c8f7591d9b4f375718a6991e9a4deaed6bc63aa678967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55daa9f5106f05647b1144296ac5fed428e43442593cff9f292e93792f7d264e
MD5 270ba035ddccd8f931c79e63814c208e
BLAKE2b-256 fe36c92561322204228574a3ba627820f9c6f39bbd0cc948a525fb07e2773ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5ac23a45d3f68e60e3ee9b064d1b77961b6d34974bbbe7564d0053aa70ceea4
MD5 fc83fbeafb76b8c382f9b6f00d1f1664
BLAKE2b-256 ae44fd287c17d819f474535b30a0584698f1832a83a8e064f8927f35ee598f9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c8acfb5e6312270e3defe05951ac6e1e048069d786c204df006a289019485f4e
MD5 7449969590cd4e4279ad66fb5191f964
BLAKE2b-256 6da5acad152a45ca30ef549b3b1e8c68e1e98b07bc68f38eb0d8bab7cf60b5b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8f0d68fc1578d1788c0905fa8077311a58de0fd2b3545684e089be0f49f5d51e
MD5 e434cbc84b557c93d6f8bb206eeed4ff
BLAKE2b-256 55d7ce3ae4ed5e2ab572cdaf80433b16cdcf7a803ff78737c6182723fdd07e37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f39c144d5405638037006f9b3d76dbdc135ff9910b8f8492e6224e0b20cfffa
MD5 2b89dce4f691e204585ecd1adcce6585
BLAKE2b-256 d350626bfe2733b9b4b65b261141940cbb17a607a385b27217898082b1502394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3203e61da6d2a21f1c52e35a40c1df5d95bd989de9a5948bc80119fe8026d0a
MD5 56a0f7a77e1c5a0ee039b1e279548c96
BLAKE2b-256 8702f5a76cafee9bf18f7cf2cccdd1a69ecd22d9a57dbd0e440a90c33e269873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4530d967c9df92403f81c5fddf487cbf6f282f08fce92af08950e3f5740c1265
MD5 c51983a91fc647f014fdcfa62055b67c
BLAKE2b-256 06aacf7fadcb313ee68b0609d7e1d2d7f4aee59e9211cfa79c1a2b8659d62c16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bee3a281c01a97b2d22281f11511ed8c664a056abecaaab3d34baf7611a918cf
MD5 20192119e4d66361de69c076b72d88ec
BLAKE2b-256 3147bd0c3101d4ca90e70b5ea1602e2f7f05eaa6df0accce86c28c435f56ab6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d4d62bf4d884c14b82cff57d18ecc24f670a927b4c0b0508f12de43b110eb8b6
MD5 e17b8599ad77b54fbbc23717105f6010
BLAKE2b-256 3a9f445b5cb8bd85cbdd396d01c70ac9c4d8e6a93fd5e66bbf4c5441ac024ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba8fc7f20aaf555224ce968f482ae1e865205909364a4903fd6a2986b29fd1b5
MD5 8ed4516e91ef02d21459aea7fa909cc3
BLAKE2b-256 78c9c990e345166c30a70d99c8fdf18fd097957abd0c913f7934d010c98c23e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f0e0836f3b7680510d8dada16a1ccb3307a17281af502e3a4f2386d122a04ff
MD5 8bf19427734df3114a8e682f4a69ab70
BLAKE2b-256 44fb574bd6dbfe84f2e669e0511e4a9d4f6f6acf18786dbe77e7b69390803dbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 388ba8bb9a750f7c32e871f94511a320aa3994602931ebfcbf5c573b5d2c17db
MD5 0a7381263fcdb99d6b3abe15da5570b7
BLAKE2b-256 ae5f01e9977766311d581b51dd0921f6fabdac8a7c0d00c9d5a56a19ca23ed7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5640e382d0088938fbca46944eb4c1092f35f06e8329d9bb4a1655e07fbe73cf
MD5 7d82b4ec0599419222b9d74e2773f266
BLAKE2b-256 8fd212085b792b408380d867de82efae912b88ce7facd036ffd746ec32bce062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f55f57c848bca0aaa7b551a21b5359225a600103caca0603cb745b1bdcafce34
MD5 000dd47322ab0c9378c2cde1f5a3f6a9
BLAKE2b-256 f7529caa7b5696bc8a1cf605360600af9a224b0a40b97469bd266726514c6f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 343dab1a39b8eb31f11dc6df38f756f723baeba62f983c52395a61a5311867f9
MD5 5240de917f3fcfaa065335b633b35173
BLAKE2b-256 2ad6f39d9d9f76a7c75e525731ff8e490786d71948e9f219468c35f4ece49fe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c818b32985a377d1ef872a418a6bd216110a1d193069d8997ed00cbe53a12d5
MD5 d09a177774cbde6482e23247711d33a7
BLAKE2b-256 105d916c336f4891e59a77a9742239864621ad696c34b646a009b2bc3845e53c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c658b534a6ba60078baedb7601675ef3c8602652f27cb1e3d684dfe0c60d75f5
MD5 de849678e4235419ffb161f442fec1b7
BLAKE2b-256 f6d499edcb638fb3a67bed7b0c23cfd89e9d6978a832cfcfd232228cfa9436ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff6223f9868f31c7f290838eab55721208602730c9d91eb96e426962d0e46d27
MD5 a5950ad249feb57720e45c39d7cce4ed
BLAKE2b-256 ce9e6d28b1b63a174e2d8e82bda5989b61029354ba1f0437577ff68902426253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 450fed2710f1f1522110df555b89b20c554a85006ff7ed03c95eab1fecbdf0fa
MD5 3cafa826e420cf1bf07b5115c3e129b6
BLAKE2b-256 01ac263050bcf6cba272b9400fa4bc46dad9a02189e559a72eecd9f3915018b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7c5091d57952da34102522a490cece10858ba4a840d77c5e7ec1d4693382454
MD5 6b6e9d6de6d3b7c22044cceeacded651
BLAKE2b-256 44982d1140590f70dfe2d9cea1fad7b5a9de111ce7cdab95c5a38c4cb3793ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 418dec4c8258b1eca2c026bd7e352e1a21c6d7468c66bd0852ab669897603d60
MD5 941b2cd4f20e44020d91f74c95d41b1e
BLAKE2b-256 8d607723f1b13bc2305f79285814eabc899b64660a3e8808a12100c3b0059d92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77f21cbb514a911df91830653e5c441eb20379ac194be9c9ccf2c6126e9cba4b
MD5 35978ad8a4c3346b4d1bf9b7dac55e83
BLAKE2b-256 fb48423405f5f7fcd1d57128d1ab8c47e1cbc9e475d9da28cf944c024fb3a62f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cridecoder-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71e785112efcc07cb0a62327f0542f722f2be1bebfe2e4068e991182cdb2f31c
MD5 b9c3c5328b658384d0f0be457e8976c8
BLAKE2b-256 5643bf9858715041483960be1dc196fa6a41167d233ed53c5138da7c550c727a

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