-
Notifications
You must be signed in to change notification settings - Fork 114
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
Context menu « More… » : To Edit playlist #715
Comments
Happy to look at changing some things, but changes would need to be what is useful for the majority of use cases, not necessarily individual preference.
Not keen on moving the "More..." context menu item, it should be reserved for secondary or less used functions and therefore also lower in the menu than more commonly accessed items.
Why don't you create a list of what you would like in the main context menu and in the "More..." menu? Can then see what other users think. If there is a general consensus on re-arranging the menu then happy to do so.
The bottom of the context menu is reserved for the built-in Kodi context menu items. Can't change this, and don't think it is a good idea even if it was possible.
I can see what is possible, but there are some restrictions on how the pagination of list content works which may mean this is not possible.
The context menu is so named because it provides menu items relevant to the context of the selected list item. It is not intended as a general shortcuts menu. If you want to search for something similar to what is selected, then that is what the "Related videos" menu item is for. Adding general shortcuts would add to the length of the menu, making it more difficult to get to items that are relevant to the context - the same thing you have commented about as already being an issue in item 1 above. |
Hello ! Never used: This is considering I’m using kodi with infrared remote control or rf keyboard with libreelec or coreelec as OS. For page selection: |
About search option: |
The 1. suggestion reminded me of how long I've yearned for to have "Queue Video" moved to to the top (1 space up). For those of us who Queue videos often, it'll be a huge time saver. |
@neo-neo1 - the OP never uses "Queue video" so moving it up won't help them. Can't please everyone, and I'm not keen to make changes just for individual preferences. But open for suggestions, so if you wan't something different, can do so here, and see what others also think and maybe there will be some common requests. FYI "Queue" is a built-in Kodi action, mapped to the "q" key on a keyboard, and able to be mapped to a remote control button or anything else as well, if you want to access it quickly. @codegittest - what you are suggesting regarding page selection may not be possible for technical reasons. Regarding search option and moving out of a long navigation history list, one possibility is to add items to go home or perform a quick search from the context menu of the Next page item itself. |
Thanks for support all! For the page selection, thanks for reply, I understand the way it’s programmed, it’s not something possible (related to kodi or API layer ?). I remember, some time ago, there is an option to play list from here in reverse but I don’t think it was switching from first page to the last page. I already have the maximum 50 item per page, maybe allowing more could be a patch ? About search feature:…. « one possibility is to add items to go home or perform a quick search from the context menu of the Next page item itself. » Sorry, these was probably already talked in forum, I didn’t read all the threat . |
Wasn't suggesting that it would be helpful for this, just pointing out that while neo-neo1 uses this function frequently and prefers that this is more easily accessible, you don't use it all. Everyone's usage is different and there are different ways to achieve the same thing.
There are already a bunch of existing functions that can be mapped to keys or remote control buttons. Quite a few more other functions can also work this way but are currently undocumented.
Not going to do this. Way too much work for such a niche feature.
Related to the API, depending on which API is used.
Not possible due to API limitations without making multiple requests which is wasteful and will slow things down.
Modifying the context menu is not as straightforward as it should be for various technical reasons. If you are happy with this, stick with making those changes for yourself at the moment. As I mentioned I am not keen to make changes just for the sake of making changes without a little more input from other users. The other stuff related to searching and next page navigation actually requires a large number of changes, but these changes are also necessary to fix some other window handling bugs, and are new features that I can see the value of. |
Thanks it was a good suggestion that I forgot about. |
Yes I see that is’nt so easy (« straightforward ») to edit, I’m not a coder and have a lot of respect to you and all of them ! if, by improving page navigation and …(?) in the future, maybe this change in code could bring an easy way to add « random » play. thanks for all ! |
Please try to avoid overly broad feature requests. This issue was opened about changing the context menu, but has already moved towards page navigation. Random play is a completely different issue again. This can also already be done using the "Play all" context menu item on, or from within, a playlist, then choosing "shuffle". If there is a problem with this, then open a new issue so it can be properly discussed/investigated/tracked without getting lost amongst something unrelated. |
Okay, sorry ! |
No need to apologise, just letting you know the best way to avoid things going unnoticed. |
- Will prompt for page of listing to jump to - Can also be used to jump directly to a page of a listing anxdpanic#317 - plugin://plugin.video.youtube/goto_page/<PAGE>/<PATH>
You can test https://github.com/MoojMidge/plugin.video.youtube/releases/tag/v7.0.7%2Bbeta.1 and see if it partially does what you want. Has various navigation options in the context menu of the Next page item (read the changelog for further details) |
- Will prompt for page of listing to jump to - Can also be used to jump directly to a page of a listing anxdpanic#317 - plugin://plugin.video.youtube/goto_page/<PAGE>/<PATH>
Big thank you ! I’m using confluence, kodi 19.5 (matrix) with plugin.video.youtube-7.0.7+beta.1.unofficial.1.zip (plugin.video.youtube-7.0.7+beta.1.zip, not working - error content: xbmccontexUI object has no attribute « get_view_manager »). |
Please provide a log of the invalid page token and search doing nothing. |
Ok, I have kodi log for invalid page, not sure for search option.. sorry, this log was with: |
That seems to be a log of the Is there a different error when using |
Hello, |
- Will prompt for page of listing to jump to - Can also be used to jump directly to a page of a listing anxdpanic#317 - plugin://plugin.video.youtube/goto_page/<PAGE>/<PATH>
Unfortunately the automatically generated page tokens won't work when jumping through a playlist. Will need to see if I can figure out anything about the protobuf tokens to see if they can be generated for V1 requests and playlists, otherwise will need to disable it. It works for more general V3 requests though. |
Ok, really not sure to understand what you mean by« protobuf tokens ». Just to know, I log into my dev account and I can see « …data API v3 v3 « and « …Live API v3 » available. There is something to config with my dev account if you wrote « It works for more general V3 requests though. » ? |
The page tokens are text representations of a bunch of data that identifies each "page" in a Youtube listing. The data is converted to text using the protobuf format. There is nothing to change in your account. General V3 requests refer to things like the results from a search and trending videos. |
Okay, if I understand, maybe there could be an improvement to the protobuf module if the page information is provided from actual api ? For quick search option, it is just me not working from new added context menu feature ? It’s working from addon home page… |
The API does not provide this information for any arbitrary page, only the previous and next pages relative to the current page. To get this information for any page in a listing the token has to be generated, but how this is done is not documented anywhere so it has to be reverse engineered. Regarding the quick search just leave it for now. An updated version will be available shortly. |
https://github.com/anxdpanic/plugin.video.youtube/releases/tag/v7.0.7%2Bbeta.1 is available. Can see if there is any improvement regarding the quick search. No change for the jump to menu item, it will have to be disabled for listings that can't be navigated in this manner in the next beta. |
Thanks for update and informations ! |
Hello,
First, thanks for this great addon ! And really thanks to support old kodi matrix !
I really appreciate and I’m using this addon from several years now and have 2-3 suggestions to improve friendly user, quick « shortcut » for the most used features to edit and navigate on playlist.
on context menu, while logged on playlist, to save some time with IR remote control (or RF keyboard) navigation (mouse on kodi pc is not a problem), could it be possible to move a little upper the choice on list « more… » option ? This is the menu that give the possibility to acces the « related videos » And then « add to… (my list) » the best video! The show me « related videos » really helps to discover new similar video and add them to the actual playlist, if liked, quickly with remote control. These are the 2 best playlist edit option available! Many way to improve, maybe it could be to merge some choice in « more… » menu in the main context menu ? Or, Instead of 8 remote clic down the list to acces « more… » features, it could be the last one on the list, then 1 remote clic upper needed to acces the last item menu would be easier. Or ???
I have about 200 videos on a playlist, I have to do next page 7 time to go on the last page to view the last added video. maybe there could be a way to select last page or to select the page number to go around the video we want to play ?
It could be really interesting if we could have « search » feature on the context menu, this will avoid to exit the playlist to search anythings.
Thanks for support !
The text was updated successfully, but these errors were encountered: