Skip to content

Instantly share code, notes, and snippets.

@marchbold
Last active October 27, 2018 14:44
Show Gist options
  • Save marchbold/946957c41e0f4d0f19a2 to your computer and use it in GitHub Desktop.
Save marchbold/946957c41e0f4d0f19a2 to your computer and use it in GitHub Desktop.
Playing a packaged file in an embedded player with the Media Player
var path:String = File.applicationDirectory.nativePath + File.separator + "example.mp4";
MediaPlayer.init( APP_KEY );
if (MediaPlayer.isSupported)
{
MediaPlayer.service.createPlayer( path, 0, 0, 640, 480, false, MediaPlayer.CONTROLS_EMBEDDED );
MediaPlayer.service.play();
}
// com.distriqt.MediaPlayer
@mesaglam
Copy link

mesaglam commented Jan 1, 2017

Can i play remote video with this ane? (vimeo, youtube videos)

@daniel1972
Copy link

can i play music from my LOCAL MUSIC FROM MY PHONE?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment