-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
120 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,48 @@ | ||
# Node-Media-Server v4 | ||
|
||
## Introduction | ||
Node-Media-Server is a high-performance open-source live broadcast server developed based on Nodejs. | ||
v4 is design to implement enhanced RTMP FLV v1 support for native HEVC, VP9, AV1. | ||
v4 is no longer compatible with the cn_cdn extension id flv_265 standard. | ||
|
||
## Installation | ||
``` | ||
npm install node-media-server -g | ||
``` | ||
|
||
or run directly | ||
|
||
``` | ||
npx node-media-server | ||
``` | ||
|
||
## Features | ||
* HTTP/HTTP2-flv | ||
|
||
## Roadmap | ||
* WS/WSS-flv | ||
* RTMP | ||
* HTTP-API | ||
* Authentication | ||
* Notification | ||
|
||
|
||
## Usage | ||
ffmpeg6.1 or above is required | ||
|
||
### Push Streaming | ||
``` | ||
ffmpeg -re -i test_265.mp4 -c copy -f flv http://localhost:8000/live/test_265.flv | ||
``` | ||
|
||
``` | ||
ffmpeg -re -i test_av1.mp4 -c copy -f flv http://localhost:8000/live/test_av1.flv | ||
``` | ||
|
||
### play Streaming | ||
``` | ||
ffplay http://localhost:8000/live/test_265.flv | ||
``` | ||
|
||
## License | ||
Apache 2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters