https://github.com/freeshineit/flv_hls_stream_media_server
https://github.com/freeshineit/flv_hls_stream_media_server
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/freeshineit/flv_hls_stream_media_server
- Owner: freeshineit
- Created: 2023-07-30T17:30:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-24T16:47:59.000Z (about 2 years ago)
- Last Synced: 2025-01-13T20:26:06.772Z (9 months ago)
- Language: JavaScript
- Size: 91.8 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## flv hsl stream media server
## use
```bash## 开启node服务
node src/index.js## 推流并转换视频和音频编码
ffmpeg -re -stream_loop -1 -i 1080.mp4 -c:a copy -c:v libx264 -f hls rtmp://localhost:1935/live/h265## 播放地址
[http://localhost:8000/live/h265.flv](http://localhost:8000/live/h265.flv)##
# ffmpeg -re stream_loop -1 -i 1080.mp4 -c copy -f hls rtmp://localhost/live/STREAM_NAME# [http://lovalhost:8000/live/STREAM_NAME/index.m3u8](http://localhost:8000/live/hls/index.m3u8)
```