弹来弹去跑马灯!

上一页 1 2 3 4 5 6 7 8 ··· 38 下一页
摘要: Windows bat批处理文件结束某个程序进程,删除文件夹 bat文件内容: @echo off setlocal :: 要结束的应用程序进程名 set "PROCESS_NAME=助手.exe" :: 使用tasklist和findstr检查进程是否存在 tasklist | findstr / 阅读全文
posted @ 2024-07-04 16:21 wgscd 阅读(1296) 评论(1) 推荐(0)
摘要: 去除音频中的静音 //去除所有超过0.3秒的静音部分 ffmpeg -i input.mp3 -af silenceremove=stop_periods=-1:stop_duration=0.3:stop_threshold=-30dB -y output.mp3 ffmpeg音频处理常用命令: 阅读全文
posted @ 2024-05-15 03:43 wgscd 阅读(784) 评论(0) 推荐(0)
摘要: h5 页面播放base64编码的audio数据 阅读全文
posted @ 2024-05-14 22:30 wgscd 阅读(296) 评论(1) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Responsiv 阅读全文
posted @ 2024-05-09 16:04 wgscd 阅读(35) 评论(0) 推荐(0)
摘要: 通过WebView2获取HTTP-only cookie可以使用`WebView2.CookieManager`类的方法。以下是一个示例代码,演示如何获取HTTP-only cookie: using System; using Microsoft.Web.WebView2.Core; using 阅读全文
posted @ 2024-03-31 22:33 wgscd 阅读(1754) 评论(0) 推荐(0)
摘要: <% 'Desc : ASP6.0 (VB) 获取目录下所有图片文件 'by : wgscd 'date : 2024-2-1 dim c_path c_path=Server.MapPath( "./") set file_system=createobject("scripting.filesy 阅读全文
posted @ 2024-02-01 10:43 wgscd 阅读(34) 评论(0) 推荐(0)
摘要: 视频透明度抠图,视频需要一个灰度通道副本表示透明度 阅读全文
posted @ 2024-01-31 20:03 wgscd 阅读(117) 评论(0) 推荐(0)
摘要: c# 更改快捷方式文件图标 阅读全文
posted @ 2023-12-18 12:58 wgscd 阅读(496) 评论(1) 推荐(2)
摘要: 引用COM组件 Shell32 Shell32.ShellFolderView desktopFolderView; int hwnd; Shell32.Shell iShell = new Shell32.Shell(); SHDocVw.ShellWindows iWindows = iShel 阅读全文
posted @ 2023-12-18 12:44 wgscd 阅读(167) 评论(0) 推荐(0)
摘要: 快手弹幕语言版本,主播场控帮手;直播互动语音答谢,自动发弹幕,快手无人直播: http://www.ks163.top 阅读全文
posted @ 2023-10-10 19:05 wgscd 阅读(946) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 38 下一页