我正在尝试确定某个用户上传的文件是否是视频文件。
我首先尝试了ffprobe,
# a png file
Input #0, png_pipe, from '<file>':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: png, rgba(pc), 920x2094 [SAR 4724:4724 DAR 460:1047], 25 tbr, 25 tbn, 25 tbc
# a text file
Input #0, tty, from '<file>':
Duration: 00:00:00.24, bitrate: 40 kb/s
Stream #0:0: Video: ansi, pal8, 640x400, 25 fps, 25 tbr, 25 tbn, 25 tbc
# a video file
Input #0, matroska,webm, from '<file>':
Metadata:
encoder : libebml v1.3.5 + libmatroska v1.4.8
creation_time : 2017-12-12T20:18:42.000000Z
<redacted>
但是很难弄清楚是什么。甚至图像文件和文本文件也算作视频。
我应该将输出matroska,webm,
与ffmpeg支持的每个编解码器进行比较,还是有更好的方法呢?
答案 0 :(得分:0)
假设您的系统支持file
命令,则可以通过-i, --mime选项来获取文件的mime类型,并在使用 ffmpeg 处理之前将其隔离:
# a video file
$ file -i movie.mp4 | cut -d ' ' -f2 | cut -d '/' -f1
--> video
(cut
命令的Credit)。
答案 1 :(得分:0)
使用ffprobe
:
ffprobe -v error -select_streams v:0 -show_entries stream=codec_type -of csv=p=0 input.mkv
输出video
或完全不输出。
问题是ffprobe
认为图像是视频,因此您可以另外/替代地使用codec_name
来帮助确定类型:
ffprobe -v error -select_streams v:0 -show_entries stream=codec_name,codec_type -of default=nw=1 input.png
输出:
codec_name=png
codec_type=video