常用指令&操作
RocheL
Aug 9, 2022
Last edited: 2022-11-5
type
Post
status
Published
date
Aug 9, 2022
slug
often
summary
常用指令&操作
tags
Record
category
技术分享
icon
password
Property
Aug 22, 2022 11:49 AM
URL
Linux&Conda&Pip&Tmux
Linux
ssh-keygen -t rsa
ls -l | grep "^-" | wc -l
du -ah --max-depth=1 /data6/lijiaqi
ps -aux | grep
软链接:ln -s [dir1] [dir2]
Conda&Pip
pip install --upgrade pip
Tmux
tmux ls
tmux new -s xxx
tmux kill-session -t xxx
tmux a -t xxx
这种情况退出来 tmux a -d -t [YOUR TMUX NAME] 即可
Other
scenedetect --input my_video.mp4 --output my_video_scenes --stats my_video.stats.csv time --start 00:05:00 --end 00:06:30 detect-content list-scenes save-images split-video
ffmpeg -ss [start] -i [input] -to [end] -c copy [output]
参数顺序有影响
加参数准确切割 accurate seek
ffmpeg -f concat -i hebing.txt -c copy myout.mp4
ffmpeg -f concat -i videolist.txt -c copy out.mp4
或者
ffmpeg -i 1.mp4 -qscale 4 1.mpg
ffmpeg -i 2.mp4 -qscale 4 2.mpg
ffmpeg -i "concat:1.mpg|2.mpg" -c copy output.mpg
ffmpeg -i output.mpg -y -qscale 0 -vcodec libx264 output.mp4
————————————————
原文链接:https://blog.csdn.net/xdg15294969271/article/details/125163418
- Catalog
- About
0%