-
Notifications
You must be signed in to change notification settings - Fork 642
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Playlist improvements #14
Comments
See https://github.com/np1/pms-youtube/issues/18 regarding going backward in playing items, basically, I don't know how to go about implementing it without interrupting continuous playback. Scrolling through the list with vim keys (or even any keys) would be great, I think it would best be done using the pythons curses library, although that wouldn't work on Windows. It would be quite a lot of work right now (basically all the UI code would need to be rewritten). Maybe this is something I will do further down the line. |
Maybe add a option just the use the id only also long short |
@gotbletu - Done, added to develop branch for next release - https://github.com/np1/mps-youtube/commit/129f7e7ff5ae8aa5460ec41e44ae217eda6cab99 |
Perhaps a lua script could be used with mpv.
Use mpv --lua scriptname.lua This script causes mpv to exit returning 42 when h is pressed. That could then be interpreted as a signal to go a track back, and something similar could be used with l for going forward. |
You can also try the python bindings for libmpv, and use slave mode with mplayer. |
previous / next track is implemented with you can use
The file(s) must reside in the mps-youtube config dir (usually |
In a playlist you can skip to the next track but you can't go to the previous track or play a certain track.
It would also be useful to use vim keys for navigations (this was also used in Google Reader and is now used in Google+ or Facebook for instance - e.g.: J to go to the next track or K to go to the previous track).
The text was updated successfully, but these errors were encountered: