ffplay持续时间不起作用?


2

如果我运行命令

ffplay -t 3 test.aac

它只播放整个文件,而不是3秒。将使用什么命令来设置播放持续时间?

Answers:


1

我建议补充一下 autoexit 对你的命令:

ffplay -t 3 -autoexit test.aac

如果这不起作用,我会建议一个替代(mplayer):

mplayer -endpos 3 test.aac

1

看来, -t 选项不适用于所有文件。我试过这个命令

ffplay -t 3 test.mkv

它工作得很好。作为解决方法,此命令适用于aac文件

ffmpeg -i out.aac -c copy -f adts -t 3 - | ffplay -autoexit -

-1

在Windows命令提示符下键入:

c:swipl -g "thread_create((sleep(5),shell('taskkill /IM ffplay.exe')),_,[]),atomic_list_concat(['x:ffplay','VTS_01_3.VOB'],' ',Atom), shell(Atom)"  -t halt

这将播放VTS_O1_3.VOB文件5秒,然后taskkill.exe将结束ffplay.exe,c:和x:是驱动器号,其中安装了Swi-Prolog和Ffmpeg

在键入之前,请确保已安装Swi-Prolog。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.