- that's another way to say what was already said:Demand is a term from the field of economics. And there is actually no demand, or at least not enough to support much of an offer. That is to say, while there have been user requests for over a decade already, there is no paying customer demand. Otherwise, you bet it would be supported since a long time.
OK, we're just stupid, selfish, insulting and aggressive users not paying money. We're paying attention. We care. Yet.You are a stupid, selfish, insulting and aggressive person. We don't want you here.
This is just plain wrong: It is common in business setting, to request customization. I'd think it's far more common in B2B than in B2C in fact. That is pretty much the whole business model of many IT service companies - not to mention architects,, lawyers, etc.And being the person who makes money decisions, I would never express "demand" for such a feature.
In business there's no sense in debate about "square steering wheel".
Just avoid the car, just avoid the manufacturer.
Just avoid the lack of common sense.
I have looked into adding the functionality into VLC myself, but the proper way to do this, one which VLC team would merge, seemed to be rather involved due to the DVD/BR menu and other things, so I have settled on writing a plugin instead.
Yes, this is the direction we're getting to. It just needs work.Wouldn't it possible for DVD menu :I have looked into adding the functionality into VLC myself, but the proper way to do this, one which VLC team would merge, seemed to be rather involved due to the DVD/BR menu and other things, so I have settled on writing a plugin instead.
- to make click to pause not work at all if a dvd is playing (as detecting when a dvd menu is playing and turning off click to pause seems difficult)
- or, like others have suggested, to use middle button so it won't interfere with dvd menu
This is exactly my same use-case. Spouting "just use the keyboard, bro" is asinine; more so when every other mediocre video player out there has had the feature implemented for years.Sure keyboard is faster but still mouse is useful.
For instance I watch video on my TV and to control VLC I use my wireless mouse as a remote controller. (And
I don't have the keyboard because it's too cumbersome)
Code: Select all
#IfWinActive, ahk_exe vlc.exe
$^LButton::
KeyWait, Ctrl, D
SendInput, {Space} ; Play/pause VLC
Return
#IfWinActive
leo007 how do I implement your script?
I tried to find information about scripts by using the wiki help file but so far I have had no success using such helpfiles. They don't seem userfriendly and I can never find what I'm looking for. When I search for something I always get a bunch of hits that seem to have no relationship to what I'm searching for.
Code: Select all
#NoTrayIcon
#IfWinActive, ahk_exe vlc.exe
$^LButton::
KeyWait, Ctrl, D
SendInput, {Space} ; Play/pause VLC
Return
#IfWinActive
Not sure what you mean by that. Pause/play won't get triggered unless you click, there is no false trigger or unexpected behavior.sometimes there is a chance of false trigger and unexpected behave so I prefer to separate key trigger of those 2 actions.
sometimes unwonted fullscreen get triggered because its work with same left mouse click. so i have to keep extra couple second time delay between each click.Not sure what you mean by that. Pause/play won't get triggered unless you click, there is no false trigger or unexpected behavior.sometimes there is a chance of false trigger and unexpected behave so I prefer to separate key trigger of those 2 actions.
Great optional idea.re-assign pause/play from the left mouse button to the middle mouse button (mouse wheel click).sometimes there is a chance of false trigger and unexpected behave so I prefer to separate key trigger of those 2 actions.
You can disable full screen being triggered by a double-click, so that no matter how fast you left click, VLC won't go full screen. And since there is no way for you to full-screen using a mouse anymore, you could assign the full screen to some other mouse button, e.g. the middle mouse button.sometimes unwonted fullscreen get triggered because its work with same left mouse click. so i have to keep extra couple second time delay between each click.
Well, it's good you found something that works for you!Great optional idea.
but ctrl + left click combination seems to be more comfortable to me.
hope it could be implemented natively in future updated.
NURUPO...you're a SAINT! Installed your plugin, enabled it, disabled double-click (so double-click still works as usual to toggle full screen), and now VLC works exactly like MPC (which I had been using for 10 years, in no small part due to the click-anywhere play/pause combined with a robust do-everything video player).You can disable full screen being triggered by a double-click, so that no matter how fast you left click, VLC won't go full screen. And since there is no way for you to full-screen using a mouse anymore, you could assign the full screen to some other mouse button, e.g. the middle mouse button.sometimes unwonted fullscreen get triggered because its work with same left mouse click. so i have to keep extra couple second time delay between each click.
Or you could keep full screen being triggered by a double-click and instead re-assign pause/play to a non-left mouse button, so that pause/play no longer interferes with full screen.
Well, it's good you found something that works for you!Great optional idea.
but ctrl + left click combination seems to be more comfortable to me.
hope it could be implemented natively in future updated.
Sorry to be such a dummy but I could not make my way through doing whatever I need to do with AHK2Exe. I did read through the instructions for AHK2Exe but I was totally confused. I would greatly appreciate it if you created the converted EXE so all I have to do is put it in the Startup folder.leo007 how do I implement your script?
I tried to find information about scripts by using the wiki help file but so far I have had no success using such helpfiles. They don't seem userfriendly and I can never find what I'm looking for. When I search for something I always get a bunch of hits that seem to have no relationship to what I'm searching for.
you have to follow next steps:
1) open notepad and paste:then save this as ahk file (instead of txt).Code: Select all
#NoTrayIcon #IfWinActive, ahk_exe vlc.exe $^LButton:: KeyWait, Ctrl, D SendInput, {Space} ; Play/pause VLC Return #IfWinActive
2) converter this ahk script → Exe file with Ahk2Exe
3) finally put this created exe file in startup folder C:\Users\<user name>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup (so it will run in background each system startup).
it should be easy but in case you having difficulties i can make converted exe file for you.
so only thing that is left is to put it in Startup folder
Thank you Nurupo, your plugin works perfectly.Hey, author of https://github.com/nurupo/vlc-pause-click-plugin here (proof).
The plugin does work and has been working ever since it was released in 2014, at least on Windows and Linux (I don't own a macOS so can't verify). The plugin is maintained and I use it on daily basis myself. If you can't get it to work then you are likely doing something wrong, e.g. using wrong version of the plugin or not checking all of the checkboxes. Unless you check all of the required checkboxes VLC won't start the plugin. If you follow the install and usage instructions correctly the plugin should work. Make sure to check all the screenshots the usage instructions have. Though some people have reported that they have followed the instructions correctly but had to reset VLC plugin cache, so there is that too, but this seems to be a very rare issue. If the plugin doesn't work for you, feel free to open an issue in the GitHub repo and I will try to help you.
I'd love for VLC to have this feature out of the box, that way I wouldn't have to maintain the plugin and answer to issues, users wouldn't have to struggle with installing my plugin and everyone would just be happier.
For those who want something simple with Autohotkey, I just tried this and it seems to do the job, i.e. left-clicking on the video in VLC toggles play/pause:much thanks for plugin.
sometimes there is a chance of false trigger and unexpected behave so I prefer to separate key trigger of those 2 actions.
my small ahk script make Pause/play get fired by Left mouse click only while Ctrl is pushed Down.
Code: Select all
#IfWinActive, ahk_exe vlc.exe $^LButton:: KeyWait, Ctrl, D SendInput, {Space} ; Play/pause VLC Return #IfWinActive
Code: Select all
~LButton:: ;VLC window is already active here due to ~ in ~LButton
MouseGetPos _, _, _, ctrl ;Get name of control under mouse pointer
if (SubStr(ctrl, 1, 16) == "VLC video output") ; Is it the VLC video control?
{
SendInput, {Space} ;Play/pause VLC
}
Return
Here's how.How do you make DVD menus and interactive filter works if you use click to pause.It is ridiculous !
It's a a car with a square steering wheel or a square spoon. People are used to click a video to pause it. Thanks to youtube.
I'm not a programmer but it cannot be impossible.
Why would it not be possible to have the video catching a click as a background layer and have the ... how do you call it 'control bar panel' as a top layer ?
Something like :
check if the click is on a control bar button , yes : execute button function
no : goto check2
check2 : check if click is on video area, yes : change pause state
no : nevermind
I've been using vlc since it began as a french student project, and as an inhabitant from the country north of France, like it very much, but this one annoying detail has me almost looking for another mediaplayer...
Sometimes you don't have to add stuff anymore. Once it plays every video, stop changing it. Just add a possibility for addons so people can customize it like they want.
Spend your time making addons and leave the functioning product like it is. But unfortunately it must be impossible for humans to stop evolving stuff...
This doesn't mean i'm not grateful for your guys making vlc : thank you very much ! It's just this tiny little...
Return to “VLC media player Feature Requests”
Users browsing this forum: No registered users and 20 guests