{"id":33936804,"url":"https://github.com/0x08088405/rmp3","last_synced_at":"2026-01-11T17:03:26.037Z","repository":{"id":54360709,"uuid":"234834347","full_name":"0x08088405/rmp3","owner":"0x08088405","description":"fast \u0026 safe no_std minimp3 wrapper","archived":false,"fork":false,"pushed_at":"2023-07-27T00:13:30.000Z","size":92,"stargazers_count":14,"open_issues_count":1,"forks_count":10,"subscribers_count":2,"default_branch":"trunk","last_synced_at":"2025-12-14T02:36:50.385Z","etag":null,"topics":["audio","mp3","mp3-decoder","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0x08088405.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-19T03:27:11.000Z","updated_at":"2024-04-12T04:53:25.000Z","dependencies_parsed_at":"2024-11-27T22:08:34.171Z","dependency_job_id":"08957831-1ead-43d8-8916-553ceb5ed723","html_url":"https://github.com/0x08088405/rmp3","commit_stats":null,"previous_names":["viriuwu/rmp3","notviri/rmp3","viriw/rmp3"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/0x08088405/rmp3","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0x08088405%2Frmp3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0x08088405%2Frmp3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0x08088405%2Frmp3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0x08088405%2Frmp3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0x08088405","download_url":"https://codeload.github.com/0x08088405/rmp3/tar.gz/refs/heads/trunk","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0x08088405%2Frmp3/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28314261,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T14:58:17.114Z","status":"ssl_error","status_checked_at":"2026-01-11T14:55:53.580Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["audio","mp3","mp3-decoder","rust"],"created_at":"2025-12-12T14:35:04.575Z","updated_at":"2026-01-11T17:03:26.031Z","avatar_url":"https://github.com/0x08088405.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status (Travis-CI)](https://travis-ci.com/notviri/rmp3.svg?branch=trunk)](https://travis-ci.com/notviri/rmp3)\n[![Crates.io](https://img.shields.io/crates/v/rmp3)](https://crates.io/crates/rmp3)\n[![Documentation](https://docs.rs/rmp3/badge.svg)](https://docs.rs/rmp3)\n\n# rmp3\nIdiomatic `no_std` bindings to [minimp3](https://github.com/lieff/minimp3) which don't allocate.\n\n## Documentation\n\nThe documentation is hosted online over [at docs.rs](https://docs.rs/rmp3/).\n\n## Usage\n\nAdd this to your `Cargo.toml`:\n\n```toml\n[dependencies]\nrmp3 = \"0.3\"\n```\n\n... or, if you need `std` specific features:\n```toml\n[dependencies]\nrmp3 = { features = [\"std\"], version = \"0.3\" }\n```\n\nThe most basic example is using the provided streaming iterator to decode a file, like so:\n\n```rust\nuse rmp3::{Decoder, Frame};\n\nlet mp3 = std::fs::read(\"test.mp3\")?;\nlet mut decoder = Decoder::new(\u0026mp3);\nwhile let Some(frame) = decoder.next() {\n    if let Frame::Audio(audio) = frame {\n        // process audio frame here!\n        imaginary_player.append(\n            audio.channels(),\n            audio.sample_count(),\n            audio.sample_rate(),\n            audio.samples(),\n        );\n    }\n}\n```\n\nCheck out the [documentation](#Documentation) for more examples and info.\n\n## Features\n- `float`: Changes the sample type to a single-precision float,\nand thus decoders will output float PCM.\n    - **This is a non-additive feature and will change API.**\n    **Do not do this in a library without notice [(why?)](\nhttps://github.com/rust-lang/cargo/issues/4328#issuecomment-652075026).**\n- `mp1-mp2`: Includes MP1 and MP2 decoding code.\n- `simd` *(default)*: Enables handwritten SIMD optimizations on eligible targets.\n- `std`: Adds things that require `std`,\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0x08088405%2Frmp3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0x08088405%2Frmp3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0x08088405%2Frmp3/lists"}