项目作者: sieuhuflit

项目描述 :
React native live stream using RTMP
高级语言: JavaScript
项目地址: git://github.com/sieuhuflit/react-native-live-stream-rtmp-example.git


React native live stream RTMP Example

An example live stream rtmp application using React native

Getting Started

We need the RTMP server first. Download the repository below and follow the README information.

Server : https://github.com/sieuhuflit/live-tream-rtmp-server

Config

Before start, open config.ts file to edit RTMP server ip address

  1. const Config = {
  2. RTMP_URL: 'rtmp://{YOUR_RTMP_IP_ADDRESS_HERE}/live',
  3. };
  4. export default Config;

Install package & Running

  1. yarn install
  2. yarn ios
  3. yarn android

Check live stream work

After running rtmp server, we can run below command

Command below is serve the test.mp4 video to localhost with stream name test

  1. ffmpeg -re -i ~/Desktop/test.mp4 -c copy -f flv rtmp://localhost/live/test

FAQ

  1. Start live stream iOS simulator not displayed
    Start live stream not worked on iOS simulator, please test start live stream feature on real iOS device

  2. Display blanked when join room on Android
    Make sure you change IP address on step above

License

MIT