本文介绍了使用FFProbe获取视频fps的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在ffprobe中是新的,我的目标是获取视频fps并存储到java程序中。我的代码存储xml文件,但我想直接存储像int fps = 30; ffprobe -v quiet -print_format xml -show_format - show_streams/video/small/small.avi> /video/small/test.xml
这是我的代码。
解决方案
这将打印视频FPS:
ffprobe -v error -select_streams v -of default = noprint_wrappers = 1:nokey = 1 -show_entries stream = r_frame_rate file.mp4
I am new in ffprobe my aim is get video fps and store into java program. my code store xml files but i want store directly like int fps=30;
ffprobe -v quiet -print_format xml -show_format -show_streams "/video/small/small.avi" > "/video/small/test.xml"
this is my code.
解决方案
This will print the video FPS:
ffprobe -v error -select_streams v -of default=noprint_wrappers=1:nokey=1 -show_entries stream=r_frame_rate file.mp4
这篇关于使用FFProbe获取视频fps的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!