« get me outta code hell

http-music - Command-line music player + utils (not a server!)
about summary refs log tree commit diff
path: root/src
AgeCommit message (Collapse)Author
2018-03-19Make duration graph use common CLI stuffFlorrie
2018-03-19Separate common CLI options into their own fileFlorrie
2018-01-17Merge branch 'master' of https://github.com/towerofnix/http-musicFlorrie
2018-03-14(play) Add -S as alias --sort-modeFlorrie
2018-03-14Add alphabetic sortFlorrie
This automatically flattens the playlist, so you don't need to pass --flatten-tracks if you also pass --sort a-z. Unfortunately this means there's no particularly convenient way to sort groups alphabetically.
2018-03-14(duration-graph) Add --first and -f as aliases to --only-firstFlorrie
2018-03-07Make (t) key only show information about one trackFlorrie
The showTrackInfo keybinding command can now take a number of next/ previous tracks to show.
2018-03-03Add track count metric to duration-graphFlorrie
2018-03-03Be more specific about loop-play errorsFlorrie
2018-03-03Output sane extnames in local downloaderFlorrie
2018-03-03Add MOD files to crawl-localFlorrie
2018-02-26Add fancy duration graph utilityFlorrie
2018-02-23Don't count intentionally .kill()ing a process as it crashingFlorrie
2018-02-23Handle player process crashing gracefullyFlorrie
E.g. try pulseaudio -k, then run http-music.
2018-02-22Add comment explaining what hasOpenedPlaylist doesFlorrie
I can totally see myself forgetting what on earth the variable exists for without this documentation.
2018-02-22Only open default playlist when neededFlorrie
That is, only when no playlist has already been loaded, and the action requires a playilst. Also a todo.txt note.
2018-02-18Make completely new filter systemFlorrie
See the man page for how it works now.
2018-02-18Let 'source' property simply open a fileFlorrie
2018-02-18Move downloadPlaylistFromOptionValue into general-utilFlorrie
2018-02-16Make --track-display-file show SOURCE path to trackFlorrie
This also means we're keeping track of the source item of items, which is sure to be useful more later.
2018-02-12Add --track-display-file option for meme OBS livestreamsFlorrie
2018-02-12Make it reasonable to have crawl-http save to a file while verbosely loggingFlorrie
2018-01-27Make crawl-http go through one directory at a timeFlorrie
Hopefully this makes the tool, like, less of an unintentional denial-of-service.
2018-01-27Various improvements to crawl-httpFlorrie
Names are now trimmed. You shouldn't see " Vim!" anymore - just "Vim!". .MOD files are considered to be music. The crawler will try to avoid going out of whatever directory was passed to it.
2018-01-24Revert "Add paused indicator for mpv player"Florrie
This reverts commit a22688a0f04920c73a06a7c1be09037c4de8f0ce. I still have to think through this feature a fair bit more - currently if you skip to the next track while paused, or pause before MPV actually starts playing, the paused indicator shows while MPV isn't actually paused.
2018-01-24Add paused indicator for mpv playerFlorrie
2018-01-24Let ?abc match tracks as well as groupsFlorrie
If you want a *track* whose name is abc but also have a *group* that is named abc, just specify the name of the group containing abc: --keep ?theGroupName/abc instead of --keep ?abc.
2018-01-24Add --playlist-string alias, update man pageFlorrie
2018-01-24MAKE DEFAULT KEYBINDINGS WORK WITH CAPS LOCKFlorrie
2018-01-17Add cp converterFlorrie
2018-01-05WIP(?) metadata processing toolFlorrie
2018-01-05Support mpga in crawl-httpFlorrie
2017-11-27Publish smart-playlist command properlyFlorrie
2017-11-24Gracefully exit if the active playlist has no itemsFlorrie
2017-11-12Add --show-keybindings and make a string dynamicFlorrie
"(Press I for track info!)" now displays the appropriate keybinding, rather than always showing "I". Also made the keybinder handler function async; it now waits for its given commands to finish. This doesn't particularly change anything but it Makes Sense.
2017-11-09Merge branch 'master' of https://github.com/towerofnix/http-musicFlorrie
2017-11-09Let keybindings run shell commands, if --trust option is givenFlorrie
Keybinding action format: [[..combo..], 'runShellCommand', ..command name.., [..arguments..]] (--trust is an alias for --trust-shell-commands. When --trust appears in an "options" property of a playlist (or anywhere besides the `http-music play` invocation on the command line, shell command permisisons are *revoked* - they cannot be enabled, even by directly passing --trust to the command line.) Also adds a note to todo.txt.
2017-11-08Merge branch 'master' of https://github.com/towerofnix/http-musicFlorrie
2017-11-08Only run 'top' keybinding for a specific comboFlorrie
This lets custom keybinding files partially overwrite pre- existing ketbindings.
2017-11-05Re-export getItemPath (fixes download-playlist)Florrie
2017-10-30Actually clear status line properlyFlorrie
2017-10-30Never show two identical track indexesFlorrie
2017-10-30Add missing percent symbol to mpv status lineFlorrie
2017-10-30Clear old status line when printing a new oneFlorrie
2017-10-29Add track number to status line and make status line more consistentFlorrie
This does two big things - there's a few changes in pickers.js to support track numbers (and a new supporting function in playlist-utils.js), and some changes in loop-play.js to make the status line formatting consistent regardless of the active player.
2017-10-27Add simple setup wizard (http-music setup)Florrie
..and create/update related man pages. Try it!
2017-10-25Add way to search whole playlist for a particular nameFlorrie
Try play -c -k '?My Album Name' to make http-music only play the group with the name 'My Album Name', no matter where it is in the playlist!
2017-10-25Make -k and -x fail when the passed group path is not perfectly foundFlorrie
2017-10-24Add --open-playlist-string optionFlorrie
Lets playlists be passed to `play` by an actual string argument; e.g. --playlist-string '{"tracks": [...]}'. Could work well with http-music's own crawler utilities (e.g. --playlist-string '{"source": ["crawl-local", "."]}' or with external ones (e.g. --playlist-string "$(cool-crawler-utilith.sh)". At the moment the only workaround is to use a temporary file to store the playlist in, or to pipe the output of the crawler command (which might be `echo`!) to http-music and use /dev/stdin as the --playlist-file value.. which obviously isn't cross-platform or practical! I'd like to have some aliases in the future since --open-playlist-string isn't really easy to type.
2017-10-12Add --start-at option and 'track version' conceptFlorrie