This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Ubuntu个人文件夹中文改英文 | |
### 背景 | |
选择中文安装好的Ubuntu系统主文件夹下的文件夹是中文的,例如`桌面`、`下载`、`图片`等,在终端下想要切换到这些文件夹就有点麻烦。 | |
虽然Unity桌面环境可以通过切换系统语言来改名,但是Mate等桌面环境下就没这么“方便”。 | |
### 命令行解决 | |
打开终端,在终端中输入命令: | |
``` | |
export LANG=en_US |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 邪魔歪道之使用OpenCV精准切割视频 | |
## ffmpeg 切割视频 | |
使用ffmpeg直接切割视频的命令 | |
``` | |
ffmpeg -i test.mp4 -ss 00:00:00 -t 00:00:30 -c:v copy -c:a copy output.mp4 | |
``` | |
或者 | |
``` |