gpt4 book ai didi

linux - 如何将目录中的多个 .dav 文件转换为 .mp4

转载 作者:太空宇宙 更新时间:2023-11-04 05:07:39 29 4
gpt4 key购买 nike

我的目录中有一堆.dav 文件,需要将目录中的所有文件转换为.mp4 格式。顺便说一句,我使用的是 Linux,所以最好寻找命令行选项

最佳答案

经过一番挖掘,找到了我正在寻找的解决方案。 Bash 是你的 friend :)

cd 到目录:

for i in `ll|awk '{print $9}'|cut -d '.' -f1`;do ffmpeg -y -i $i.dav -vcodec libx264 -crf 24 -filter:v "setpts=1*PTS" $i.mp4; done

引用ffmpeg解决方案:here

关于linux - 如何将目录中的多个 .dav 文件转换为 .mp4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59208911/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com