ffmpeg 转 ts 为 mp4

2021-03-23 13:49:13

ffmpeg -i xx.ts -c:v libx264 -c:a copy d:/11.mp4 
-c:v video编码
-c:a audio编码
mysql 更新索引时卡住查询不出来

2021-02-26 16:15:24

show full processlist;
//找到waiting xxxx 
kill xxid;
mogodb 下载页面

2021-01-20 11:00:11

http://dl.mongodb.org/dl/win32/x86_64 可以在该页面进行直接下载。

puppeteer 在centos7 调用报错libatk-bridge-2.0.so.0 libgtk-3.so.0

2020-12-16 15:01:14

参考: https://blog.csdn.net/github_38924695/article/details/107058061

//安装如下
yum install at-spi2-atk -y
yum install gtk3 -y
400 bad request The plain HTTP request was sent to HTTPS port

2020-12-10 10:38:04

项目为ssl环境,但总有个别请求是: http://xx.com:443/xx 这样访问的,导致报错。 nginx : 可以增加错误页面跳转

error_page 497 https://$host$request_uri;

或者在页面中增加meta,将调用的http请求升级成https请求并调用

<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
ueditor样式复制进去后丢失

2020-12-04 14:40:18

在复制微信公众号文章到ueditor后section样式丢失。

//配置ueditor.config.js
whiteList:{
section : ['class','style']
}

增加classstyle 即可。

ffmpeg压缩mp4视频命令

2020-12-02 09:04:35

ffmpeg -i test.mp4 -r 10 -b:a 32k test_c.mp4

通过降低帧率和音频码率达到压缩目的。帧率10fps,码率32k.

nginx 二级目录代理

2020-11-30 15:59:11

需求:访问 http://xxx.com/pro ,通过nginx代理到服务器等于访问 http://localhost/ .

location /pro/ {
    proxy_pass http://127.0.0.1:9027/;
}

请注意 / 斜杆 , /pro/ 以及 9027/ ,都不可省略。

优酷视频kux转为mp4

2020-11-30 14:11:02

低版本的优酷客户端下载的kux格式的视频可以通过客户端内带的ffmpeg进行转化。 https://github.com/chenzhihuan17/kux2mp4

./ffmpeg -y -i targetKuxFilePath -c:v copy -c:a copy -threads 2 targetMp4FilePath
springboot 取出时间返回前台与mysql数据库不一致

2020-11-10 09:41:55

application.yml 中增加:

spring:
    jackson:
        time-zone: GMT+8

springboot默认转换json使用的jackson ,设置时区为东八区。

mysql 随机某段时间

2020-11-09 09:13:41

使用date_add 函数,随机生成从开始时间至结束时间的时间单位。

update byy_resource set createTime=date_add('2018-09-01 00:00:00',INTERVAL FLOOR(1+(RAND()*67392000)) SECOND) where createTime > '2020-11-01 00:00:00';