#music #player #daemon #streaming #tokio

app music-player

使用 Rust 编写的可扩展音乐播放器守护进程

3 个版本

0.2.0-alpha.132023 年 5 月 7 日
0.2.0-alpha.122023 年 4 月 3 日
0.2.0-alpha.112023 年 3 月 2 日
0.2.0-alpha.10 2023 年 1 月 14 日
0.1.6 2022 年 9 月 23 日

#2794 in 命令行工具

每月 46 次下载

MIT 许可证

13MB
38K SLoC

Rust 27K SLoC // 0.0% comments TSX 10K SLoC // 0.1% comments Bazel 551 SLoC // 0.1% comments JavaScript 240 SLoC // 0.0% comments TypeScript 199 SLoC // 0.0% comments JSX 146 SLoC Shell 19 SLoC // 0.4% comments

音乐播放器(使用 Rust 编写)

License: MIT GitHub all releases release rust-clippy discord-server

注意:这是一个正在进行中的项目。 🏗️🚧

这是一个我为个人使用而创建的简单音乐播放器。它使用 Rust 编写,并使用了 rodiosymphoniagRPC 库。
音乐通过服务器的音频设备播放。守护进程存储所有可用音乐的信息,并且这些信息可以轻松搜索和检索。类似于 mpdMopidy,但使用 Rust 编写。

安装

# Install dependencies
brew install protobuf # macOS
sudo apt-get install -y libasound2-dev protobuf-compiler # Ubuntu/Debian
choco install protoc # Windows using Chocolatey Package Manager
# Compile
git clone https://github.com/tsirysndr/music-player.git
cd music-player/webui/musicplayer
nvm install # install node version specified in .nvmrc (optional on windows)
npm install -g yarn
yarn install && yarn build # build webui
cd ../..
cargo install --path .

注意:不要忘记将 ~/.cargo/bin 添加到您的 PATH 环境变量中。

macOS/Linux

brew install tsirysndr/tap/musicplayer

或者在此处下载您平台的最新版本 下载

📦 下载

最新版本(桌面版)

最新版本(命令行版)

其他版本...

启动服务器

music-player

用法

USAGE:
    music-player [SUBCOMMAND]

OPTIONS:
    -h, --help       Print help information
    -V, --version    Print version information

SUBCOMMANDS:
    albums      List all albums
    artists     List all artists
    help        Print this message or the help of the given subcommand(s)
    next        Play the next song
    pause       Pause the current song
    open        Open audio file
    playlist    Manage playlists
    prev        Play the previous song
    queue       Manage the queue
    play        Resume the current song
    scan        Scan music library: $HOME/Music
    search      Search for a song, album, artist or playlist
    stop        Stop the current song
    tracks      List all tracks

GraphQL API

# Start the server
music-player

在您的浏览器中打开 https://127.0.0.1:5053/graphiql

功能

  • 从指定路径播放音乐
  • 支持配置文件
  • gRPC API 用于控制播放器
  • 扫描音乐库
  • 播放/暂停/停止音乐
  • 下一曲/上一曲
  • 创建/删除播放列表
  • 音乐播放器客户端
  • 终端 UI(使用 tui-rs
  • GraphQL API
  • Web UI
  • 桌面版本(使用 gtk-rs
  • Android 库(参见 songbird-androidsongbird-android-rs
  • iOS 库
  • 移动版本(React Native)
  • 流式传输到 Chromecast
  • 流式传输到 Airplay
  • 流式传输到 Kodi
  • 流式传输到 UPnP 媒体渲染器
  • 从 YouTube(仅音频)流式传输
  • 从 Spotify 流式传输
  • 从 Soundcloud 流式传输
  • 从 Deezer 流式传输
  • 从 DatPiff 流式传输
  • 从 Tidal 流式传输
  • MyVazo 流式传输

依赖项

~97–135MB
~2.5M SLoC