react-native-media-player
v0.3.5
Published
This is a react native media player with external display controller. Support photo, video, music and background mode.
Downloads
94
Readme
React Native Media Player
This is a react native media player with external display controller. Support photo, video, music and background mode.
NOTE If your RN version <= 0.28, please keep use v0.2.x.
Installation
$ npm install react-native-fs react-native-media-player --save
$ react-native link
Usage
Initialize
You just simply need to import react-native-media-player in your js world
import MediaPlayer from "react-native-media-player";
Get Support File Type List
You can get the support file type list programatically
MediaPlayer.getSupportFileTypeList();
Virtual Screen
When initialize react-native-media-player you can see one black virtual screen on your main screen. Once you plug your external display it will disappear and turn you content rend on external display. You also can show / hide your virtual screen manually when there is no external display connected.
// Show the virtual screen
await MediaPlayer.showVirtualScreen();
// Hide the virtual screen
await MediaPlayer.hideVirtualScreen();
You also can fix the virtual screen layout and disable all gesture recognizer.
// Set Virtual Screen Layout
// x: number # The absolute x position of screen
// y: number # The absolute y position of screen
// width: number # New width of virtual screen
// height: number # New height of virtual scree
// lock: bool # Disable all gesture recognizer
MediaPlayer.setVirtualScreenLayout(0, 0, 400, 300, false);
// Or you can get your layout rect by
<View style={style.renderContainer} onLayout={(event) => {
this.setState({
layout: event.nativeEvent.layout;
});
}}>
// And set layout
MediaPlayer.setVirtualScreenLayout(
this.state.layout.x,
this.state.layout.y,
this.state.layout.width,
this.state.layout.height,
true
);
Push Image or Video
Currently only support rend image file type *.png
, *.jpg
and video file type *.mp4
.
// Push Image
// path: string # The absolute path for image source
// duration: number # Image rend duration in milliseconds
// pushWay: string[enum] # The way push this media (see Push Way below)
try{
let containerId = await MediaPlayer.pushImage(image_file_path, 2000, MediaPlayer.PUSH_WAY.AtLast);
console.log("Image Container ID:" + containerId);
}
catch(err){
showErrorMessage(err);
}
// Push Video
// path: string # The absolute path for video source
// pushWay: string[enum] # The way push this media (see Push Way below)
try{
let containerId = await MediaPlayer.pushVideo(video_file_path, MediaPlayer.PUSH_WAY.AtLast);
console.log("Video Container ID:" + containerId);
}
catch(err){
showErrorMessage(err);
}
Push Way
This player have a simple rend queue. So you can push your media with four kind of way:
| Push Way | Description | |---|---| | MediaPlayer.PUSH_WAY.AtLast | Place the media at end of queue | | MediaPlayer.PUSH_WAY.AfterNow | Place the media next rend position, it will rend after current rending media finish his own job | | MediaPlayer.PUSH_WAY.Interrupt | This will rendout current rending media and rendin new media immediately, the other media which already in queue will still rend after this finish | | MediaPlayer.PUSH_WAY.ClearOther | This will rendout current rending media and rendin new media immediately, and clear all other media which already in queue |
Clear Queue
You can simply call clear()
to remove all item in playlist.
// Clear all item
// keepCurrentPlaying: bool # Set true if you do not want to disturb current playing item
let keepCurrentPlaying = true;
MediaPlayer.clear(keepCurrentPlaying);m
Backgroud
If set the backgroud image for media player. The image will auto rend when render is idle. And you can use clearBackground
to remove background image.
MediaPlayer.setBackground(background_image_path);
MediaPlayer.clearBackground();
Group
This player support a single group let you can play a bunch of media with random order or repeat mode. When using group you must create group
first and then add some image or video. After you setup all your metarial just call play()
the group will auto control those media as you want.
Create your group first
// repeat: bool # Group will auto replay when all item rend finished
// random: bool # Group will random the queue order every time to start playing group
MediaPlayer.createGroup(repeat, random);
Make your playlist
Like the queue, you can push image, video, audio(not support yet) to rend.
// Push image or video
// pathList: string # The absolute path list for images, videos, musics source
// duration: number # Image rend duration in milliseconds
// reRendAll: bool # When push a new item to group rerend all item immediately
MediaPlayer.group.pushImages(pathList, duration, reRendAll);
MediaPlayer.group.pushVideos(pathList, reRendAll);
MediaPlayer.group.pushMusics(pathList);
Let's rock
Now you can play your playlist just one call, sure you can stop it. The better thing is we will keep the group let you start again util you delete it.
MediaPlayer.group.start();
MediaPlayer.group.stop();
Delete group
Currently you can only have one group at a time, so when you need a new group you will need delete old group first.
MediaPlayer.deleteGroup();
Event
Media player will emit render status and group status. You can subscribe the channel to receive below event.
MediaPlayer.subscribe(MediaPlayer.EVENT_CHANNEL.RENDER_STATUS, callback);
MediaPlayer.subscribe(MediaPlayer.EVENT_CHANNEL.MUSIC_STATUS, callback);
MediaPlayer.subscribe(MediaPlayer.EVENT_CHANNEL.GROUP_STATUS, callback);
| Channel | Status | Parameter | Description | |---|---|---|---| | EVENT_CHANNEL.RENDER_STATUS | Idle | containerId | Fire when there is no item to rend | | EVENT_CHANNEL.RENDER_STATUS | Rending | containerId | Start rend an item | | EVENT_CHANNEL.RENDER_STATUS | RendOut | | Fire when an item start rend out |
| Channel | Status | Parameter | Description | |---|---|---|---| | EVENT_CHANNEL.MUSIC_STATUS | Playing | musicId | Start play a music | | EVENT_CHANNEL.MUSIC_STATUS | End | musicId | Music stopped |
| Channel | Status | Parameter | Description | |---|---|---|---| | EVENT_CHANNEL.GROUP_STATUS | Start | | Start a group, include auto replay | | EVENT_CHANNEL.GROUP_STATUS | Stop | | Stop a group | | EVENT_CHANNEL.GROUP_STATUS | RendStart | | Rend start, include auto replay | | EVENT_CHANNEL.GROUP_STATUS | RendStop | | Stop rend | | EVENT_CHANNEL.GROUP_STATUS | RendFinished | | All item in group are rended once, both before replay group and stop rend a group will fire this event | | EVENT_CHANNEL.GROUP_STATUS | ReRend | | When push a new item and set reRendAll | | EVENT_CHANNEL.GROUP_STATUS | PushRend | | Add new item to rend | | EVENT_CHANNEL.GROUP_STATUS | MusicStart | | Start play a music in group | | EVENT_CHANNEL.GROUP_STATUS | MusicStop | | Music stopped | | EVENT_CHANNEL.GROUP_STATUS | MusicFinished | | All music in group are played once, both before replay group and stop a group will fire this event | | EVENT_CHANNEL.GROUP_STATUS | PushMusic | | When push a music into group |
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Roadmap
- [x] Android support
- [ ] Test coverage
- [ ] Image transitions
- [x] Music play
- [x] Support react native reload
- [ ] Stop music when video playing
- [x] Virtual display control
Known Issues
History
TODO: Write history
Credits
TODO: Write credits