弹来弹去跑马灯!

摘要: 视频修复ffmpeg -err_detect ignore_err -i input.mp4 -vcodec copy -acodec copy repaired_video.mp4 -y 调整频率和码率:ffmpeg -i input.mp4 -r 25 -b:v 2048k output.mp4 阅读全文
posted @ 2024-07-19 20:30 wgscd 阅读(1) 评论(0) 推荐(0) 编辑
摘要: js实现在指定的时间点播放列表中的视频 阅读全文
posted @ 2024-07-17 16:35 wgscd 阅读(2) 评论(0) 推荐(0) 编辑
摘要: document.querySelector 有多个类 阅读全文
posted @ 2024-07-16 16:49 wgscd 阅读(3) 评论(0) 推荐(0) 编辑
摘要: WPF里webview2会一直处于其他控件最上层,是个历史遗留问题。 为了能在webview2里鼠标移动让窗体跟着移动位置 阅读全文
posted @ 2024-07-15 12:13 wgscd 阅读(5) 评论(0) 推荐(0) 编辑
摘要: WPF 动态加载嵌入主程序的DLL 阅读全文
posted @ 2024-07-11 10:54 wgscd 阅读(2) 评论(0) 推荐(0) 编辑
摘要: H5播放音频和视频 阅读全文
posted @ 2024-07-10 15:30 wgscd 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Windows bat批处理文件结束某个程序进程,删除文件夹 bat文件内容: @echo off setlocal :: 要结束的应用程序进程名 set "PROCESS_NAME=助手.exe" :: 使用tasklist和findstr检查进程是否存在 tasklist | findstr / 阅读全文
posted @ 2024-07-04 16:21 wgscd 阅读(8) 评论(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 阅读(129) 评论(0) 推荐(0) 编辑
摘要: h5 页面播放base64编码的audio数据 阅读全文
posted @ 2024-05-14 22:30 wgscd 阅读(14) 评论(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 阅读(10) 评论(0) 推荐(0) 编辑