gpt4 book ai didi

windows - 如何在 Windows 命令行中运行命令集

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

x264-preset用于第二个命令( Cmd 2 )。是替代还是?

命令 1:

x264-preset:
vcodec=libx264
thread_type=slice
slices=1
profile=baseline
level=32
preset=superfast
tune=zerolatency
intra-refresh=1
crf=15
x264-params=vbv-maxrate=5000:vbv-bufsize=1:slice-max-size=1500:keyint=60

命令 2
$ ffmpeg -r 30 -f dshow -i video="devicename" -pix_fmt yuv420p -an -vpre
x264-preset -f mpegts udp://127.0.0.1:8888

当我运行 Cmd 1它不起作用。即使是这样的 SET:
x264-preset:
SET vcodec=libx264
SET thread_type=slice
SET slices=1
SET profile=baseline
SET level=32
SET preset=superfast
SET tune=zerolatency
SET intra-refresh=1
SET crf=15
SET x264-params=vbv-maxrate=5000:vbv-bufsize=1:slice-max-size=1500:keyint=60

资源:
https://lists.ffmpeg.org/pipermail/ffmpeg-user/2016-January/030127.html

最佳答案

您似乎正在尝试执行自定义 preset file 的内容.要将其作为普通命令运行:

ffmpeg -framerate 30 -f dshow -i video="devicename" -pix_fmt yuv420p -an -vcodec libx264 -thread_type slice -slices 1 -profile:v baseline -level 32 -preset superfast -tune zerolatency -intra-refresh 1 -crf 15 -x264-params vbv-maxrate=5000:vbv-bufsize=1:slice-max-size=1500:keyint=60 -f mpegts udp://127.0.0.1:8888

关于windows - 如何在 Windows 命令行中运行命令集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60378188/

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