git 常用命令

全局配置git config --global user.name “yt”git config --global user.email “a@b.com”查看全局配置git config --global --list创建仓库git init获取别人项目git clone URL跟踪一个文件或者一

阅读全文

pagehelper的在springboot3中的使用

分页插件1、加入依赖 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-st

阅读全文

SignalR 里面不要忘了加的东西,要不然js连不上

services.AddAuthentication(x =>).AddJwtBearer(x =>{x.RequireHttpsMetadata = false;x.SaveToken = true;x.TokenValidationParameters = new TokenVali

阅读全文

ZLMediaKit最新版本http-flv拉流要加上 live

示例http://localhost/live/combat_136_5173.live.flv

阅读全文

对文件路径进行排序的算法。

static void Main() { var list = new List<string> { "D:\\wwwroot\\recode\\catom\\2024-10-11\\20-12-44-0.mp4"

阅读全文

srs-bench 安装的条件

1、unzip的安装2、go的安装-bash: gofmt command not found #Debianapt-get install golang-1.12-go #Ubuntuapt-get install golang-1.12-go #Arch Linuxpacman -S go-pi

阅读全文

Coturn快速的搭建Turn/Stun服务器

安装apt install coturn编辑配置文件nano /etc/turnserver.conf配置文件内容listening-port=3478external-ip=101.43.11.156lt-cred-mechserver-name=domainuser=username1:pass

阅读全文

FreeScheduler 定时任务

Scheduler scheduler = new FreeSchedulerBuilder() .OnExecuting(task => { using v

阅读全文

SRS 直播配置

# Live streaming config for SRS.# @see full.conf for detail config.listen 1935;max_connections 1000;srs_log_tank console;daemo

阅读全文

c# .gitignore 忽略不必要的文件

## Ignore Visual Studio temporary files, build results, and## files generated by popular Visual Studio add-ons.# User-specific files*.suo*.user*.usero

阅读全文