VLC是否可以做以下事情?
- 使播放窗口始终位于顶部
- 当另一个窗口具有焦点时,使播放窗口透明吗?
由于您仍然可以访问其他窗口(假设播放器未处于最大化状态),因此可以在执行其他操作(例如检查电子邮件)的同时观看视频。
VLC是否可以做以下事情?
由于您仍然可以访问其他窗口(假设播放器未处于最大化状态),因此可以在执行其他操作(例如检查电子邮件)的同时观看视频。
Answers:
要使播放窗口始终位于顶部,请从菜单中选择Video-> Always On Top。(Mac Video->“顶部浮动”)
如果没有使用具有此功能的窗口管理器,当VLC失去焦点时,我看不到改变透明度的方法。但是,您可以在VLC中手动更改透明度。
要使播放窗口透明:
我从这里改编了一个AutoHotKey脚本,它将执行您的要求(在Windows上-我不知道Linux是否有一个AutoHotKey)。
运行脚本时,它将在标题中找到一个带有“ VLC媒体播放器”的窗口,并将其设为60%透明且“不可点击”。要退出脚本并重新激活VLC,请右键单击任务栏中的绿色H,然后选择“退出”。
如果您信任我,可以在此处将其运行的VLC实例设置为60%透明且不可点击的此版本的(可反编译)编译版本:https : //www.dropbox.com/s/to4wrlmnuym9kjb/TransparentVLC.exe
如果您不信任我,想修改它以与Media Player Classic配合使用(更好=),或者只是想学习,请安装AutoHotKey并运行以下脚本:https : //www.dropbox.com/s/ exj00fpssx761lc / TransparentVLC.ahk
如果我的链接断开,则AHK代码如下:
/*
WinSet_Click_Through - Makes a window unclickable. Written by Wicked & SKAN.
I - ID of the window to set as unclickable.
T - The transparency to set the window. Leaving it blank will set it to 254. It can also be set On or Off. Any numbers lower then 0 or greater then 254 will simply be changed to 254.
If the window ID doesn't exist, it returns 0.
*/
WinSet_Click_Through(I, T="254") {
IfWinExist, % "ahk_id " I
{
If (T == "Off")
{
WinSet, AlwaysOnTop, Off, % "ahk_id " I
WinSet, Transparent, Off, % "ahk_id " I
WinSet, ExStyle, -0x20, % "ahk_id " I
}
Else
{
WinSet, AlwaysOnTop, On, % "ahk_id " I
If(T < 0 || T > 254 || T == "On")
T := 254
WinSet, Transparent, % T, % "ahk_id " I
WinSet, ExStyle, +0x20, % "ahk_id " I
}
}
Else
Return 0
}
#SingleInstance force
#Persistent
;app code starts here
;get window ID for a VLC instance
ID := WinExist("VLC media player")
;set it to 60% transparent and unclickable
WinSet_Click_Through(ID, 0.6 * 255)
;wait until the user quits, then show window again
OnExit, AppEnd
Return
AppEnd:
;set it back to clickable
WinSet_Click_Through(ID, "Off")
ExitApp
一个或多个Skrommel应用程序可以完成此任务:
WinWarden-自动控制如何显示窗口。
TransOther-使除活动窗口外的所有窗口透明。
OnTop-在其他所有窗口之上放置一个窗口。
另一种可能是免费的Eusing自动窗口管理器,可以将VLC设置为始终在顶部且透明。