Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/cloudinary/cloudinary-js-streaming

Cloudinary Live Streaming Javascript SDK
https://github.com/cloudinary/cloudinary-js-streaming

cloudinary-sdk

Last synced: 4 months ago
JSON representation

Cloudinary Live Streaming Javascript SDK

Lists

README

        

Cloudinary
==========

Cloudinary is a cloud service that offers a solution to a web application's entire image and video management pipeline.
Easily upload images and videos to the cloud. Automatically perform smart resizing, cropping and conversion
without installing any complex software.
Cloudinary offers comprehensive APIs and administration capabilities and is easy to integrate with any web application,
existing or new.

Video live-stream
=================

Cloudinary provides an end-to-end live video streaming solution, with on the fly video effects and transformations.
When using the library in your website this is what happens:
1. Video is streamed from the device's camera.
2. The video is up-streamed through Cloudinary, providing the streaming user with a Cloudinary public id and resource
url of the stream.
3. The stream is now publicly available through that url, and can be fed into any streaming-supported video player.
4. If any transformations and effects were added to the stream (during configuration, see below) all the viewers will
see the modified stream.
## Setup ######################################################################

1. Sign up for a [free account](https://cloudinary.com/users/register/free).

2. Create an upload preset [here](https://cloudinary.com/console/upload_presets/new), and enable
the ****live-streaming**** setting. This is also the place to add any wanted effects and transformations under the
'Incoming transformations' section.

3. fetch the library from npm:

```npm install @cloudinary/js-streaming```

## Usage ######################################################################

### Streaming #################################################################
After completing the setup, import the library and initialize it. There are two required parameters:
* cloudName - this is the cloud name assigned to you when creating the Cloudinary free account.
* uploadPreset - This is the name of the upload preset created in step two of the setup.

There are several optional parameters:
* `stream`: The [MediaStream](https://developer.mozilla.org/en-US/docs/Web/API/MediaStream) to use as the streaming source. Required only if you obtain a MediaStream object yourself with a `getUserMedia` request or the `getStream` helper function, rather than have the library get a stream from the default device by itself.
* `debug`: Log level (disabled by default), one of, or array of ```['trace', 'debug', 'vdebug', 'log', 'warn', 'error']```. pass in ```'all'``` to print all
messages.
* `bandwidth`: Bandwith, in bits. Default is 1Mbit/s (1024 * 1024).
* `hlsTarget`: `[true/false]`, When true, will stream live using hls protocol.
* `fileTarget`: `[true/false]`, When true, will save an mp4 file in your Cloudinary media library.
* `facebookUri`: A Facebook streaming URI used to direct the stream to facebook.
Supplied by facebook when configuring Facebook streaming.
* `youtubeUri`: A Youtube streaming URI used to direct the stream to Youtube. Supplied by youtube when configuring
Youtube streaming.
* `events`: callback for events, supporting the following functions:
* `start`: Called when the streaming starts. Includes the recording Id.
* `stop`: Called when the streaming stops. Includes the recording Id.
* `error`: Called when the library encounters an error. The error message is included in the callback.
* `local_stream`: Called when the stream is available locally (stream is provided in the callback). This can be used
to display to the user his own streaming as it up-streams.

```javascript
import {initLiveStream} from '@cloudinary/js-streaming'

// ...

// configure your cloud name and the live-stream enabled upload-preset:
const cloudName = [your-cloud-name];
const uploadPreset = [your-upload-preset];
let liveStreamLibrary;

// ...

// call initLiveStream with the configuration parameters:
initLiveStream({
cloudName: cloudName,
uploadPreset: uploadPreset,
debug: "all",
hlsTarget: true,
fileTarget: true,
events: {
start: function (args) {
// user code
},
stop: function (args) {
// user code
},
error: function(error){
// user code
},
local_stream: function (stream) {
// user code, typically attaching the stream to a video view:
liveStreamLibrary.attach($("#thevideo").get(0), stream);
}
}
}).then((result) => {
// keep handle to instance to start/stop streaming
liveStreamLibrary = result;

// Extract public id and url from result (publish the url for people to watch the stream):
let publicId = result.response.public_id;
let url = result.response.secure_url;

// start the streaming:
liveStreamLibrary.start(publicId);
})
```

#### Select device to stream from ################################################################
```javascript
import {getStream, initLiveStream, FRONT_CAMERA, REAR_CAMERA} from '@cloudinary/js-streaming';

// Get front camera stream
getStream(FRONT_CAMERA).then((stream)=>{})

// Get rear camera stream
getStream(REAR_CAMERA).then((stream)=>{})

// Get custom device stream
getStream({audio: true, video: { facingMode: "user" } }).then((stream)=>{})

// Select device to stream from by passing the stream to initLiveStream()
getStream(FRONT_CAMERA).then((stream)=> {
initLiveStream({cloudName, uploadPreset, stream, ...});
});
```

### Streaming Devices ####################################################
The live streaming sdk contains some convenient helper functions and constants:
* listDevices - get list of streaming devices.
* getStream - get stream from device.
* FRONT_CAMERA - pass this to getStream() in order to get stream from the front camera.
* REAR_CAMERA - pass this to getStream() in order to get stream from the rear camera.

### Camera Control ###############################################################
The live streaming sdk contains some convenient camera functions:
* attachCamera: Show camera in an html element.
* detachCamera - Remove camera from an html element.
* Streamer - a convenient wrapper for camera and streaming functions,
it exposes functions for showing, hiding and streaming from a camera.

#### attachCamera & detachCamera ################################################################
```javascript
import {attachCamera, detachCamera} from '@cloudinary/js-streaming';
const video = document.getElementById("video");
const facingMode = { exact: "user" };

// Show camera in an html element
// facingMode is optional
attachCamera(video, facingMode).then(stream=>console.log(stream));

// Remove camera from an html element
detachCamera(video).then(videoElement=>console.log(videoElement));
```

#### Streamer ################################################################
```javascript
import {Streamer} from '@cloudinary/js-streaming';
const video = document.getElementById("video");
const facingMode = { exact: "user" };
const liveStreamOptions = {};
const streamer = new Streamer(video);

// Show camera in an html element
// facingMode is optional
streamer.attachCamera(facingMode).then(stream=>console.log(stream));

// Remove camera from an html element
streamer.detachCamera().then(videoElement=>console.log(videoElement));

// Initialize live-streaming using streaming configuration object
streamer.initLiveStream(liveStreamOptions).then(result => console.log(result));
```

## Additional resources ##########################################################

Additional resources are available at:

* [Website](https://cloudinary.com)
* [Interactive demo](https://demo.cloudinary.com/live)
* [Documentation](https://cloudinary.com/documentation)
* [Knowledge Base](https://support.cloudinary.com/hc/en-us)
* [Video transformations documentation](https://cloudinary.com/documentation/video_manipulation_and_delivery)

## Support

You can [open an issue through GitHub](https://github.com/cloudinary/cloudinary-js-streaming/issues).

Contact us [https://cloudinary.com/contact](https://cloudinary.com/contact)

Stay tuned for updates, tips and tutorials: [Blog](https://cloudinary.com/blog), [Twitter](https://twitter.com/cloudinary), [Facebook](https://www.facebook.com/Cloudinary).

## Join the Community ##########################################################

Impact the product, hear updates, test drive new features and more! Join [here](https://www.facebook.com/groups/CloudinaryCommunity).

## License #######################################################################

Released under the MIT license.