Microsoft MVP성태의 닷넷 이야기
Phone: 14. C# - MAUI에서 MediaElement 사용 [링크 복사], [링크+제목 복사],
조회: 5316
글쓴 사람
정성태 (seongtaejeong at gmail.com)
홈페이지
첨부 파일
(연관된 글이 4개 있습니다.)
(시리즈 글이 2개 있습니다.)
Phone: 14. C# - MAUI에서 MediaElement 사용
; https://www.sysnet.pe.kr/2/0/13624

Phone: 15. C# MAUI - MediaElement Source 경로 지정 방법
; https://www.sysnet.pe.kr/2/0/13626




C# - MAUI에서 MediaElement 사용

의외군요, ^^; MAUI 앱을 만들고 <MediaElement />가 당연히 있을 줄 알고 타이핑을 했더니 인텔리센스에 뜨지 않습니다. 다행히 검색해 보면 그래도 잘 소개된 글이 나옵니다.

Play Audio and Video in .NET MAUI apps with the new MediaElement
; https://devblogs.microsoft.com/dotnet/announcing-dotnet-maui-communitytoolkit-mediaelement/

MediaElement
; https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/views/mediaelement

글에 따라 패키지 참조를 추가한 후,

// .NET Framework: Install-Package CommunityToolkit.Maui
// .NET Core/5+: Install-Package CommunityToolkit.Maui.Core

Install-Package CommunityToolkit.Maui.Core
Install-Package CommunityToolkit.Maui.MediaElement

// 이 글에서는 .NET 8을 기준으로 합니다.

<Project Sdk="Microsoft.NET.Sdk">

    <!-- ...생략... -->

    <ItemGroup>
        <PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
        <PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
        <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
        
        <PackageReference Include="CommunityToolkit.Maui.Core" Version="9.0.0" />
        <PackageReference Include="CommunityToolkit.Maui.MediaElement" Version="3.1.1" />
    </ItemGroup>

</Project>

MauiProgram.cs 파일에 다음과 같은 변경 사항을 추가하고,

using Microsoft.Extensions.Logging;
using CommunityToolkit.Maui.Core;
using CommunityToolkit.Maui;

namespace TestApp;
public static class MauiProgram
{
    public static MauiApp CreateMauiApp()
    {
        var builder = MauiApp.CreateBuilder();
        builder
            .UseMauiApp<App>()
            .UseMauiCommunityToolkitCore()
            .UseMauiCommunityToolkitMediaElement()
            .ConfigureFonts(fonts =>
            {
                fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
                fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
            });

#if DEBUG
        builder.Logging.AddDebug();
#endif

        return builder.Build();
    }
}

테스트를 위해 xaml에 mp4 파일을 가리키는 Source 속성을 채워 MediaElement를 추가합니다.

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
             x:Class="SimplePlayer.MainPage">

    <ScrollView>
        <VerticalStackLayout
            Padding="30,0"
            Spacing="25">

            <toolkit:MediaElement
                x:Name="MediaElement"
                ShouldAutoPlay="True"
                Source="https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
                />
        </VerticalStackLayout>
    </ScrollView>

</ContentPage>

실행하면 BigBuckBunny.mp4 파일이 잘 재생되는 것을 확인할 수 있습니다. ^^




위의 프로그램을 Windows에서 실행하면 MediaElement 영역이 적절한 height를 잡아 영상이 재생되는 반면, (물리 기기든 가상 머신이든) 안드로이드로 배포하게 되면 마치 영상이 재생 안 되는 것처럼 MediaElement 영역의 height가 0인 상태로 나옵니다.

자세한 원인은 알 수 없지만 XAML Element들의 레이아웃이 적절한 시기에 맞춰지지 않는 듯합니다. 즉, 재생에 문제가 있는 것은 아니라서 단순히 Grid 컨테이너 등으로 바꿔 (또는 MediaElement의 Height를 고정 설정하는 식으로) 영역 자체를 미리 확보해 두면 해당 영역에 mp4 재생이 되는 것을 확인할 수 있습니다.

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
             x:Class="SimplePlayer.MainPage">

    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="*" />
            <RowDefinition Height="40" />
        </Grid.RowDefinitions>

        <toolkit:MediaElement Grid.Row="0"
                x:Name="mediaPlayer"
                ShouldAutoPlay="True"
                Source="https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
                />
        
        <Button Grid.Row="1"
                x:Name="btnPlay"
                Text="Play" 
                SemanticProperties.Hint="Click to play"
                Clicked="OnPlayClicked"
                HorizontalOptions="Fill" />
    </Grid>

</ContentPage>

(첨부 파일은 이 글의 예제 코드를 포함합니다.)




빌드 시 만약 다음과 같은 오류가 발생한다면?

