在Xamarin UWP中创建软件包后,视频只能通过语音播放,我看不到视频

时间:2019-07-01 02:20:17

标签: xamarin xamarin.forms xamarin.uwp

我正在使用最新版本的MediaManager插件播放视频。当我在调试模式下运行应用程序时,一切正常,但是当我为窗口创建一个程序包时,视频不会显示仅听到声音。

我正在使用以下Package

Plugin.MediaManager.Forms

这是我的XAML页面

<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="Digi_Sign.Views.MediaScreen"
             xmlns:forms="clr-namespace:MediaManager.Forms;assembly=MediaManager.Forms"
             BackgroundColor="Black">
    <ContentPage.Content>
        <Grid x:Name="stkLayout" VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand" BackgroundColor="Black">
            <forms:VideoView VideoAspect="AspectFill"  x:Name="videoPlayer" ShowControls="False"  />
             </Grid>
    </ContentPage.Content>
</ContentPage>

CS页面

CrossMediaManager.Current.Play(fileName);

在包错误日志中未发现错误,因为我提到在调试模式下一切正常,但在发布模式下不工作

2 个答案:

答案 0 :(得分:0)

很可能是由于您描述的行为(并查看您的代码),这听起来像是因为视频未在UI线程上运行,这导致应用播放音频而不播放视频。因此,将其更改为以下内容:

Device.BeginInvokeOnMainThread(() => { CrossMediaManager.Current.Play(fileName); });

答案 1 :(得分:0)

基本上,无法使用xamrin.UWP的本机代码初始化视频的渲染器,因此我们需要在UWP平台的App.xaml.cs中对其进行初始化时手动加载渲染程序集

下面是我的代码,其中我在 OnLaunched()中加载了程序集文件,并替换了现有的 Xamarin.Forms.Forms.Init()

  protected override void OnLaunched(LaunchActivatedEventArgs e)
        {
            Windows.UI.Xaml.Controls.Frame rootFrame = Window.Current.Content as Windows.UI.Xaml.Controls.Frame;
            if (rootFrame == null)
            {

                rootFrame = new Windows.UI.Xaml.Controls.Frame();
                rootFrame.NavigationFailed += OnNavigationFailed;

                List<Assembly> assembliesToAdd = new List<Assembly>();
                assembliesToAdd.Add(typeof(VideoViewRenderer).GetTypeInfo().Assembly);
                Xamarin.Forms.Forms.Init(e, assembliesToAdd);


                // Place the frame in the current Window
                Window.Current.Content = rootFrame;
            }

            if (rootFrame.Content == null)
            {
                rootFrame.Navigate(typeof(MainPage), e.Arguments);
            }

            Window.Current.Activate();
        }

有关更多详细信息,请点击此处。您可以在其中找到更多说明。

https://forums.xamarin.com/discussion/119451/crossmedia-works-in-debug-but-not-in-release-for-uwp-error-msg-about-onecore