翼展电脑服务中心


虚拟监控软件VirtualCamera2.0新版本下载链接

2025-4-13 乱云飞 评论(0) 浏览(38) 标签: VirtualCamera 虚拟监控软件 下载链接

1.png

强制所有元素(包括HTTPS和动态内容)变为直角

2025-4-8 乱云飞 评论(0) 浏览(13)

// ==UserScript==
// @name         全局直角
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  强制所有元素(包括HTTPS和动态内容)变为直角
// @author       You
// @match        http://*/*
// @match        https://*/*
// @grant        GM_addStyle
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';

    // 1. 最高优先级CSS覆盖(包括HTTPS)
    GM_addStyle(`
        *,
        *::before,
        *::after {
            border-radius: 0px !important;
        }
        *{border-radius: 0px;}
        /* 处理SVG */
        rect, circle, ellipse {
            rx: 0 !important;
            ry: 0 !important;
        }
        /* 覆盖常见UI库的圆角类名 */
        [class*="rounded"], [class*="circle"], [class*="radius"] {
            border-radius: 0px !important;
        }
    `);

    // 2. 强制修改内联样式和动态内容
    function forceSquareCorners() {
        // 遍历所有元素
        document.querySelectorAll('*').forEach(el => {
            // 内联样式覆盖
            if (el.style.borderRadius) {
                el.style.borderRadius = '0px';
            }
            // 特殊处理SVG
            if (el.tagName === 'rect' || el.tagName === 'circle' || el.tagName === 'ellipse') {
                el.setAttribute('rx', '0');
                el.setAttribute('ry', '0');
            }
            // 覆盖CSS变量(如: --radius)
            if (el.style.getPropertyValue('--radius')) {
                el.style.setProperty('--radius', '0px', 'important');
            }
        });
    }

    // 3. 初始化执行 + 监听动态内容
    forceSquareCorners();
    const observer = new MutationObserver(forceSquareCorners);
    observer.observe(document.documentElement, {
        childList: true,
        subtree: true,
        attributes: true
    });

    // 4. 确保页面加载完成后再次执行
    window.addEventListener('load', forceSquareCorners);
})();

解决按键冲突

2025-3-28 乱云飞 评论(0) 浏览(15)

#NoEnv
#Persistent
#SingleInstance Force
#InstallKeybdHook
#UseHook

; --- 全局状态 ---
U_IsPressed := false
Zero_IsSent := false  ; 标记是否已处理0键

; --- 检测U键按下 ---
~*U::
    U_IsPressed := true
    SetTimer, CheckU0Combo, -100  ; 100ms检测窗口
return

; --- 检测U键释放 ---
~*U up::
    U_IsPressed := false
return

; --- 检测U+0组合 ---
CheckU0Combo:
    if (U_IsPressed && GetKeyState("0", "P")) {
        Run, calc.exe  ; 触发计算器
        ;Zero_IsSent := true  ; 标记0键已处理
    }
return

U盘自动启动

2025-3-28 乱云飞 评论(0) 浏览(21)

#Persistent
#SingleInstance ignore

; === 配置部分 ===
Allowed_USB_IDs := ["EZSOFT", "bakevision"]  ; 允许的U盘卷标列表
CheckInterval := 3000                       ; 检测间隔(毫秒)
TargetExePath := "ezsoft\ez30.exe"      ; 目标程序路径
TargetExeName := "ez30.exe"             ; 目标进程名(不含路径)
ConfigExePath := "ezsoft\虚拟监控.exe"                   ; 配置程序路径(U盘根目录)
DebugMode := false                      ; 调试模式(true显示提示)

; === 全局变量 ===
CurrentUSBDrive := ""                      ; 当前检测到的U盘盘符

; === 托盘图标设置 ===
Menu, Tray, NoStandard                     ; 移除标准菜单项
Menu, Tray, Add, 设置, RunConfig           ; 添加设置菜单
Menu, Tray, Add                            ; 添加分隔线
Menu, Tray, Add, 退出, ExitScript           ; 添加自定义退出选项
Menu, Tray, Tip, USB监控程序                ; 设置托盘提示文本
Menu, Tray, Icon                           ; 显示托盘图标

; === 主循环:检测U盘 ===
SetTimer, CheckUSB, %CheckInterval%
return

