Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rubiojr/rplay
Command line audio player for your Restic repository.
https://github.com/rubiojr/rplay
Last synced: 10 days ago
JSON representation
Command line audio player for your Restic repository.
- Host: GitHub
- URL: https://github.com/rubiojr/rplay
- Owner: rubiojr
- License: bsd-2-clause
- Created: 2020-10-30T13:19:15.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-07T01:51:11.000Z (almost 4 years ago)
- Last Synced: 2024-08-02T09:23:30.617Z (3 months ago)
- Language: Go
- Homepage:
- Size: 528 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-restic - RPlay - Command line audio player for your Restic repository (Apps)
README
# RPlay
[![CI Status](https://github.com/rubiojr/rplay/workflows/ci/badge.svg)](https://github.com/rubiojr/rplay/actions)
[![Go ReportCard](http://goreportcard.com/badge/rubiojr/rplay)](http://goreportcard.com/report/rubiojr/rplay)A command line MP3 player for your [Restic repository](https://restic.net).
## Features
* Index and play available audio files (flac, mp3, ogg)
* ID3 metadata support
* Search your music collection (filename or ID3 tag)
* Support for indexing multiple Restic repositories
* Random, endless playback
* Optionally fetch missing song metadata (artist, album, etc) from Internet (see [ACOUSTICID.md](docs/ACOUSTICID.md))
* macOS and Linux supported## Installation
Binaries for Linux are available in [the releases page](https://github.com/rubiojr/rplay/releases/latest).
You'll need to build from source for macOS and other Linux architectures:
```
GO111MODULE=on go get -u github.com/rubiojr/rplay
```Or clone the repository and run `go build`.
## Usage
### â ïž A word of caution
RPlay does not encrypt the index created (locally, where rplay runs), meaning that the following information from your Restic repository will be available to those with access to the index:
* Audio file names and ID3 metadata
* Audio file contents (cached locally for playback and other things)
* Repository ID
* Restic (packed)blob metadata (the SHA256 of the Packfile where the blob is stored, blob length, offset within the pack file)
* Last file modification time (mtime)
* Hostname where the file was backed up
* Full file path when it was backed up### Indexing your MP3
The first thing we need to do, is to index the repository:
![](docs/images/rplay-index.gif)
Indexing yields some stats while indexing:
```
âąż Taco Tuesday.mp3 đŻ 62 new, 0 skipped, 0 errors, 11 f/s, 0.02 minutes left
```_file being indexed, indexed files count, already indexed, indexing speed, remaining time_
and when the indexing process finishes:
```
đ„ 74 indexed, 0 already present. Took 5 seconds.
```Worth noting also that RPlay accepts the same repository (the `-r` flag) URIs and backends [Restic does](https://restic.readthedocs.io/en/stable/030_preparing_a_new_repo.html), which means S3, rest-server, Backblaze, etc are all supported.
The indexing process will create an index in a OS specific path:
**Linux**
`~/.local/share/rplay`
**MacOS**
`~/Library/Application Support/rplay`
### Searching our collection
The `search` command will search our indexed files (filename searching only for now):
![](docs/images/rplay-search.gif)
### Playing our tunes
Once we have indexed our repository, we're ready to play:
![](docs/images/rplay-random.gif)
The play command also supports playing a specific file:
```
$ rplay -r rest:http://localhost:8000 search "*playa*"
Searching for *playa*...
ID: e6a9a3e7e630744cd6bcfd0820a25f7b9b467c5d472f7d0f1bd443103f1fa35c
Album: La Playa
Artist: DJ ALEX
Filename: La Playa.mp3
Genre: unknown
Title: La Playa
Year: 20190718
``````
rplay -r rest:http://localhost:8000 play e6a9a3e7e630744cd6bcfd0820a25f7b9b467c5d472f7d0f1bd443103f1fa35c
Playing e6a9a3e7e630744cd6bcfd0820a25f7b9b467c5d472f7d0f1bd443103f1fa35c...âŁŸ Next song found, loading...
album: La Playa
artist: DJ ALEX
filename: La Playa.mp3
genre:
title: La Playa
year: 20190718
```### Environment variables
RPlay supports configuring Restic's repository location and credentials via environment variables, so you don't have to type the URI and password all the time:
```
export RESTIC_REPOSITORY=rest:http://localhost:8000
export RESTIC_PASSWORD=secret
```## Roadmap
* Better curses UI
* Flag songs as hidden/unwanted## Credits
RPlay is an experiment quickly built in a few days thanks to the following projects that power it:
* [restic](https://restic.net) (via [RAPI](https://github.com/rubiojr/rapi))
* [go-mp3](https://github.com/hajimehoshi/go-mp3)
* [oto](https://github.com/hajimehoshi/oto)
* [urfave/cli](https://github.com/urfave/cli)
* [bluge](https://github.com/blugelabs/bluge)
* [go-app-paths](https://github.com/muesli/go-app-paths)
* [reflow](https://github.com/muesli/reflow)
* [termenv](https://github.com/muesli/termenv)
* [spinner](https://github.com/briandowns/spinner)