摘要:
import os import shutil def check_dir_exist(dir) : # 如果目标路径不存在原文件夹的话就创建 if not os.path.exists(dir): os.makedirs(dir) def remove_dir(dir) : # 如果目标路径存在原 阅读全文
摘要:
svn 数据迁移: http://www.360doc.com/content/22/0127/14/17302338_1015098084.shtml git https://blog.csdn.net/yueliangge910101/article/details/127515844 Fast 阅读全文
摘要:
wget https://www.openssl.org/source/old/1.1.1/openssl-1.1.1.tar.gztar xvf openssl-1.1.1.tar.gzcd openssl-1.1.1./config no-asm shared no-async --prefix 阅读全文
摘要:
先下载SQLlite官网下载包https://www.sqlite.org/download.html 下载最新版本压缩包 sqlite-autoconf-3390000.tar.gz 解压缩 执行如下命令安装 ./configure make sudo make install 测试 在任意目录下 阅读全文
摘要:
https://github.com/stb-tester/latency-clock gst-rtsp-server https://gitlab.freedesktop.org/gstreamer/gst-rtsp-server/ https://github.com/sylar-yin/syl 阅读全文
摘要:
执行命令 docker run --rm --privileged multiarch/qemu-user-static --reset -p yes start DEV_CONTAINER="apollo_dev_${USER}_arm" DEV_INSIDE="in-dev-docker" SU 阅读全文
摘要:
视频 CPU编解码 采集、软编、udp转发 gst-launch-1.0 v4l2src device="/dev/video0" ! video/x-raw,width=1280,height=720 ! videoconvert ! x264enc tune=zerolatency ! rtph 阅读全文
摘要:
http://blog.chinaunix.net/uid-26000296-id-5118029.html https://www.it610.com/article/1277721271932567552.htm #include <gst/gst.h> #define VIDEO_WIDTH 阅读全文
摘要:
git关联jira git提交代码:git commit -m "TD-35 #测试" TD-35:代表的是jira问题编号 关闭系统的安全认证,而后再次下载。html export GIT_SSL_NO_VERIFY=1orgit config --global http.sslverify fa 阅读全文
摘要:
项目ID project(CameraSDK) 转换相对路径 file(RELATIVE_PATH relativeIncludePathFile "${CMAKE_CURRENT_SOURCE_DIR}" "${includeFile}") 拷贝头文件 foreach(includeFile ${ 阅读全文