视频格式分析器

发布于 2024-08-06 16:20:10 字数 481 浏览 1 评论 0原文

我有一个视频文件,但不知道它是什么格式。

有没有软件可以分析它使用什么样的视频容器/压缩格式?

我尝试了 Gspot,但它不起作用(显示“未知格式”)

我确信该文件正在使用某种公共标准编解码器,因为我可以使用媒体转换器将其转换为 avi 或 mpg4 文件。

提前致谢。

这是 Gspot 的图片,但它没有显示任何内容: 替代文本 http://img19.imageshack.us/img19/2675/gspota.png< /a>

当我按 1 时,它说 DShow 报告错误。

I have a video file I don't know what format it is.

Is there a software can analyze what kind of video container / compression format it uses?

I tried Gspot, but it doesn't work (Show "Unknown format")

I am sure the file is using some kind of public standard codec because I can use a media converter convert it to avi or mpg4 file.

Thanks in advance.

Here is the picture of Gspot, but it doesn't show anything:
alt text http://img19.imageshack.us/img19/2675/gspota.png

When I press 1, it says DShow reports error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

情栀口红 2024-08-13 16:20:10

您可以使用 ffpmeg (Windows 版本 此处)使用 -i 开关:

ffmpeg -i myfile.avi

FFmpeg 版本 SVN-r19159-Sherpya,版权所有 (c) 2000-2009 法布里斯·贝拉德等人
libavutil 50.3.0 / 50.3.0
libavcodec 52.30。 2 / 52.30。 2
libav 格式 52.34。 0 / 52.34。 0
libavdevice 52.2.0 / 52.2.0
libavfilter 0.5.0 / 0.5.0
libswscale 0.7.1 / 0.7.1
libpostproc 51.2.0 / 51.2.0
建于 2009 年 6 月 12 日 04:25:02,gcc:4.5.0 20090517(实验)
从“myfile.avi”输入#0,avi:
持续时间:00:00:00.41,开始:0.000000,比特率:363 kb/s
流#0.0:视频:rawvideo、pal8、60x49、12 tbr、12 tbn、12 tbc
必须至少指定一个输出文件

You can use ffpmeg (Windows builds here) with the -i switch:

ffmpeg -i myfile.avi

FFmpeg version SVN-r19159-Sherpya, Copyright (c) 2000-2009 Fabrice Bellard, et al.
libavutil 50. 3. 0 / 50. 3. 0
libavcodec 52.30. 2 / 52.30. 2
libavformat 52.34. 0 / 52.34. 0
libavdevice 52. 2. 0 / 52. 2. 0
libavfilter 0. 5. 0 / 0. 5. 0
libswscale 0. 7. 1 / 0. 7. 1
libpostproc 51. 2. 0 / 51. 2. 0
built on Jun 12 2009 04:25:02, gcc: 4.5.0 20090517 (experimental)
Input #0, avi, from 'myfile.avi':
Duration: 00:00:00.41, start: 0.000000, bitrate: 363 kb/s
Stream #0.0: Video: rawvideo, pal8, 60x49, 12 tbr, 12 tbn, 12 tbc
At least one output file must be specified

記憶穿過時間隧道 2024-08-13 16:20:10

在控制台模式下尝试 mplayer。如果检测到它,它会打印文件信息。
我想这个问题应该发布在超级用户中......

Try mplayer in console mode. It prints file info if it detects it.
This question should be posted in superuser i guess...

心在旅行 2024-08-13 16:20:10

如果您相当接近现代 Linux 系统,请尝试 file 命令。它受过良好的教育:

~> file foo.mov
foo.mov: ISO Media, Apple QuickTime movie
~> mv foo.mov whatever
~> file whatever
whatever: ISO Media, Apple QuickTime movie

如您所见,它检查文件的内容,而不仅仅是测试文件名。并不意味着您尝试的工具依赖于文件名,只是想说明它可以是一个强大的工具。

If you're reasonably close to a modern Linux system, try the file command. It's pretty well-educated:

~> file foo.mov
foo.mov: ISO Media, Apple QuickTime movie
~> mv foo.mov whatever
~> file whatever
whatever: ISO Media, Apple QuickTime movie

As you can see, it checks the contents of the file, it doesn't just test the filename. Not implying that the tool you tried was reliant on the filename, just trying to illustrate that it can be a powerful tool.

极度宠爱 2024-08-13 16:20:10

尝试媒体信息。它是一个很棒的工具,可以为您提供比 ffmpeg 或 gspot 更详细的信息。

Try mediainfo. It is a great tool and gives you much more detailed information than ffmpeg or gspot.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文