简体   繁体   English

如何在Xamarin.forms中更改视频的分辨率

[英]How to change resolution of a video in Xamarin.forms

I have done a custom camera application in Xamarin.Forms, it takes the videos either with a very low resolution or with a very high resolution. 我在Xamarin.Forms中完成了一个自定义相机应用程序,它以非常低的分辨率或非常高的分辨率拍摄视频。

Plugin.Media.Abstraction.VideoQuality.Medium
Plugin.Media.Abstraction.VideoQuality.Low

Medium captures video with 1080P and Low with 144P. 中型可捕获1080P的视频,而144P可捕获低的视频。 I want to have video with 480P or 720P. 我想要480P或720P的视频。 How can I change that. 我该如何改变呢?

Thanks in advance 提前致谢

Looking at the code of this nuget, I see that's it's using Android's EXTRA_VIDEO_QUALITY to control the quality of the video. 查看此nuget的代码,我发现它是使用Android的EXTRA_VIDEO_QUALITY来控制视频的质量。 As you can see in the documentation, it allows only values 1 and 0. The nuget uses this logic to determine the value of EXTRA_VIDEO_QUALITY: 如您在文档中所见,它仅允许值1和0。nuget使用此逻辑来确定EXTRA_VIDEO_QUALITY的值:

private static int GetVideoQuality(VideoQuality videoQuality)
{
    switch (videoQuality)
    {
        case VideoQuality.Medium:
        case VideoQuality.High:
            return 1;

        default:
            return 0;
    }
}

so it's not really possible to easily change the quality to other values. 因此实际上不可能轻松地将质量更改为其他值。 What about resizing the video yourself? 如何自行调整视频大小? Maybe this will start you on this: Video compression on android using new MediaCodec Library 也许这会让您开始: 使用新的MediaCodec库在android上进行视频压缩

If you want to change quality of saved photos, you can do it with this property: 如果要更改保存的照片的质量,可以使用以下属性进行操作:

var file = await CrossMedia.Current.TakePhotoAsync(new StoreCameraMediaOptions
{
    CompressionQuality = 92
});

where 0 is max compression and 100 (max) is no compression, it's supported only by iOS and UWP in this plugin. 其中0是最大压缩率,而100(max)是无压缩率,此插件仅iOS和UWP支持。

Here's the documentation I've used: https://github.com/jamesmontemagno/MediaPlugin 这是我使用的文档: https : //github.com/jamesmontemagno/MediaPlugin

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM