- 博客(224)
- 资源 (1)
- 收藏
- 关注
原创 pycharm 出现库已经安装了,但是无法导入的解决方法
打开File - Setttings , 找到 Project interpreter。找到system interpreter 安装。
2024-08-24 23:31:57 305
原创 unity 使用AVProVideo 播放hls (windows)
ffmpeg.exe路径 -i 视频路径 -c:v libx264 -c:a aac -strict -2 -hls_time 10 -hls_list_size 0 -f hls d:/test/play.m3u8。需要在MediaPlay中 Platform Specific - windows 设置 勾选 use Low Latency .用下面命令切片, 需要指定 -c:v libx264 -c:a aac ,其他格式可能会有问题,
2023-12-31 00:43:12 834 1
原创 ubuntu 离线安装gcc-10 ( 系统 20.0.4 focal )
在 https://packages.ubuntu.com/focal/devel/gcc-10 子页面在点进去子下载页面会告诉文件的下载位置。http://archive.ubuntu.com/ubuntu/pool/main/ 这个是文件下载内容地址。https://packages.ubuntu.com/focal/devel/gcc-10 里面有标注相关依赖包。安装完之后 sudo ln -s /usr/bin/gcc-10 /usr/bin/gcc。找到对应的系统安装内容。
2023-05-31 03:44:47 1775
原创 python win7安装指定版本playwright
这个版本可能会缺少 api-ms-win-core-com-l1-1-0.dll 到网上下载,放到C:\Windows\System32 ,# 然后regsvr32 api-ms-win-core-winrt-error-l1-1-0.dll。# 安装完后会报错, 把_dtls.py 下的@attr.frozen 都注释掉。
2023-03-01 14:51:44 997
原创 python ddddocr库的安装(window系统)
chcp 1252 如果只出现下载,不安装需要这个输入。# 3、 需要安装 pillow。# 2、 需要升级 numpy。# 1、 ddddocr安装。
2023-02-02 01:42:32 1349
原创 ue5 启动就奔溃
Assertion failed: DLLHandle != nullptr [File:D:\build\++UE5\Sync\Engine\Plugins\Experimental\PythonScriptPlugin\Source\PythonScriptPluginPreload\Private\PythonScriptPluginPreload.cpp] [Line: 68]
2022-11-21 18:43:33 3216 1
原创 Java Netty websocket 客户端
import io.netty.bootstrap.Bootstrap;import io.netty.channel.*;import io.netty.channel.nio.NioEventLoopGroup;import io.netty.channel.socket.SocketChannel;import io.netty.channel.socket.nio.NioSocketChannel;import io.netty.handler.codec.http.*;import .
2022-04-19 04:14:20 2607
原创 unity ios支付宝接入打包遇到的问题
1 /Users/apple/Documents/iosProgram/unitypay/Libraries/Plugins/IOS/openssl/rsa.h:62:10: 'openssl/asn1.h' file not found需要添加 头文件路径, 在 project 下的unity-phone中build settting/search paths添加"$(SRCROOT)/Libraries/Plugins/IOS" 2. OBJC_METACLASS_$_WKWe...
2022-03-19 19:59:51 5734
原创 go 入门学习
package main // package main 入口包,必须有的// format 标准输入输出格式包import ( "fmt" "math/rand" //随机数 "time" "errors" "os" "bufio" "io" "strings" //字符串 "strconv" //字符串转换)func main() { fmt.Println("Hello, World!") // 定义变量 var v0 int =100 fm.
2022-02-02 14:23:48 396
原创 java支付接入遇到的问题
用 AlipayTradeAppPayModel 当父类,设置其他成员,导致6001错误(或者支付繁忙)验签没有url解码,导致验签失败String urlStr = URLDecoder.decode(pay_notice.toString(),"UTF-8");
2022-01-16 17:42:49 483
原创 python使用wrodcloud出现 file not found error
原来的打包方式是 pyinstaller -F -c board.py更改成pyinstaller -D -c board.py这样就没问题了,要用第一种打包也可能是参数设置的问题,还没研究
2022-01-11 21:25:49 228
原创 vscode EditorConfig 插件 格式化代码
.editorconfig 配置文件root = true[*]charset = utf-8indent_style = spaceindent_size = 2tab_width = 2end_of_line = lfinsert_final_newline = truetrim_trailing_whitespace = true
2022-01-08 17:13:25 477
原创 Java调用c++ DLL
// 创建HelloTest.java文件,添加 public native int DLL_ADD(int a,int b);//cd到HelloTest.java文件所在目录//执行命令javac HelloTest.java,即生成HelloTest.class//执行命令javah Java2cpp生成Java2cpp.h头文件import java.lang.reflect.Field;public class HelloTest { public native i...
2021-08-30 16:48:36 267
原创 unity 根据图片比例适应
void Dofit() { Transform canvasObj = GameObject.Find("Canvas").transform; float width = canvasObj.GetComponent<RectTransform>().sizeDelta.x; float height = 1; if (GetComponent<RawImage>()) { ...
2021-07-26 18:54:58 1018
原创 unity Inspect面板的按钮操作
using System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEditor;/// <summary>/// 挂载物体到关节joint下/// </summary>public class AddObjToAttach : MonoBehaviour{ public GameObject addObj; public List<.
2021-07-13 12:50:54 894 1
原创 node 包
####包(文件夹)*多个文件,有效的被组织与管理的一个单位*留一个入口*__包就是一个:文件夹__####npm||yarn*自己先有一个包描述文件(package.json)*创建一个包描述文件npminit[-y]*会根据当前的文件夹来自动生成包名(__不允许中文,不允许大写英文字母__)*默认生成npminit[-y]*下载一个包npminstallart-templatejquer...
2021-06-10 17:25:35 115
原创 ngnix 负载均衡配置
#负载均衡配置upstreamlocalser{serverlocalhost:8888weight=1;#weight权重,越小几率越大serverlocalhost:9999weight=1;#weight权重,越小几率越大}server{listen80;server_n...
2021-06-09 17:21:09 93
原创 rollbackFailedOptional错误问题的解决
修改npm的资源镜像链接npm config set registry http://registry.npm.taobao.org
2021-05-10 14:25:01 1311
原创 mysql 安装后的一些操作配置记录
登录mysql -uroot -p密码查看 mysql数据库的存储路径show variables like '%data%'; 查看连接端口show global variables like 'port';sudo -s检查mysql服务状态systemctl status mysql.service查看安装端口情况sudo netstat -tap | grep mysql打开关闭服务sudo service mysql startsudo service mys.
2021-04-12 18:29:01 81
原创 ffmpeg 简单入门代码
#include <stdio.h>#include <libavutil/log.h> //Log系统#include <libavformat/avformat.h> //文件的删除和重命名 int main(int argc,char* argv[]){ //FFmpeg开发Log系统 av_log_set_level(AV_LOG_DEBUG); av_log(NULL,AV_LOG_INFO,"hello\n"); av_log(N.
2021-03-30 01:39:38 311
原创 windows下 安装 ffmpeg
安装 msys2 pacman -Sy#安装64位pacman -S mingw-w64-x86_64-toolchain 解压FFMPEGtar jxvf ffmpeg-snapshot.tar.bz2安装yasm wget http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gztar zxvf yasm-1.3.0.tar.gz tar zxvf yasm-1.3.0.tar.gz cd yasm-1..
2021-03-21 23:12:04 500 3
原创 c++ 使用zlib压缩文本
#include<iostream>#include <stdlib.h>#include "zlib.h"#define MaxBufferSize 1024 * 100#pragma comment (lib,"zlibstat.lib")//http://www.winimage.com/zLibDll///需要下载 zlib123dllx64 和zlib-1.2.3.tar.gz ,// 把zlib-1.2.3.tar.gz里面的zlib.h 和zcon.
2021-03-17 16:28:38 2186
原创 unity 代码模板路径
F:\Unity\Editor\Data\Resources\ScriptTemplates\81-C# Script-NewBehaviourScript.cs.txt
2021-02-09 18:56:49 324
原创 linux c++ 调用java
#include <stdio.h>#include <string> #include <iostream>#include <string>#include <thread>#include "windows.h" #include "jni.h" using namespace std;#ifdef _WIN32 || _WIN64 #pragma comment(lib,"jvm.lib")#pragm..
2021-01-30 13:31:29 480 1
原创 linux 报错 /usr/bin/ld: cannot find -ljvm
找到libjvm.so,拷贝到 /usr/lib/下sudo cp /usr/lib/jvm/java-11-openjdk-amd64/lib/server/libjvm.so /usr/lib/libjvm.so
2021-01-30 03:42:51 471
原创 Linux libevent 入门
#include <event2/listener.h>#include <event2/bufferevent.h>#include <event2/buffer.h>#include <event2/thread.h>#include <arpa/inet.h>#include <string.h>#include <stdlib.h>#include <stdio.h>#include.
2021-01-13 02:18:53 185
原创 udp 简单server和client
server.cpp#include <sys/types.h>#include <sys/socket.h>#include <pthread.h>#include <netinet/in.h>#include <arpa/inet.h>#include <stdio.h>#include <string.h>#include <unistd.h>#include <stdlib..
2021-01-12 00:50:42 1628 2
原创 shell 文件修改时间对比
#rm -f cpptime.time##获取路径currentPath=`pwd`'/test.cpp'#echo $currentPath#获取文件最后修改的时间戳#time=`stat -c %Y $currentPath`#格式化#formart_date=`date '+%Y-%m-%d %H:%M:%S' -d @$time`#echo $formart_date#把文件路径和时间写入文件#echo "$currentPath"'|'"$time" > cppti.
2021-01-10 00:43:35 1514
原创 使用EditPlus来更改远程服务器的文件
1、 File - Open Remote2、点击 settings ,然后点击add ,添加服务器信息3 点击 advanced options ,设置连接的类型4 都点击 ok 完成服务器的连接5 可以在这里打开文件的远程目录发现这个远程比vscode 好多了,vscode设置了半天 还是连接不上...
2021-01-09 17:46:41 499
原创 Spring Clound
1、新建一个空工程learn_spingclound,2、新建一个maven模块tuyspringclund,3、配置 pom.xml<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaL
2021-01-02 21:34:56 197
原创 Java rabbitmq入门
1、创建一个空工程2、添加两个maven 模块,3、 pom.xml<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/
2020-12-29 16:14:40 151 1
原创 ubuntu rabbit 的安装
1、安装erlangsudo apt-get install erlang-nox2、安装Rabbitmq更新源sudo apt-get update安装sudo apt-get install rabbitmq-server三、添加admin,并赋予administrator权限添加admin用户,密码设置为admin。sudo rabbitmqctl add_user admin admin 赋予权限sudo rabbitmqctl set_us...
2020-12-28 14:08:17 267
OpenGLES 2.0 所有平台版本
2019-01-23
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人