gpt4 book ai didi

audio - 在Rust中播放网址中的音频

转载 作者:行者123 更新时间:2023-12-03 02:30:09 26 4
gpt4 key购买 nike

我已经使用Rodio Crate通过文档来播放本地文件中的音频,但无法弄清楚如何使用url播放音频。

最佳答案

这是一个使用阻塞reqwest的简单示例。在开始播放之前,这会将整个音频文件下载到内存中。

use std::io::{Write, Read, Cursor};
use rodio::Source;

fn main() {
// Remember to add the "blocking" feature in the Cargo.toml for reqwest
let resp = reqwest::blocking::get("http://websrvr90va.audiovideoweb.com/va90web25003/companions/Foundations%20of%20Rock/13.01.mp3")
.unwrap();
let mut cursor = Cursor::new(resp.bytes().unwrap()); // Adds Read and Seek to the bytes via Cursor
let source = rodio::Decoder::new(cursor).unwrap(); // Decoder requires it's source to impl both Read and Seek
let device = rodio::default_output_device().unwrap();
rodio::play_raw(&device, source.convert_samples()); // Plays on a different thread
loop {} // Don't exit immediately, so we can hear the audio
}
如果要实现实际的流传输,音频文件的一部分将被下载然后播放,并且在以后需要时获取更多内容,那么它将变得更加复杂。请参阅Rust Cookbook中有关部分下载的条目: https://rust-lang-nursery.github.io/rust-cookbook/web/clients/download.html#make-a-partial-download-with-http-range-headers
我相信使用async reqwest也可以更轻松地完成此操作,但我仍在自己进行尝试。

关于audio - 在Rust中播放网址中的音频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63463503/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com