Drumnicorn
Drumnicorn
```rust use symphonia::core::codecs::{CODEC_TYPE_NULL, DecoderOptions}; use symphonia::core::errors::Error; use symphonia::core::formats::FormatOptions; use symphonia::core::meta::MetadataOptions; use symphonia::core::io::MediaSourceStream; use symphonia::core::probe::Hint; pub fn main() { let path: String = "D:\\Downloads\\twenor-libary\\public\\audio_2.wav".to_string(); // Open the media source. let src...
I had tryed to get into the Code but in my Tests it wont work. If someone could pase a Example Code for following case: 1. Load a Audio File...
 I want to edit these Metadata + if possible ID3 and EXIFF later on
OK that code is working in my env for reading metadata!! ```rust use symphonia::core::formats::FormatOptions; use symphonia::core::io::MediaSourceStream; use symphonia::core::meta::{MetadataOptions, MetadataRevision}; use symphonia::core::probe::Hint; pub fn main() { let path: String = "D:\\Downloads\\twenor-libary\\public\\rick.mp3".to_string();...
Additional for Future: - more focus on letting AI first create Test Script which will test the whole not existing application, to let AI build the Application around that. -...