npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rn-rtmp-friend

v0.0.1

Published

RTMP Publisher for React Native

Downloads

9

Readme

📹 Live stream RTMP publisher for React Native with built in camera support!

THIS IS ORIGINALLY FORK OF THE AWESOME LIBRARY. p.s Created this fork, because i needed some fixes to be in the app (like video settings setup, reconnection, etc.)

⚠️🛠️ Support for the new architecture is under development

Installation

npm install react-native-publisher

or

yarn add react-native-publisher

and for iOS

cd ios && pod install

Android

Add Android Permission for camera and audio to AndroidManifest.xml

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />

iOS

Add iOS Permission for camera and audio to Info.plist

<key>NSCameraUsageDescription</key>
 <string>CAMERA PERMISSION DESCRIPTION</string>
<key>NSMicrophoneUsageDescription</key>
 <string>AUDIO PERMISSION DESCRIPTION</string>

Example Project

Clone the repo and run

yarn

and

cd example && yarn ios (or yarn android)

You can use Youtube for live stream server. You can check Live on Youtube

Usage

import RTMPPublisher from 'react-native-publisher';

// ...

async function publisherActions() {
  await publisherRef.current.startStream();
  await publisherRef.current.stopStream();
  await publisherRef.current.mute();
  await publisherRef.current.unmute();
  await publisherRef.current.switchCamera();
  await publisherRef.current.getPublishURL();
  await publisherRef.current.isMuted();
  await publisherRef.current.isStreaming();
  await publisherRef.current.toggleFlash();
  await publisherRef.current.hasCongestion();
  await publisherRef.current.isAudioPrepared();
  await publisherRef.current.isVideoPrepared();
  await publisherRef.current.isCameraOnPreview();
  await publisherRef.current.setAudioInput(audioInput: AudioInputType);
}

<RTMPPublisher
  ref={publisherRef}
  streamURL="rtmp://your-publish-url"
  streamName="stream-name"
  videoSettings={{
    width: 1080,
    height: 1920,
    bitrate: 5000 * 1024,
    audioBitrate: 192 * 1000
  }}
  allowedVideoOrientations={[
    "portrait",
    "landscapeLeft",
    "landscapeRight",
    "portraitUpsideDown"
  ]}
  videoOrientation="portrait"
  onConnectionFailedRtmp={() => ...}
  onConnectionStartedRtmp={() => ...}
  onConnectionSuccessRtmp={() => ...}
  onDisconnectRtmp={() => ...}
  onNewBitrateRtmp={() => ...}
  onStreamStateChanged={(status: streamState) => ...}
/>

Props

| Name | Type | Required | Description | | :----------: | :------: | :------: | :-----------------------------------: | | streamURL | string | true | Publish URL address with RTMP Protocol | | streamName | string | true | Stream name or key | | videoSettings | VideoSettingsType | false | Video settings for video | | allowedVideoOrientations | VideoOrientation[] | false | Allowed video orientation | | videoOrientation | VideoOrientation | false | Initial video orientation |

Youtube Example

For live stream, Youtube gives you stream url and stream key, you can place the key on streamName parameter

Youtube Stream URL: rtmp://a.rtmp.youtube.com/live2

Youtube Stream Key: ****-****-****-****-****

<RTMPPublisher
  streamURL="rtmp://a.rtmp.youtube.com/live2"
  streamName="****-****-****-****-****"
  ...
  ...

Events

| Name | Returns | Description | Android | iOS | | :------------------------------: | :-----------------------: | :---------------------------------------------------------------------------------------: | :------: |:---:| | onConnectionFailed | null | Invokes on connection fails to publish URL | ✅ | ✅ | | onConnectionStarted | null | Invokes on connection start to publish URL | ✅ | ✅ | | onConnectionSuccess | null | Invokes on connection success to publish URL | ✅ | ✅ | | onDisconnect | null | Invokes on disconnect from publish URL | ✅ | ✅ | | onNewBitrateReceived | null | Invokes on new bitrate received from URL | ✅ | ❌ | | onStreamStateChanged | StreamState | Invokes on stream state changes. It can be use alternatively for above connection events. | ✅ | ✅ | | onBluetoothDeviceStatusChanged | BluetoothDeviceStatuses | Invokes on bluetooth headset state changes. | ✅ | ❌ |

Methods

| Name | Returns | Description | Android | iOS | | :-----------------: | :------------------------:| :-------------------------: | :------: |:---:| | startStream | Promise<void> | Starts the stream | ✅ | ✅ | | stopStream | Promise<void> | Stops the stream | ✅ | ✅ | | mute | Promise<void> | Mutes the microphone | ✅ | ✅ | | unmute | Promise<void> | Unmutes the microphone | ✅ | ✅ | | switchCamera | Promise<void> | Switches the camera | ✅ | ✅ | | toggleFlash | Promise<void> | Toggles the flash | ✅ | ✅ | | getPublishURL | Promise<string> | Gets the publish URL | ✅ | ✅ | | isMuted | Promise<boolean> | Returns microphone state | ✅ | ✅ | | isStreaming | Promise<boolean> | Returns streaming state | ✅ | ✅ | | hasCongestion | Promise<boolean> | Returns if congestion | ✅ | ❌ | | isAudioPrepared | Promise<boolean> | Returns audio prepare state | ✅ | ✅ | | isVideoPrepared | Promise<boolean> | Returns video prepare state | ✅ | ✅ | | isCameraOnPreview | Promise<boolean> | Returns camera is on | ✅ | ❌ | | setAudioInput | Promise<AudioInputType>| Sets microphone input | ✅ | ✅ | |setVideoSettings | Promise<VideoSettingsType>| Sets camera quality settings| ✅ | ✅ |

Types

| Name | Value | | ------------------------- | :--------------------------------------------------:| | streamState | CONNECTING, CONNECTED, DISCONNECTED, FAILED | | BluetoothDeviceStatuses | CONNECTING, CONNECTED, DISCONNECTED | | AudioInputType | BLUETOOTH_HEADSET, SPEAKER, WIRED_HEADSET | | VideoSettingsType | {width: number; height: number; bitrate: number; audioBitrate: number} | | VideoOrientation | portrait, landscapeLeft, landscapeRight, portraitUpsideDown |

  • AudioInputType: WIRED_HEADSET type supporting in only iOS. On Android it affects nothing. If a wired headset connected to Android device, device uses it as default.

Used Native Packages

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT