gpt4 book ai didi

video - FFmpeg mov to mp4 to gif

转载 作者:行者123 更新时间:2023-12-04 23:18:40 26 4
gpt4 key购买 nike

我正在尝试将 .mov 文件转换为内存中的 mp4,然后使用单个 ffmpeg 命令转换为最终的 GIF 输出:

ffmpeg -t 22 -i "select image and zoom.mov" -f mp4 - | ffmpeg -vf "fps=10,scale=320:-1:flags=lanczos,setpts=0.7*PTS,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -loop 0 "select image and zoom.gif" 
但我遇到了:
muxer does not support non seekable output
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
Error initializing output stream 0:0 --
This线程表明 mp4 不能像这样通过管道传输。现在还是这样吗?我是否真的要使用 bash 的 && option 编写中间文件? ?

最佳答案

你有理由不能这样做吗?

ffmpeg -t 22 -i "select image and zoom.mov" \
-vf "fps=10,scale=320:-1:flags=lanczos,setpts=0.7*PTS,split[s0][s1];\
[s0]palettegen[p];[s1][p]paletteuse" \
-loop 0 "select image and zoom.gif"
但是如果你必须管道,不,你不能使用 mp4 容器,但你可以使用 MKV

关于video - FFmpeg mov to mp4 to gif,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71474297/

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