https://github.com/dimkr/xplayargs
A xargs-like audio player
https://github.com/dimkr/xplayargs
Last synced: 12 months ago
JSON representation
A xargs-like audio player
- Host: GitHub
- URL: https://github.com/dimkr/xplayargs
- Owner: dimkr
- License: mit
- Created: 2014-09-24T20:17:56.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-24T20:18:11.000Z (almost 12 years ago)
- Last Synced: 2025-01-23T14:29:56.186Z (over 1 year ago)
- Language: C
- Size: 97.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
_
__ ___ __ | | __ _ _ _ __ _ _ __ __ _ ___
\ \/ / '_ \| |/ _` | | | |/ _` | '__/ _` / __|
> <| |_) | | (_| | |_| | (_| | | | (_| \__ \
/_/\_\ .__/|_|\__,_|\__, |\__,_|_| \__, |___/
|_| |___/ |___/
xplayargs is a minimalistic audio player that reads the paths of audio files
from its standard output and plays them using external players, such as:
- mpg123 (http://www.mpg123.de/)
- ogg122 (https://github.com/dimkr/ogg122)
Usage Examples
==============
Play all audio files in a directory:
ls ~/Music | xplayargs
Play all audio files in a directory, in random order:
ls ~/Music | sort -R | xplayargs
Play all audio files in a directory, in random order with repeat:
while [ true ]; do ls ~/Music | sort -R | xplayargs; done
Credits and Legal Information
=============================
xplayargs is free and unencumbered software released under the terms of the MIT
license; see COPYING for the license text. For a list of its authors and
contributors, see AUTHORS.
The ASCII art logo at the top was made using FIGlet (http://www.figlet.org/).