CheckUSB:
    DriveGet, driveList, List, Removable
    foundValidDrive := false
    
    Loop, Parse, driveList
    {
        driveLetter := A_LoopField ":\"
        DriveGet, driveStatus, Status, %driveLetter%
        
        if (driveStatus = "Ready")
        {
            ; 获取U盘卷标
            DriveGet, volumeName, Label, %driveLetter%
            if (DebugMode)
                MsgBox, [检测] U盘卷标:%volumeName%
            
            ; 检查是否是指定U盘之一
            for index, allowedID in Allowed_USB_IDs
            {
                if (volumeName = allowedID)
                {
                    foundValidDrive := true
                    CurrentUSBDrive := driveLetter  ; 更新当前U盘盘符
                    
                    ; 检查目标程序是否已在运行
                    Process, Exist, %TargetExeName%
                    if (ErrorLevel = 0)  ; 未运行
                    {
                        exePath := driveLetter . TargetExePath
                        if FileExist(exePath)
                        {
                            Run, %exePath%
                            if (DebugMode)
                                MsgBox, [操作] 启动程序:%exePath%
                        }
                        else if (DebugMode)
                            MsgBox, [错误] 未找到程序:%exePath%
                    }
                    else if (DebugMode)
                        MsgBox, [跳过] 程序已在运行(PID:%ErrorLevel%)
                    
                    break  ; 找到匹配的卷标后跳出循环
                }
            }
        }
    }
    
    ; 如果没有检测到有效U盘,清空当前盘符记录
    if (!foundValidDrive)
        CurrentUSBDrive := ""
return

; === 运行配置程序 ===
RunConfig:
    if (CurrentUSBDrive = "")
    {
        MsgBox, 未检测到有效的U盘!
        return
    }
    
    configExeFullPath := CurrentUSBDrive . ConfigExePath
    if FileExist(configExeFullPath)
    {
        Run, %configExeFullPath%
        if (DebugMode)
            MsgBox, [操作] 启动配置程序:%configExeFullPath%
    }
    else
        MsgBox, 未找到配置程序:%configExeFullPath%
return

; === 退出脚本函数 ===
ExitScript:
    ; 关闭虚拟监控进程
    Process, Close, %TargetExeName%
    if (DebugMode)
        MsgBox, [操作] 已尝试关闭虚拟监控进程
    
    ; 退出脚本自身
    ExitApp
return

OSD.lua

2025-3-27 乱云飞 评论(0) 浏览(1)

[该内容已加密,请点击标题输入密码访问]

MPV播放器

2025-3-26 乱云飞 评论(0) 浏览(40)

start "" mpv --ontop --fullscreen --title=VirtualCamera --no-window-dragging --no-osc --no-border --start=!start_seconds! -- "!videoFile!"

MPV播放器精准控制播放视频的开始位置

2025-3-26 乱云飞 代码 评论(0) 浏览(2)

[该内容已加密,请点击标题输入密码访问]

将鼠标移动到坐标位置然后按空格键

2025-3-22 乱云飞 评论(0) 浏览(16)

@echo off
REM 调用nircmd将鼠标移动到坐标(1900, 1000)
nircmd setcursor 1900 1000
REM 等待一段时间,确保鼠标移动完成
timeout /t 1 /nobreak >nul
REM 模拟按下空格键
nircmd sendkeypress 0x20
REM 退出批处理
exit

根据当前时间播放对应视频

2025-3-21 乱云飞 评论(0) 浏览(18)

for /f "tokens=2 delims==." %%a in ('wmic os get localdatetime /value') do set datetime=%%a
set hour=%datetime:~8,2%
set url=C:\ezsoft\video\%hour%.mp4

录屏软件搜集

2025-3-17 乱云飞 评论(0) 浏览(24) 标签: 录屏软件大全

