Android 可以获取视频的分辨率吗?

发布于 2024-12-13 13:40:04 字数 432 浏览 4 评论 0原文

我正在寻找一种方法来获取 Android 中任何给定视频的分辨率。除了 Android 支持的格式之外,它不必支持其他格式,但如果能支持那就太好了。如果您不确定 Android 支持的格式,请参阅此页面:

http://developer。 android.com/guide/appendix/media-formats.html

我认为使用 MediaPlayer 类可以做我想做的事情,但这似乎非常愚蠢和低效。另外,我想要一种相对较快的方法。

我的目标是 Android 3.0+,如果这有什么区别的话。 Honeycomb 还支持 .mkv 文件,尽管直到 Android 4.0 才正式支持。

I'm looking for a way to get the resolution of any given video in Android. It doesn't have to work with other formats than the ones supported in Android, but it'd be great if it did. If you're unsure of the supported formats in Android, please refer to this page:

http://developer.android.com/guide/appendix/media-formats.html

I think it's possible to do what I want using the MediaPlayer class, but that seems incredibly stupid and inefficient. Also, I'd like a way that's relatively fast.

I'm targeting Android 3.0+, if that makes any difference. Honeycomb also supports .mkv files, although it's not officially supported until Android 4.0.

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

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

发布评论

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

评论(4

2024-12-20 13:40:04

您可以使用 MediaMetadataRetriever 检索有关视频文件的分辨率信息。您可以使用 extractMetadata() 方法并使用 METADATA_KEY_VIDEO_HEIGHTMETADATA_KEY_VIDEO_WIDTH 常量。所以你会做这样的事情:

MediaMetadataRetriever metaRetriever = new MediaMetadataRetriever();
metaRetriever.setDataSource(/* file descriptor or file path goes here */);
String height = metaRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT);
String width = metaRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH);

You can use the MediaMetadataRetriever to retrieve resolution information about a video file. You'd use the extractMetadata() method and using the METADATA_KEY_VIDEO_HEIGHT and METADATA_KEY_VIDEO_WIDTH constants. So you'd do something like this:

MediaMetadataRetriever metaRetriever = new MediaMetadataRetriever();
metaRetriever.setDataSource(/* file descriptor or file path goes here */);
String height = metaRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT);
String width = metaRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH);
浅暮の光 2024-12-20 13:40:04

API 10+ 的技巧:

MediaMetadataRetriever mRetriever = new MediaMetadataRetriever();
mRetriever.setDataSource("video_file_path");
Bitmap frame = mRetriever.getFrameAtTime();

int width = frame.getWidth();
int height = frame.getHeight();

我们简单地从视频中获取随机帧并检测其宽度和高度。

Trick for API 10+:

MediaMetadataRetriever mRetriever = new MediaMetadataRetriever();
mRetriever.setDataSource("video_file_path");
Bitmap frame = mRetriever.getFrameAtTime();

int width = frame.getWidth();
int height = frame.getHeight();

We are simple taking a random frame from our video and detecting its width and height.

苯莒 2024-12-20 13:40:04

如果您有视频内容 URI,那么您还可以使用内容提供商查询,

例如

    Cursor mediaCursor = getContentResolver().query(
                        videoContentURI,
                        {MediaStore.Video.Media.RESOLUTION}, null, null, null);
        if (mediaCursor != null) {
                    if (mediaCursor.moveToFirst()) {
        //The resolution of the video file, formatted as "XxY"
        String resolution=mediaCursor.getString(mediaCursor
                                  .getColumnIndex(MediaStore.Video.Media.RESOLUTION));
    }
}

您可以查看以下帖子从视频物理路径获取ContentURI

If you have Video Content URI then you can also use content provider query

Like

    Cursor mediaCursor = getContentResolver().query(
                        videoContentURI,
                        {MediaStore.Video.Media.RESOLUTION}, null, null, null);
        if (mediaCursor != null) {
                    if (mediaCursor.moveToFirst()) {
        //The resolution of the video file, formatted as "XxY"
        String resolution=mediaCursor.getString(mediaCursor
                                  .getColumnIndex(MediaStore.Video.Media.RESOLUTION));
    }
}

You can check following post to get ContentURI from video Physical Path

肥爪爪 2024-12-20 13:40:04

Kotlin 扩展解决方案

这是在 Kotlin 中获取媒体文件尺寸的方法。

val (width, height) = myFile.getMediaDimensions(context)

fun File.getMediaDimensions(context: Context): Pair<Int, Int>? {
    if (!exists()) return null
    val retriever = MediaMetadataRetriever()
    retriever.setDataSource(context, Uri.parse(absolutePath))

    val width = retriever.extractMetadata(METADATA_KEY_VIDEO_WIDTH).toIntOrNull() ?: return null
    val height = retriever.extractMetadata(METADATA_KEY_VIDEO_HEIGHT).toIntOrNull() ?: return null

    retriever.release()
    return Pair(width, height)
}

如果您想让它更安全(Uri.parse 可能会抛出异常),请使用此组合。其他的通常也很有用:)

fun String?.asUri(): Uri? {
    try {
        return Uri.parse(this)
    } catch (e: Exception) {
    }
    return null
}

val File.uri get() = absolutePath.asUri()

fun File.getMediaDimensions(context: Context): Pair<Int, Int>? {
    if (!exists()) return 0
    val retriever = MediaMetadataRetriever()
    retriever.setDataSource(context, uri)

    val width = retriever.extractMetadata(METADATA_KEY_VIDEO_WIDTH).toIntOrNull() ?: return null
    val height = retriever.extractMetadata(METADATA_KEY_VIDEO_HEIGHT).toIntOrNull() ?: return null

    retriever.release()
    return Pair(width, height)
}

这里没有必要,但通常有用的附加 Uri 扩展

val Uri?.exists get() = if (this == null) false else asFile().exists()

fun Uri.asFile(): File = File(toString())

Kotlin Extension Solution

Here is the way to fetch media file dimensions in Kotlin

val (width, height) = myFile.getMediaDimensions(context)

fun File.getMediaDimensions(context: Context): Pair<Int, Int>? {
    if (!exists()) return null
    val retriever = MediaMetadataRetriever()
    retriever.setDataSource(context, Uri.parse(absolutePath))

    val width = retriever.extractMetadata(METADATA_KEY_VIDEO_WIDTH).toIntOrNull() ?: return null
    val height = retriever.extractMetadata(METADATA_KEY_VIDEO_HEIGHT).toIntOrNull() ?: return null

    retriever.release()
    return Pair(width, height)
}

If you want to make it safer (Uri.parse could throw exception), use this combination. The others are generally just useful as well :)

fun String?.asUri(): Uri? {
    try {
        return Uri.parse(this)
    } catch (e: Exception) {
    }
    return null
}

val File.uri get() = absolutePath.asUri()

fun File.getMediaDimensions(context: Context): Pair<Int, Int>? {
    if (!exists()) return 0
    val retriever = MediaMetadataRetriever()
    retriever.setDataSource(context, uri)

    val width = retriever.extractMetadata(METADATA_KEY_VIDEO_WIDTH).toIntOrNull() ?: return null
    val height = retriever.extractMetadata(METADATA_KEY_VIDEO_HEIGHT).toIntOrNull() ?: return null

    retriever.release()
    return Pair(width, height)
}

Not necessary here, but generally helpful additional Uri extensions

val Uri?.exists get() = if (this == null) false else asFile().exists()

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