Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lulop-k/kurento-rtsp2webrtc
This example shows how to transform a RTSP feed or an HTTP feed into a low latency WebRTC stream in a simple and seamless manner.
https://github.com/lulop-k/kurento-rtsp2webrtc
Last synced: 4 months ago
JSON representation
This example shows how to transform a RTSP feed or an HTTP feed into a low latency WebRTC stream in a simple and seamless manner.
- Host: GitHub
- URL: https://github.com/lulop-k/kurento-rtsp2webrtc
- Owner: lulop-k
- Created: 2015-03-17T22:34:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-29T08:27:44.000Z (over 5 years ago)
- Last Synced: 2024-06-22T16:59:22.765Z (6 months ago)
- Language: JavaScript
- Size: 173 KB
- Stars: 565
- Watchers: 29
- Forks: 155
- Open Issues: 33
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
[![][KurentoImage]][website]
Copyright © 2014 Kurento. Licensed under [LGPL License].
Kurento RTSP/HTTP URI to WebRTC example
===========================
Kurento Client JavaScript demosThis project is a simple example showing how to tranform a RTSP URI or an HTTP video URI
feeds into a WebRTC stream.Installation instructions
-------------------------Be sure to have installed [Node.js] in your system:
```bash
curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install -y nodejs
```Also be sure to have installed [Bower] in your system:
```bash
sudo npm install -g bower
```To launch the demo, run:
```bash
cd kurento-rtsp2webrtc
bower install
```An HTTP server is required for these demos. A very simple way of doing this is
by means of a NodeJS server. This server can be installed as follows:```bash
sudo npm install -g http-server
```Then, in each demo folder execute this command:
```bash
http-server
```Finally, open this URL in your browser: http://localhost:8080/
Insert the RTSP or HTTP video feed into the input text and press "start"
Optional parameters
-------------------The demos accept some optional GET parameters given on the URL, you only need to
add them to the query string in the same way you would add them to the Node.js
executable on your command line:```
http://example.com/index.html?ws_url=ws://example.org/kurento
```All the demos accept the *ws_url* parameter to set the WebSocket Kurento
MediaServer endpoint, other parameters specific to each demo can be found at the
top of their index.js files.Kurento
=======What is Kurento
---------------
Kurento provides an open platform for video processing and streaming based on
standards.This platform has several APIs and components which provide solutions to the
requirements of multimedia content application developers. These include:* Kurento Media Server (KMS). A full featured media server providing
the capability to create and manage dynamic multimedia pipelines.
* Kurento Clients. Libraries to create applications with media
capabilities. Kurento provides libraries for Java, browser JavaScript,
and Node.js.Downloads
---------
To download binary releases of Kurento components visit http://kurento.orgCode for other Kurento projects can be found in the [GitHub Kurento group].
News and Website
----------------
Information about Kurento can be found on our [website].
Follow us on Twitter @[kurentoms].[Bower]: http://bower.io
[co]: https://github.com/visionmedia/co
[GitHub Kurento group]: https://github.com/kurento
[GitHub repository]: https://github.com/Kurento/kurento-tutorial-js
[KurentoImage]: https://secure.gravatar.com/avatar/21a2a12c56b2a91c8918d5779f1778bf?s=120
[kurentoms]: http://twitter.com/kurentoms
[kurento-client-js]: https://github.com/Kurento/kurento-client-js
[kurento-utils-js]: https://github.com/Kurento/kurento-utils-js
[LGPL License]: http://www.gnu.org/licenses/lgpl-2.1.html
[Node.js]: http://nodejs.org/
[website]: http://kurento.org