1>C:\temp\TestApp\TestApp\TestApp.csproj : error NU1605: Warning As Error: Detected package downgrade: Microsoft.Maui.Controls from 8.0.14 to 8.0.7. Reference the package directly from the project to select a different version. 
1>C:\temp\TestApp\TestApp\TestApp.csproj : error NU1605:  TestApp -> CommunityToolkit.Maui.MediaElement 3.1.1 -> Microsoft.Maui.Controls (>= 8.0.14) 
1>C:\temp\TestApp\TestApp\TestApp.csproj : error NU1605:  TestApp -> Microsoft.Maui.Controls (>= 8.0.7)

메시지에 나온 대로 8.0.14 버전으로 설정해 주면 됩니다.

<PropertyGroup>
    <MauiVersion>8.0.14</MauiVersion>
</PropertyGroup>

<ItemGroup>
    <PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
    <PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
    <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />

    <PackageReference Include="CommunityToolkit.Maui.Core" Version="9.0.0" />
    <PackageReference Include="CommunityToolkit.Maui.MediaElement" Version="3.1.1" />
</ItemGroup>

아마도 CommunityToolkit 관련 구성요소들이 MAUI 버전에 의존적인 듯한데, 9.0.0 버전의 CommunityToolkit은 8.0.7 버전의 MAUI와는 호환이 안 되는 듯합니다.




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 5/13/2024]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




1  2  [3]  4  5  6  7  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13793정성태10/28/20241665C/C++: 183. C++ - 윈도우에서 한글(및 유니코드)을 포함한 콘솔 프로그램을 컴파일 및 실행하는 방법
13792정성태10/27/20241477Linux: 99. Linux - 프로세스의 실행 파일 경로 확인
13791정성태10/27/20241607Windows: 267. Win32 API의 A(ANSI) 버전은 DBCS를 사용할까요?파일 다운로드1
13790정성태10/27/20241579Linux: 98. Ubuntu 22.04 - 리눅스 커널 빌드 및 업그레이드
13789정성태10/27/20241489Linux: 97. menuconfig에 CONFIG_DEBUG_INFO_BTF, CONFIG_DEBUG_INFO_BTF_MODULES 옵션이 없는 경우
13788정성태10/26/20241524Linux: 96. eBPF (bpf2go) - fentry, fexit를 이용한 트레이스
13787정성태10/26/20241430개발 환경 구성: 730. github - Linux 커널 repo를 윈도우 환경에서 git clone하는 방법 [1]
13786정성태10/26/20241613Windows: 266. Windows - 대소문자 구분이 가능한 파일 시스템
13785정성태10/23/20241693C/C++: 182. 윈도우가 운영하는 2개의 Code Page파일 다운로드1
13784정성태10/23/20241688Linux: 95. eBPF - kprobe를 이용한 트레이스
13783정성태10/23/20241535Linux: 94. eBPF - vmlinux.h 헤더 포함하는 방법 (bpf2go에서 사용)
13782정성태10/23/20241446Linux: 93. Ubuntu 22.04 - 커널 이미지로부터 커널 함수 역어셈블
13781정성태10/22/20241433오류 유형: 930. WSL + eBPF: modprobe: FATAL: Module kheaders not found in directory
13780정성태10/22/20241550Linux: 92. WSL 2 - 커널 이미지로부터 커널 함수 역어셈블
13779정성태10/22/20241531개발 환경 구성: 729. WSL 2 - Mariner VM 커널 이미지 업데이트 방법
13778정성태10/21/20241771C/C++: 181. C/C++ - 소스코드 파일의 인코딩, 바이너리 모듈 상태의 인코딩
13777정성태10/20/20241648Windows: 265. Win32 API의 W(유니코드) 버전은 UCS-2일까요? UTF-16 인코딩일까요?
13776정성태10/19/20241651C/C++: 180. C++ - 고수준 FILE I/O 함수에서의 Unicode stream 모드(_O_WTEXT, _O_U16TEXT, _O_U8TEXT)파일 다운로드1
13775정성태10/19/20241561개발 환경 구성: 728. 윈도우 환경의 개발자를 위한 UTF-8 환경 설정
13774정성태10/18/20241518Linux: 91. Container 환경에서 출력하는 eBPF bpf_get_current_pid_tgid의 pid가 존재하지 않는 이유
13773정성태10/18/20241837Linux: 90. pid 네임스페이스 구성으로 본 WSL 2 + docker-desktop
13772정성태10/17/20241717Linux: 89. pid 네임스페이스 구성으로 본 WSL 2 배포본의 계층 관계
13771정성태10/17/20241749Linux: 88. WSL 2 리눅스 배포본 내에서의 pid 네임스페이스 구성
13770정성태10/17/20241579Linux: 87. ps + grep 조합에서 grep 명령어를 사용한 프로세스를 출력에서 제거하는 방법
13769정성태10/15/20242028Linux: 86. Golang + bpf2go를 사용한 eBPF 기본 예제파일 다운로드1
13768정성태10/15/20241663C/C++: 179. C++ - _O_WTEXT, _O_U16TEXT, _O_U8TEXT의 Unicode stream 모드파일 다운로드2
1  2  [3]  4  5  6  7  8  9  10  11  12  13  14  15  ...