ffmpeg -i in.mp4 -c:v libx264 -pix_fmt yuv420p -profile:v high -level 4.1 -preset veryslow -crf 28 -c:a aac -b:a 128k -map_chapters -1 out.mp4

#信息技术基础
import cv2
src=cv2.imread('in.png')
dest=cv2.resize(src,dsize=(1708,960),interpolation=cv2.INTER_LANCZOS4)
cv2.imwrite('out.png',dest)

#信息技术基础
Efficient neural supersampling on a novel gaming dataset
https://arxiv.org/pdf/2308.01483
#计算机视觉
OpenCV 笔记(10):常用的边缘检测算子—— Laplace、LoG - 知乎
https://zhuanlan.zhihu.com/p/1939628032445875736
#计算机视觉
find . -type f -name "*.flac"|parallel -j 12 ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 {}

#信息技术基础