Skip to content

Commit

Permalink
changes for release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
massimomorara committed May 27, 2018
1 parent 2aafac3 commit 5782640
Show file tree
Hide file tree
Showing 3 changed files with 240 additions and 31 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Yasap
## Yet Another Simple Audio Player

Yasap is a simple command line audio player that uses FFmpeg and SDL2 libraries.
Yasap is a simple command line audio player, that uses FFmpeg and SDL2 libraries, with support for multiple tracks in a single audio file trough Cuesheets embedded in a "cuesheet" named metadata tag (Vorbis comment, Matroska tag, MP3 tag, etc).

Written in C++14, in a Linux Debian stable (stretch) platform, should be easily portable in others fairly recently Linux/Unix platforms.

The code is in a unique C++14 source file (`yasap.cpp`) and a simple `Makefile` show how to compile it and which libraries to link.

The `Makefile` uses `g++` but the code compile also with `clang++`.

The use is simple: the `yasap` executable accept only and only one command line parameter, the audio file, and play it
The use is simple: the `yasap` executable accept only one command line parameter, the audio file, and play it.

By example

Expand All @@ -28,4 +28,7 @@ When playing, the following keys/commands are enabled
down arrow seek backward 1 minute
page up seek forward 10 minutes
page down seek backward 10 minutes
home seek to preceding track (only for files with multiple tracks)
end seek to following track (only for files with multiple tracks)
```

6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

0.1.0 - 2018.05.27

- metadata tags print added
- multiple tracks (trough "cuesheet" tag) audio file support added
- minor changes

0.0.2 - 2018.03.01

- format conversion support added
Expand Down
Loading

0 comments on commit 5782640

Please sign in to comment.