What are your statistics on bluray use in vlc? Also, how are you acquiring those usage statistics? I didn't realize vlc had usage statistics?You have the same problem with Bluray as with DVD, as with disk images. I think you are way underestimating the use of VLC for optical media playback in general anyway.
What you describe is feasible, but it's sure to cause massive support complaints and backlash. So guess what, the VLC developers who'd have to deal with those consequences, are not keen on it.
see:If it was not an option but a default feature won't it be possible to automatically turn off the option if a DVD or blue ray is playing? It should be easier than to detect if you are invoking a menu or not.
It means click to play/pause wouldn't be supported for format with menu but would work for all others.
Just a heads up that the new version of the plugin learned to work correctly in DVD menus - it won't pause/play if you mouse click while in the menu.
Code: Select all
// VLC 3
input_title_t *title = ...
if (title->i_flags & INPUT_TITLE_MENU || title->i_flags & INPUT_TITLE_INTERACTIVE) {
deativate();
}
// VLC 4
struct vlc_player_title *title = ...
if (title>flags & VLC_PLAYER_TITLE_MENU || title->flags & VLC_PLAYER_TITLE_INTERACTIVE) {
deativate();
}
1. it works on a normal video (play/pause works)see:If it was not an option but a default feature won't it be possible to automatically turn off the option if a DVD or blue ray is playing? It should be easier than to detect if you are invoking a menu or not.
It means click to play/pause wouldn't be supported for format with menu but would work for all others.
Just a heads up that the new version of the plugin learned to work correctly in DVD menus - it won't pause/play if you mouse click while in the menu.
vlc-pause-click-plugin automatically deactivates when it detects a DVD/Bluray/whatever menu or an interactive. It activates back as soon as you exit the menu section and the DVD/Bluray/whatever starts playing the video. That way it doesn't interfere with the menu and you can still pause the video.
@Remi, does this pseudocode look about right?
Code: Select all
// VLC 3 input_title_t *title = ... if (title->i_flags & INPUT_TITLE_MENU || title->i_flags & INPUT_TITLE_INTERACTIVE) { deativate(); } // VLC 4 struct vlc_player_title *title = ... if (title>flags & VLC_PLAYER_TITLE_MENU || title->flags & VLC_PLAYER_TITLE_INTERACTIVE) { deativate(); }
Here is the full version.
That has been added a year ago in vlc-pause-click-plugin v2.1.0.
I haven't tested this as I don't own DVDs, but as long as VLC correctly reports to the plugin that the current input is a menu or interactive, it should work. So far no one has filed an issue regarding it, so I assume it works (or no one reads the release notes and doesn't know that it's supposed to work). Would be great to receive some explicit confirmation if it actually works or not. Can anyone test it?
If it works, then clearly VLC can have a built-in pause-click functionality without need to reply on an external plugin, e.g. built into the Qt interface plugin or by having vlc-pause-click-plugin in-tree and pre-activated.
@Rémi Denis-CourmontYou have the same problem with Bluray as with DVD, as with disk images. I think you are way underestimating the use of VLC for optical media playback in general anyway.
What you describe is feasible, but it's sure to cause massive support complaints and backlash. So guess what, the VLC developers who'd have to deal with those consequences, are not keen on it.
Please do not take it badly. There is a lot of users, including me, which are happy with VLC.Guess what? Trolling devs is not conducive to getting what you want from them.
Code: Select all
#IfWinActive, VLC media player
MButton::Space ; Pause
~LButton & RButton::Space ; Rock from left to right for Space
~LButton & WheelUp::- ; slower
~LButton & WheelDown::+ ; faster
~RButton & WheelUp::^Up ; Volume
~RButton & WheelDown::^Down ; Volume
~MButton & WheelUp::o ; toggle scaling
~MButton & WheelDown::!o ; scale up aka zoom in
#IfWinActive ; off VLC media player
. . .if you're still needing this functionality; I found this today:
https://bestofcpp.com/repo/nurupo-vlc-p ... ideo#usage
It works as advertised and is currently maintained.
Note: the plugin needs to be enabled in TWO places within the VLC's settings once you've placed the .dll in VLC's video_filter directory (steps 3 and 4 under 'usage instructions'). . .I overlooked this when I first installed it.
I installed this on Windows 10 Version 21H1, VLC Version 3.0.12. . .without issue.
THANK YOU THANK YOU THANK YOUI've been using VLC for the last year and it works great in most ways.
Your failure to include an easy way to set up click to pause/play is unacceptable. I spent over an hour trying to get it to work in VLC but the add on is outdated. Youtube and MPC both support this natively.
I'm not using Windows so MPC wasn't an option so I decided to look for something better. SMPlayer may not have click to pause/play enabled by default, either, but I was able to go to an easy to find option in Preferences where I could assign the left mouse button to "pause/play" and the function works perfectly!! Installing it and doing that configuration took less than 5 minutes!
It is brutal that you stubbornly refuse to include this as an option. And then you change the functionality of the program so the add on to provide the ability is non-functional...That is beyond frustrating!
The reason you've answered this question "a thousand times" because it is a glaring omission on your part. I doubt most users even care about the DVD menus or special filters you use as an excuse. Look at the other full featured players like MPC. Why have they offered click to pause/play for more than a decade yet VLC is incapable of the same?
Get your head out of the sand!
For the millionth time. Why can not you programmatically determine whether dvd menu is played and turn off the click-to-pause? Or at least make such checkmark in the settings and let the user decide whether he wants to watch dvds or pause with mouse button? I guess not that many people watch dvds now.For the 1000th time, the reason is simple: having a click-to-pause breaks filters and DVD menus.
So you are basically saying that some third party developers can add this function into your own player, and you, the developer, can not.And there are extensions to do it.
Note that this also affects some video filters and Blu-ray disks. It is certainly possible. It just takes time, time that nobody has volunteered.For the millionth time. Why can not you programmatically determine whether dvd menu is played and turn off the click-to-pause? Or at least make such checkmark in the settings and let the user decide whether he wants to watch dvds or pause with mouse button? I guess not that many people watch dvds now.
The third party extension will actually interfere with disk menus. It would not be difficult to include the extension in the official releases. It's just not up to the expected standard for that, so to speak.So you are basically saying that some third party developers can add this function into your own player, and you, the developer, can not.
VLC is not a commercial product. (Neither Youtube, for which you are the product being sold to advertisers.)You are killing your own product. I'm going back to youtube instead.
The third party extension will actually interfere with disk menus. It would not be difficult to include the extension in the official releases. It's just not up to the expected standard for that, so to speak.
If you read my previous post in this thread I show you how to add pause and play with mouse click.PotPlayer works for HDR using SVP with a few setting mods:
https://www.svp-team.com/wiki/SVP:Daum_PotPlayer
I would prefer using VLC if they had these 2 options:
- Pause and Play video by clicking video part of the window.
- Click and Drag video by clicking and dragging the video part of the window.
It appears the programmers say things like "you can't expect us to add features like this, it is free software" ..... so is PotPlayer and everything else!
Cheers!
Great post VLCMonster. Do you happen to know if there is a plugin that allows PotPlayer to support Bluray menus?If you read my previous post in this thread I show you how to add pause and play with mouse click.PotPlayer works for HDR using SVP with a few setting mods:
https://www.svp-team.com/wiki/SVP:Daum_PotPlayer
I would prefer using VLC if they had these 2 options:
- Pause and Play video by clicking video part of the window.
- Click and Drag video by clicking and dragging the video part of the window.
It appears the programmers say things like "you can't expect us to add features like this, it is free software" ..... so is PotPlayer and everything else!
Cheers!
But since posting that I have switched over to PotPlayer for one simple reason..... DARK MODE.
VLC does not have this and trying to use a 'dark' skin just messes up the UI.
It seems nobody can just only change the color to dark without having to redesign everything.
It's a shame that the Devs for VLC can't keep up with the rest of the world.
Getting to really like PotPlayer now and it has become my goto for video/music playback.
VLC was great until the competition out paced them with newer features.
Return to “VLC media player Feature Requests”
Users browsing this forum: No registered users and 18 guests