파이어몽키에서는 기본적으로 미디어 플레이어를 지원합니다.

우선 기본적으로 제공하는 XE5 샘플에 미디어플레이이 관련된 항목이 2가지 있습니다.
  1. 데스크탑 : C:\Users\Public\Documents\RAD Studio\12.0\Samples\FireMonkey\MediaPlayerHD
  2. 모바일 : C:\Users\Public\Documents\RAD Studio\12.0\Samples\MobileCodeSnippets\VideoPlayback
위 샘플을 보시면 간단한 동작을 확인 하실 수 있습니다.

그리고 파이어몽키에서는 아래와 같은 파일포맷을 지원합니다.

FMX.Media.Win.pas initialization section:

    TMediaCodecManager.RegisterMediaCodecClass('.avi', SVAviFiles, TMediaType.Video, TWindowsMediaCodec);
    TMediaCodecManager.RegisterMediaCodecClass('.wmv', SVWMVFiles, TMediaType.Video, TWindowsMediaCodec);
    TMediaCodecManager.RegisterMediaCodecClass('.mp4', SVMP4Files, TMediaType.Video, TWindowsMediaCodec);
    TMediaCodecManager.RegisterMediaCodecClass('.m4v', SVMP4Files, TMediaType.Video, TWindowsMediaCodec);
    TMediaCodecManager.RegisterMediaCodecClass('.mov', SVMOVFiles, TMediaType.Video, TWindowsMediaCodec);
    TMediaCodecManager.RegisterMediaCodecClass('.wma', SVWMAFiles, TMediaType.Audio, TWindowsMediaCodec);
    TMediaCodecManager.RegisterMediaCodecClass('.mp3', SVMP3Files, TMediaType.Audio, TWindowsMediaCodec);
    TMediaCodecManager.RegisterMediaCodecClass('.wav', SVWAVFiles, TMediaType.Audio, TWindowsMediaCodec);

FMX.Media.Mac.pas initialization section:

    TMediaCodecManager.RegisterMediaCodecClass('.mov', SVMOVFiles, TMediaType.Video, TQTMediaCodec);
    TMediaCodecManager.RegisterMediaCodecClass('.m4v', SVMP4Files, TMediaType.Video, TQTMediaCodec);
    TMediaCodecManager.RegisterMediaCodecClass('.mp4', SVMP4Files, TMediaType.Video, TQTMediaCodec);
    TMediaCodecManager.RegisterMediaCodecClass('.avi', SVAviFiles, TMediaType.Video, TQTMediaCodec);
    TMediaCodecManager.RegisterMediaCodecClass('.wav', SVWAVFiles, TMediaType.Audio, TQTMediaCodec);
    TMediaCodecManager.RegisterMediaCodecClass('.mp3', SVMP3Files, TMediaType.Audio, TQTMediaCodec);
아래 링크에서 자세한 내용을 참고하시면 될 것 같습니다.

그리고 로레벨에서 접근하시고자 하시면
안드로이드나 iOS용 라이브러리를 파이어몽키에서 임포트하여 사용하는 방법도 가능할 것 같습니다.

번호 제목 글쓴이 날짜 조회 수
공지 [DelphiCon 요약] 코드사이트 로깅 실전 활용 기법 (Real-world CodeSite Logging Techniques) 관리자 2021.01.19 14533
공지 [UX Summit 요약] 오른쪽 클릭은 옳다 (Right Click is Right) 관리자 2020.11.16 13175
공지 [10.4 시드니] What's NEW! 신기능 자세히 보기 관리자 2020.05.27 15678
공지 RAD스튜디오(델파이,C++빌더) - 고객 사례 목록 관리자 2018.10.23 21197
공지 [데브기어 컨설팅] 모바일 앱 & 업그레이드 마이그레이션 [1] 관리자 2017.02.06 22463
공지 [전체 목록] 이 달의 기술자료 & 기술레터 관리자 2017.02.06 18090
공지 RAD스튜디오(델파이, C++빌더) - 시작하기 [1] 관리자 2015.06.30 38367
공지 RAD스튜디오(델파이,C++빌더) - 모바일 앱 개발 사례 (2020년 11월 업데이트 됨) 험프리 2014.01.16 173869
863 이 달의 기술자료 - 2018년 09월 file 험프리 2018.08.31 492
862 [무료 제공툴] 파이어몽키 스텐실(FMX Stencils) [3] 관리자 2018.08.24 1189
861 [개발환경 설정] 안드로이드 기기 연결 시 'USB 디버깅 허용' 창이 표시되지 않는 경우 조치 방법 file 험프리 2018.08.21 1850
860 RAD스튜디오 로드맵 - 2018년 8월 file 관리자 2018.08.09 1056
859 이 달의 기술자료 - 2018년 08월 file 험프리 2018.07.31 523
858 [마감임박] Google의 새로운 Android API Level 26 요구사항 해결방법 2가지 [2] 험프리 2018.07.31 1231
857 [기술백서] 애플리케이션에 새 생명을 불어넣으세요. file 관리자 2018.07.16 1089
856 [고객사례-POS, 델파이] MalyKangurek POS (포스 시스템 프로그램) 관리자 2018.07.13 4096
855 이 달의 기술자료 - 2018년 07월 file 험프리 2018.06.28 501
854 [업데이트][패치][10.2.3] 코드 자동완성 및 iOS 11.3 패치 험프리 2018.06.28 813
853 [고객사례-게임, 델파이] BVS Solitaire Collection (카드 게임) 관리자 2018.06.25 895
852 [군산대학교] 모바일 프로그래머 양성 과정 (무료) file 관리자 2018.06.25 495
851 [발표자료] 20180621 부산 세미나-What's NEW!! RAD스튜디오: 최신 OS지원과 플랫폼 확장 방안 file 관리자 2018.06.25 336
850 C++빌더와 파이어몽키로 정말 멋진 UI 완성하기: 앱 템플릿 관리자 2018.06.20 755
849 기존 시스템을 웹(Web)으로 확장하기 위해 고려해야 할 두 가지 포인트 관리자 2018.06.11 1378
848 델파이/C++빌더 개발자를 위한 웹 개발 with ExtJS! 관리자 2018.06.04 946
847 RAD서버 솔루션 시리즈: 필드 서비스 애플리케이션 관리자 2018.06.01 619
846 C++, IDE(통합개발환경)으로 개발하면 어떤 점이 좋을까요? 관리자 2018.05.30 899
845 이 달의 기술자료 - 2018년 06월 file 험프리 2018.05.25 506
844 C++표준의 진화 김원경 2018.05.25 1039