易录屏/EasyRecorder.exe
录屏精灵/ScreenRecorderElf.exe
录屏助手/ScreenRecorderHelper.exe
快录屏/KuaiLuPing.exe
飞鹰录屏/FeiYingRecorder.exe
录屏王/ScreenRecorderKing.exe
录屏专家/ScreenRecorderExpert.exe
录屏大师/LuPingDaShi.exe
截图精灵/ScreenCaptureElf.exe
截图助手/ScreenCaptureHelper.exe
截图王/ScreenCaptureKing.exe
截图专家/ScreenCaptureExpert.exe
截图大师/ScreenCaptureMaster.exe
EV录屏/EVCapture.exe
嗨格式录屏大师/HiRecMaster.exe
迅捷屏幕录像工具/ScreenRecorder.exe
万兴录演/DemoCreatorCN.exe
傲软录屏/ApowerREC.exe
KK录像机/KK.exe
金飞翼屏幕录像大师/screen_recorder.exe
风云录屏/ScreenRecord.exe
录猎/Screencast.exe
飞思录屏/RecorderPro.exe
和育宝/heyubao.exe
小鹅通助手/小鹅通助手.exe
腾讯会议/WeMeetApp.exe
华为智慧快录/WeLook.exe
超级录屏/ScreenRecorder.exe
开心录屏/JiSuRecorder.exe
福昕录屏大师/FoxitREC.exe
录屏软件/录屏软件【点我启动】.exe
GifCam/GifCam.exe
oCam/oCam.exe
爱拍录屏/AiPaiRecorder.exe
班迪录屏/Bandicam.exe
超级捕快/SuperCapture.exe
超级录屏/SuperRecorder.exe
大白菜录屏/DaBaCaiRecorder.exe
点星录屏/DianXingRecorder.exe
飞鸽录屏/FeiGeRecorder.exe
飞龙录屏/FeiLongRecorder.exe
飞鱼录屏/FeiYuRecorder.exe
光影录屏/GuangYingRecorder.exe
红蜻蜓录屏/RedDragonflyRecorder.exe
极速录屏/JiSuRecorder.exe
金舟录屏/JinZhouRecorder.exe
快剪辑录屏/KuaiJianJiRecorder.exe
狸猫录屏/LiMaoRecorder.exe
猎影录屏/LieYingRecorder.exe
灵雀录屏/LingQueRecorder.exe
屏幕录像大师/ScreenRecorderMaster.exe
腾讯录屏/TencentRecorder.exe
万兴录演/WondershareDemoCreator.exe
蜜蜂录屏/MiFengRecorder.exe
蜜蜂剪辑录屏/MiFengJianJiRecorder.exe
蜜蜂直播助手/MiFengLiveHelper.exe
蜜蜂直播/MiFengLive.exe
蜜蜂剪辑/MiFengJianJi.exe
蜜蜂直播助手剪辑/MiFengLiveHelperJianJi.exe
蜜蜂直播助手录屏/MiFengLiveHelperRecorder.exe
OBS Studio/obs64.exe
OBS Studio/obs32.exe
Camtasia/CamtasiaStudio.exe
Snagit/SnagitEditor.exe
Snagit/Snagit32.exe
ShareX/ShareX.exe
Screencast-O-Matic/Screencast-O-Matic.exe
Icecream Screen Recorder/icecreamscreenrecorder.exe
Movavi Screen Recorder/MovaviScreenRecorder.exe
FlashBack Express/FlashBackExpress.exe
Bandicam/bdcam.exe
Fraps/fraps.exe
Debut Video Capture/debut.exe
ActivePresenter/ActivePresenter.exe
Zoom/Zoom.exe
Microsoft PowerPoint/POWERPNT.EXE
VLC Media Player/vlc.exe
XSplit Broadcaster/xsplit.exe
Mirillis Action!/action.exe
ScreenFlow/ScreenFlow.app
QuickTime Player/QuickTimePlayer.exe
Loom/Loom.exe
Captura/captura.exe
ScreenToGif/ScreenToGif.exe
VSO视频下载软件/VsoDownloader.exe
RecForth/RecForth.exe
screenbits/screenbits.exe
screenmix/screenmix.exe
Vidline/Vidline.exe
recbutton/recbutton.exe
overspeed/overspeed.exe
Monosnap/Monosnap.exe
PotPlayer/PotPlayerMini64.exe
PotPlayer/PotPlayerMini.exe
AirPlayer/AirPlayer.exe
预ICP备10086-001号 © 翼展网/80C.CC 技术支持/洛阳翼展科技
TEL / 13213610060 QQ / 345794501
Powered by emlog