2023年6月20日
摘要:
系统盘清理,除了常规的软件卸载,不安装到系统盘,发现下面的目录占用是相当夸张的,尽量移动到其他盘去(可以尝试快捷方式) C:\ProgramData\Microsoft\VisualStudio\Packages C:\ProgramData\MySQL\MySQL Installer for Wi
阅读全文
posted @ 2023-06-20 10:48
弘道者
阅读(141)
推荐(0)
2023年6月5日
摘要:
我的windows环境是WIN10 编译器是vs2022 下载好freeswitch-1.8.5代码解压后 直接打开sln文件,开始编译。报错如下: 6>libsrtp.lib(crypto_kernel.obj) : error LNK2005: SocketNotificationRetriev
阅读全文
posted @ 2023-06-05 18:18
弘道者
阅读(350)
推荐(0)
2023年5月17日
摘要:
经常需要查英伟达各个显卡的编码能力,所以记录一下,官方网址https://developer.nvidia.com/video-encode-and-decode-gpu-support-matrix-new
阅读全文
posted @ 2023-05-17 16:47
弘道者
阅读(1046)
推荐(1)
2023年5月12日
摘要:
搞虚拟机的时候 需要用到nginx下载文件 比较方便,搞个最简单的配置,备用 user root; worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type appl
阅读全文
posted @ 2023-05-12 09:40
弘道者
阅读(48)
推荐(0)
2023年4月26日
摘要:
现在网上已经没有centos6.5能用的源了,所以自己建是最方便,稳妥的了,写了一个脚本自动搞定 #!/bin/bash dir=$(pwd) if [ ! -f "$dir/CentOS-6.5-x86_64-bin-DVD1.iso" ];then curl -o CentOS-6.5-x86_
阅读全文
posted @ 2023-04-26 09:23
弘道者
阅读(25)
推荐(0)
2023年4月7日
摘要:
最近遇到个抓狂的问题,内网有机器和SVN服务器的IP冲突了,找不到是谁的机器。最后想到一个办法用静态ARP协议 直接指定IP对应的MAC地址,蛮好用的,至少自己的SVN能用了。 arp -s 192.168.1.31 00:25:90:8a:6b:7a 如果是windows的话 可以先用arp -a
阅读全文
posted @ 2023-04-07 17:15
弘道者
阅读(119)
推荐(0)
2023年2月13日
摘要:
命令如下: ffmpeg.exe -i e:/videodata/dst.ts -i e:/videodata/src-20s.ts -lavfi libvmaf="model_path=C\\:/\Users/\pc/\Desktop/\FFMetrics.1.3.1/\FFMetrics/\vm
阅读全文
posted @ 2023-02-13 12:44
弘道者
阅读(528)
推荐(0)
2023年2月1日
摘要:
直接上命令 ffprobe -select_streams v -i e:/media/baifa.mp4 -read_intervals "%+#10" -show_entries "frame=pict_type,pkt_pts_time,pkt_duration_time,interlaced
阅读全文
posted @ 2023-02-01 20:33
弘道者
阅读(95)
推荐(0)
2023年1月5日
摘要:
linux下C++获取系统CPU情况和网络使用情况 #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #define MAXBUFSIZE 1024 #define WAIT_SECOND 3
阅读全文
posted @ 2023-01-05 17:03
弘道者
阅读(831)
推荐(0)
摘要:
Linux下用C语言获取IO信息 只获取iostat的CPU信息 代码如下 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <unistd.h> #include <errn
阅读全文
posted @ 2023-01-05 16:46
弘道者
阅读(69)
推荐(0)