-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-add default impl to SessionConfig and make Credentials::with_password generic over Into<String> add docs for Credential reintroduce old Default impl for SessionConfig use the third argument for the track-to-play rather than a testing id
- Loading branch information
1 parent
963d50e
commit ec1ec59
Showing
7 changed files
with
67 additions
and
48 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,41 @@ | ||
use std::env; | ||
use tokio_core::reactor::Core; | ||
|
||
use librespot::core::authentication::Credentials; | ||
use librespot::core::config::SessionConfig; | ||
use librespot::core::session::Session; | ||
use librespot::core::spotify_id::SpotifyId; | ||
use librespot::playback::config::PlayerConfig; | ||
|
||
use librespot::playback::audio_backend; | ||
use librespot::playback::player::Player; | ||
|
||
fn main() { | ||
let mut core = Core::new().unwrap(); | ||
let handle = core.handle(); | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
let session_config = SessionConfig::default(); | ||
let player_config = PlayerConfig::default(); | ||
|
||
let args: Vec<_> = env::args().collect(); | ||
if args.len() != 4 { | ||
println!("Usage: {} USERNAME PASSWORD TRACK", args[0]); | ||
eprintln!("Usage: {} USERNAME PASSWORD TRACK", args[0]); | ||
return; | ||
} | ||
let username = args[1].to_owned(); | ||
let password = args[2].to_owned(); | ||
let credentials = Credentials::with_password(username, password); | ||
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 = core | ||
.run(Session::connect(session_config, credentials, None, handle)) | ||
.unwrap(); | ||
let session = Session::connect(session_config, credentials, None).await.unwrap(); | ||
|
||
let (mut player, _) = Player::new(player_config, session.clone(), None, move || { | ||
(backend)(None) | ||
let (mut player, _) = Player::new(player_config, session, None, move || { | ||
backend(None) | ||
}); | ||
|
||
player.load(track, true, 0); | ||
|
||
println!("Playing..."); | ||
core.run(player.get_end_of_track_future()).unwrap(); | ||
|
||
player.await_end_of_track().await; | ||
|
||
println!("Done"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,36 @@ | ||
use env_logger; | ||
use std::env; | ||
use tokio_core::reactor::Core; | ||
|
||
use librespot::core::authentication::Credentials; | ||
use librespot::core::config::SessionConfig; | ||
use librespot::core::session::Session; | ||
use librespot::core::spotify_id::SpotifyId; | ||
use librespot::metadata::{Metadata, Playlist, Track}; | ||
|
||
fn main() { | ||
#[tokio::main] | ||
async fn main() { | ||
env_logger::init(); | ||
let mut core = Core::new().unwrap(); | ||
let handle = core.handle(); | ||
|
||
let session_config = SessionConfig::default(); | ||
|
||
let args: Vec<_> = env::args().collect(); | ||
if args.len() != 4 { | ||
println!("Usage: {} USERNAME PASSWORD PLAYLIST", args[0]); | ||
eprintln!("Usage: {} USERNAME PASSWORD PLAYLIST", args[0]); | ||
return; | ||
} | ||
let username = args[1].to_owned(); | ||
let password = args[2].to_owned(); | ||
let credentials = Credentials::with_password(username, password); | ||
let credentials = Credentials::with_password(&args[1], &args[2]); | ||
|
||
let uri_split = args[3].split(":"); | ||
let uri_split = args[3].split(':'); | ||
let uri_parts: Vec<&str> = uri_split.collect(); | ||
println!("{}, {}, {}", uri_parts[0], uri_parts[1], uri_parts[2]); | ||
|
||
let plist_uri = SpotifyId::from_base62(uri_parts[2]).unwrap(); | ||
|
||
let session = core | ||
.run(Session::connect(session_config, credentials, None, handle)) | ||
.unwrap(); | ||
let session = Session::connect(session_config, credentials, None).await.unwrap(); | ||
|
||
let plist = core.run(Playlist::get(&session, plist_uri)).unwrap(); | ||
let plist = Playlist::get(&session, plist_uri).await.unwrap(); | ||
println!("{:?}", plist); | ||
for track_id in plist.tracks { | ||
let plist_track = core.run(Track::get(&session, track_id)).unwrap(); | ||
let plist_track = Track::get(&session, track_id).await.unwrap(); | ||
println!("track: {} ", plist_track.name); | ||
} | ||
} |