mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
7efc62b9ca
Move volume calculations out of their own separate samples iteration and into the normalisation iteration
45 lines
1.3 KiB
Rust
45 lines
1.3 KiB
Rust
use std::env;
|
|
|
|
use librespot::core::authentication::Credentials;
|
|
use librespot::core::config::SessionConfig;
|
|
use librespot::core::session::Session;
|
|
use librespot::core::spotify_id::SpotifyId;
|
|
use librespot::playback::audio_backend;
|
|
use librespot::playback::config::{AudioFormat, PlayerConfig};
|
|
use librespot::playback::mixer::NoOpVolume;
|
|
use librespot::playback::player::Player;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
let session_config = SessionConfig::default();
|
|
let player_config = PlayerConfig::default();
|
|
let audio_format = AudioFormat::default();
|
|
|
|
let args: Vec<_> = env::args().collect();
|
|
if args.len() != 4 {
|
|
eprintln!("Usage: {} USERNAME PASSWORD TRACK", args[0]);
|
|
return;
|
|
}
|
|
let credentials = Credentials::with_password(&args[1], &args[2]);
|
|
|
|
let track = SpotifyId::from_base62(&args[3]).unwrap();
|
|
|
|
let backend = audio_backend::find(None).unwrap();
|
|
|
|
println!("Connecting ..");
|
|
let session = Session::connect(session_config, credentials, None)
|
|
.await
|
|
.unwrap();
|
|
|
|
let (mut player, _) = Player::new(player_config, session, Box::new(NoOpVolume), move || {
|
|
backend(None, audio_format)
|
|
});
|
|
|
|
player.load(track, true, 0);
|
|
|
|
println!("Playing...");
|
|
|
|
player.await_end_of_track().await;
|
|
|
|
println!("Done");
|
|
}
|