Remove a lot of the mpris test applications
This commit is contained in:
parent
3f6f8c453b
commit
130b9f6c32
|
@ -1,20 +0,0 @@
|
|||
/*
|
||||
Copyright 2023, Savanni D'Gerinel <savanni@luminescent-dreams.com>
|
||||
|
||||
This file is part of the Luminescent Dreams Tools.
|
||||
|
||||
Luminescent Dreams Tools is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
Luminescent Dreams Tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with Lumeto. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
use dbus::ffidisp::Connection;
|
||||
use music_player::audio::list_devices;
|
||||
|
||||
fn main() {
|
||||
for device in list_devices(Connection::new_session().unwrap()).unwrap() {
|
||||
println!("Device: [{}] {}", device.address, device.name);
|
||||
}
|
||||
}
|
|
@ -1,32 +0,0 @@
|
|||
/*
|
||||
Copyright 2023, Savanni D'Gerinel <savanni@luminescent-dreams.com>
|
||||
|
||||
This file is part of the Luminescent Dreams Tools.
|
||||
|
||||
Luminescent Dreams Tools is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
Luminescent Dreams Tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with Lumeto. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
use dbus::ffidisp::Connection;
|
||||
use music_player::audio::{Message, MprisDevice};
|
||||
use std::{env, io, thread};
|
||||
|
||||
fn main() {
|
||||
let device_address = env::var("DEVICE").unwrap();
|
||||
|
||||
let (tx, rx) = std::sync::mpsc::channel();
|
||||
let app_thread = thread::spawn(move || {
|
||||
let mut device = MprisDevice::new(device_address).unwrap();
|
||||
device.monitor(rx);
|
||||
});
|
||||
|
||||
let stdin = io::stdin();
|
||||
let mut input = String::new();
|
||||
let _ = stdin.read_line(&mut input);
|
||||
let _ = tx.send(Message::Quit);
|
||||
|
||||
let _ = app_thread.join();
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
/*
|
||||
Copyright 2023, Savanni D'Gerinel <savanni@luminescent-dreams.com>
|
||||
|
||||
This file is part of the Luminescent Dreams Tools.
|
||||
|
||||
Luminescent Dreams Tools is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
Luminescent Dreams Tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with Lumeto. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
use dbus::ffidisp::Connection;
|
||||
use music_player::audio::{Message, MprisDevice};
|
||||
use std::{env, io, thread};
|
||||
|
||||
fn main() {
|
||||
let device_address = env::var("DEVICE").unwrap();
|
||||
let connection = Connection::new_session().unwrap();
|
||||
let player = mpris::Player::new(connection, device_address, 1000).unwrap();
|
||||
player.
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
/*
|
||||
Copyright 2023, Savanni D'Gerinel <savanni@luminescent-dreams.com>
|
||||
|
||||
This file is part of the Luminescent Dreams Tools.
|
||||
|
||||
Luminescent Dreams Tools is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
Luminescent Dreams Tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with Lumeto. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
use dbus::ffidisp::Connection;
|
||||
use music_player::audio::{AudioPlayer, MprisDevice};
|
||||
use std::env;
|
||||
|
||||
fn main() {
|
||||
let device_address = env::var("DEVICE").unwrap();
|
||||
let args = env::args();
|
||||
let track = args.skip(1).next();
|
||||
let device = MprisDevice::new(device_address).unwrap();
|
||||
println!("Track: {:?}", track);
|
||||
match track {
|
||||
Some(track_id) => device.play(track_id),
|
||||
None => device.play_pause(),
|
||||
}
|
||||
.expect("play to start");
|
||||
}
|
Loading…
Reference in New Issue