让女武神为自己读小说
最终效果:
准备配置GPT-SoVITS视频内有详细的使用方法以及训练模型的方法
.responsive-iframe-container {
position: relative;
width: 100%; /* Maximum width is 100% of parent */
padding-top: 56.25%; /* Aspect ratio of 16/9 = 56.25% */
background-color: #eee; /* Optional background color */
}
.responsive-iframe-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none; /* Optional, depending on whether you want a border */
}
训练模型女武神的语音 ...
Windows11上配置C/C++环境
MinGW
MinGW: A native Windows port of the GNU Compiler Collection (GCC), with freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All of MinGW’s software will execute on the 64bit Windows platforms.
下载MinGW - Minimalist GNU for Windows
直接下载
安装
安装时选择好安装位置(不能有中文或空格),其他默认即可。
安装完成后打开MinGW,勾选mingw32-base,mingw32-gcc-g++,分别是C/C++编译器。
点击Installation -> Apply Changes,在弹出窗口中点击Apply ...
创建pip包并发布到PyPI上
新建项目假设项目名为example,则项目结构如下:
123456folder/├── example│ ├── __init__.py├── README.md├── LICENSE├── pyproject.toml
安装相关工具1pip install setuptools wheel twine build
各文件内容init.py这个文件写你要实现功能的代码例如:
12class add(self, a, b): self.result = a + b
README.md这个文件写你要发布的项目的描述例如:
1234567# 将两数相加# 安装pip install example# 使用import examplere = example.add(1, 2)print(re.result)
LICENSE开源协议
pyproject.toml这个文件写你的项目的设置例如:
12345678910111213141516171819202122[build-system]requires = ["hatchling"]build-back ...
Minecraft搭建本地服务器
Java
Java 17(1.17及以上版本)https://www.oracle.com/java/technologies/downloads/
Java 8(1.17以下版本)https://www.java.com/en/download/
原版
server.jar https://mcversions.net/在Stable Releases栏选择需要的版本点击Download,选择Download Server Jar
下载完成后将server.jar文件放在一个文件夹里,右键文件夹空白区域选择在终端中打开(Win10可能需要按住Shift点击右键)。在终端中运行以下命令:
1java -Xms1024M -Xmx1024M -jar server.jar nogui
此时会在文件夹中生成一些文件,并显示提示:
1You need to agree to the EULA in order to run the server. Go to eula.txt for more info.
回到文件夹打开eula.txt,将false改为true:
1eula= ...
Termux安装配置
安装
下载地址GitHub
点击通知栏Termux那里的ACQUIRE WAKELOCK, 弹出询问始终在后台运行点允许, 然后通知栏显示RELEASE WAKELOCK
在设置中打开Termux的读写收集储存和读取剪切板权限
配置
换源(默认源能稳定下载的话可不换)1termux-change-repo
第一个界面直接回车,第二个界面选择Mirrors in China
更新源1apt update
更新软件1apt upgrade -y
Termux 上运行SSH Server
参考这篇文章
ORB-SLAM3稠密建图
依赖Eigeneigen.tuxfamily.org
123456wget https://gitlab.com/libeigen/eigen/-/archive/3.3.4/eigen-3.3.4.zipunzip eigen-3.3.4.zip && cd eigen-3.3.4mkdir build && cd buildcmake ..sudo make installsudo cp -r /usr/local/include/eigen3/Eigen /usr/local/include
PangolinPangolin-Github
12345678910git clone https://github.com/stevenlovegrove/Pangolincd Pangolin/scripts/rm -rf vcpkg/git clone https://github.com/microsoft/vcpkgcd .../scripts/install_prerequisites.sh --dry-run recommendedmkdir ...
ORB-SLAM3运行自己的数据集
参考了这位大佬的方法用自己的视频跑ORB_SLAM3(密码:eu2t)
在ORB_SLAM3\Examples\Monocular下新建myvideo.yaml和myvideo.cpp,视频文件也放到这。
在myvideo.yaml中添加内容:1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162%YAML:1.0#--------------------------------------------------------------------------------------------# Camera Parameters. Adjust them!#--------------------------------------------------------------------------------------------Camera.type: "PinHole" ...
在WSL2中运行ORB-SLAM3
仓库链接UZ-SLAMLab/ORB_SLAM3
系统
我前面弄了Apollo所以想再整个新系统来弄SLAM,也可以直接在原系统中进行。
在wsl2-distro-manager的release中下载最新版的压缩包。
打开就可以复制已有的WSL。
依赖PangolinPangolin-Github
12345678910git clone https://github.com/stevenlovegrove/Pangolincd Pangolin/scripts/rm -rf vcpkg/git clone https://github.com/microsoft/vcpkgcd .../scripts/install_prerequisites.sh --dry-run recommendedmkdir build && cd buildcmake ..cmake --build .sudo make install
OpenCVopencv.org
安装依赖 123sudo apt install build-essential libgt ...
使用Python获取番剧信息(二)
A python script for hexo-bilibili-bangumigithub/hexo-bilibili-bangumi-addon
需要电脑有python环境
所有信息均来自bangumi.tv。仅用于补全插件所获得的信息,如有侵权,请联系删除。
使用方法
先安装插件,具体方法详见插件主页;
获取番剧数据,得到\source\_data\bangumis.json;
pip安装httpx;
1pip install httpx
根据已经获得的数据爬取每个番剧的信息,将python代码保存成文件放在项目根目录后运行。代码2023/01/26更新1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031 ...
使用Python获取番剧信息(一)
在使用Hexo插件:hexo-bilibili-bangumi时,当数据源为Bangumi时,只能获取到番剧名称和封面。所以自己写了个爬虫来获取总集数、评分等信息。2022/9/2:😅原来bgm有api,我是🤡2022/9/13:不会写Hexo插件,把这个改成了用官方api方式获取使用Python获取番剧信息(二)。并且从requests换成了httpx,但是不会异步🤣。
需要电脑有python环境
所有爬取到的信息均来自bangumi.tv。仅用于补全插件所获得的信息,如有侵权,请联系删除。此方法已被弃用,请移步使用Python获取番剧信息(二)
使用方法
先安装插件,具体方法详见插件主页。
获取番剧数据,得到\source\_data\bangumis.json
pip安装requests和lxml
12pip install requestspip install lxml
根据已经获得的数据爬取每个番剧的信息,将python代码保存成文件放在项目根目录后运行。
123456789101112131415161 ...