jaseg / python-mpv

Python interface to the awesome mpv media player
https://git.jaseg.de/python-mpv.git
Other
543 stars 68 forks source link

A way to disable drag and drop in mpv window? #177

Closed DrPleaseRespect closed 2 years ago

DrPleaseRespect commented 3 years ago

Is there a way to disable the dragging and dropping of videos in the MPV Window?

In Windows.

jaseg commented 2 years ago

It doesn't seem like there is anything built into mpv's default GUI. You could fix this by rolling your own GUI, copying one of the embedding examples linked in the README. You would have to capture keyboard/mouse input and send it onwards to libmpv through mpv's keypress and similar commands. I'm pretty sure if you search github, you'll be able to find someone who has already done something similar.