Playing media files using JAVA

后端 未结 3 995
生来不讨喜
生来不讨喜 2020-12-18 11:16

I want to build a tread safe JAVA application which:

  1. Play *.mp4 or other format HD media files (full-screen mode 1920x1080)
  2. Add event bindings to ap
3条回答
  •  一向
    一向 (楼主)
    2020-12-18 12:02

    First you have to

    // create a player to play the media specified in the URL

    Player mediaPlayer = Manager.createRealizedPlayer( mediaURL );
    

    Now

    mediaPlayer.start(); // start playing the media clip
    

    I hope it work!

提交回复
热议问题