gpt4 book ai didi

batch-file - 使用 HandBrake 命令行将所有 avi 转换为 mp4 并在转换后删除的批处理脚本

转载 作者:行者123 更新时间:2023-12-04 23:09:27 25 4
gpt4 key购买 nike

如此简单而酷的批处理问题。对不起这个终极新手问题 !

我有一个文件夹,其中包含数百个这样的视频:

Video001 - Introduction.avi
Video002 - History of Stack Overflow.avi
Video003 - Before Asking.avi
...
Video999 - Conclusion.avi

我需要用 x264 编解码器重新编码所有这些。 Ffmpeg 非常慢,所以我尝试使用 HandBrake。有一个 HB 的命令行版本和很棒的默认礼物。我可以编写这个命令来只转换一个存在“正常”的文件:
HandBrakeCLI.exe -i "Video001 - Introduction.avi" -o "Video001 - Introduction.mp4" -Z Normal
我的问题: 如何转换文件夹中的所有文件并在转换过程后删除? 谢谢!

注意:如果您认为 ffmpeg 是更好的解决方案,我可以给我最喜欢的礼物。 Handbrake 说的是 Normal present:
Normal: -e x264 -q 20.0 -a 1 -E faac -B 160 -6 dpl2 -R Auto -D 0.0 --audio-copy-mask aac,ac3,dtshd,dts,mp3 --audio-fallback ffac3 -f mp4 --loose-anamorphic --modulus 2 -m --x264-preset veryfast --h264-profile main --h264-level 4.0

最佳答案

for %%f in (*.avi) do (
handbrakecli.exe -i "%%~nxf" -o "%%~nf.mp4" -Z Normal
del "%%~f"
)

对于每个 avi 文件,使用输入文件的名称和扩展名调用 handbrake,并生成一个带有原始文件名和 .mp4 扩展名的输出文件

关于batch-file - 使用 HandBrake 命令行将所有 avi 转换为 mp4 并在转换后删除的批处理脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22054728/

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