https://github.com/hi-space/rtsp-streaming-server
Server to relay RTSP streaming
https://github.com/hi-space/rtsp-streaming-server
ffmpeg hls nodejs rtsp streaming
Last synced: 3 months ago
JSON representation
Server to relay RTSP streaming
- Host: GitHub
- URL: https://github.com/hi-space/rtsp-streaming-server
- Owner: hi-space
- Created: 2021-01-27T03:39:39.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-27T09:41:27.000Z (over 3 years ago)
- Last Synced: 2025-01-10T05:53:25.542Z (4 months ago)
- Topics: ffmpeg, hls, nodejs, rtsp, streaming
- Language: JavaScript
- Homepage:
- Size: 993 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rtsp-streaming-server
server to relay RTSP streaming## Architecture

## Setup
영상 데이터 인코딩을 위해 ffmpeg을 사용하고 있습니다. 스트리밍 서버를 돌릴 PC (or RPI)에 ffmpeg 설치가 필요합니다.
```sh
yarn # Install dependencies
yarn start # Start server
```## Configure
서버를 돌릴 `port` 를 설정하고 `options` 에서 https 세팅을 해줍니다.
```jsx
const port = 4000
const options = {
hostname: 'yoo.hispcae.kr',
key: fs.readFileSync('privkey.pem'),
cert: fs.readFileSync('cert.pem'),
}
```