Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Eyevinn/whip
Client and Server modules for WebRTC HTTP Ingestion Protocol (WHIP)
https://github.com/Eyevinn/whip
library
Last synced: 3 months ago
JSON representation
Client and Server modules for WebRTC HTTP Ingestion Protocol (WHIP)
- Host: GitHub
- URL: https://github.com/Eyevinn/whip
- Owner: Eyevinn
- License: apache-2.0
- Created: 2022-03-09T14:30:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-17T14:53:24.000Z (8 months ago)
- Last Synced: 2024-04-14T12:07:29.521Z (7 months ago)
- Topics: library
- Language: TypeScript
- Homepage:
- Size: 3.43 MB
- Stars: 78
- Watchers: 7
- Forks: 15
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WebRTC-HTTP ingestion protocol
![Screenshot](screenshot.png)
Live demo at [web.whip.eyevinn.technology](https://web.whip.eyevinn.technology)
Client and Server modules for WebRTC HTTP Ingestion Protocol (WHIP)
| Module | Description |
| ------ | ----------- |
| [@eyevinn/whip-endpoint](https://www.npmjs.com/package/@eyevinn/whip-endpoint) | Server endpoint for providing WHIP resources |
| [@eyevinn/whip-web-client](https://www.npmjs.com/package/@eyevinn/whip-web-client) | Client Javascript SDK for browser based WHIP client (WebRTC producer) |## Getting started
This will setup a WHIP endpoint, a demo ingest client and an WHEP based egress endpoint to be able to test end-to-end.
Install all dependencies
```
npm install
```Run development environment which will launch a demo / test page at http://localhost:1234 and a WHIP endpoint at `http://localhost:8000/api/v2/whip/sfu-broadcaster`
```
npm run dev
```Start media server and WHEP egress endoint as docker containers
```
docker-compose -f docker-compose-sfu.yml up
```The WHEP egress endpoint is then available at `http://localhost:8001/whep/channel/`. The `` is the one provided as a query parameter to the WHIP endpoint, e.g. `http://localhost:8000/api/v2/whip/sfu-broadcaster?channelId=`. You can test WHEP playback with the Eyevinn WebRTC player available online at https://webrtc.player.eyevinn.technology/
### With TLS termination
```
NODE_ENV=development \
TLS_TERMINATION_ENABLED=true \
WHIP_ENDPOINT_USE_HTTPS=true \
npm run dev
```### Develop against demo backend
```
NODE_ENV=production npm run dev
```To fetch ICE config from remote
```
API_KEY= ICE_CONFIG_REMOTE=1 NODE_ENV=production npm run dev
```## License (Apache-2.0)
```
Copyright 2022 Eyevinn Technology ABLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```## Support
Join our [community on Slack](http://slack.streamingtech.se) where you can post any questions regarding any of our open source projects. Eyevinn's consulting business can also offer you:
- Further development of this component
- Customization and integration of this component into your platform
- Support and maintenance agreementContact [[email protected]](mailto:[email protected]) if you are interested.
## About Eyevinn Technology
[Eyevinn Technology](https://www.eyevinntechnology.se) is an independent consultant firm specialized in video and streaming. Independent in a way that we are not commercially tied to any platform or technology vendor. As our way to innovate and push the industry forward we develop proof-of-concepts and tools. The things we learn and the code we write we share with the industry in [blogs](https://dev.to/video) and by open sourcing the code we have written.
Want to know more about Eyevinn and how it is to work here. Contact us at [email protected]!