https://github.com/meonardo/obs-rtsp
Add RTSP camera stream as an obs-source.
https://github.com/meonardo/obs-rtsp
obs obs-plugin rtsp-client
Last synced: 4 months ago
JSON representation
Add RTSP camera stream as an obs-source.
- Host: GitHub
- URL: https://github.com/meonardo/obs-rtsp
- Owner: Meonardo
- Created: 2023-09-04T03:42:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-05T01:36:26.000Z (about 1 year ago)
- Last Synced: 2024-12-02T06:39:06.203Z (6 months ago)
- Topics: obs, obs-plugin, rtsp-client
- Language: C++
- Homepage:
- Size: 154 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OBS RTSP source & output
- Directly add RTSP camera stream as an obs-source, no other external dependencies needed(require FFmpeg to decode);
- Make obs-studio as a RTSP server(can only pull video(H.264 codec) stream from it, **Working in progress**).## Motivation
1. there is a delay issue with `Media Source` in OBS, even I set the `network buffering` to zero;
2. `obs-gstreamer` is a great [plugin](https://github.com/fzwoch/obs-gstreamer), I can add RTSP URI as a source and play it with an ideal delay, but I have to include lots of the gstreamer lib dependencies, it's pain;## Status
- Video:
- [x] H.264;
- [x] H.265;
- Audio:
- [x] AAC
- [ ] more tests
- RTSP server:
- WIP
- Issue:
- decode audio & video in the same thread## Credit
- `liblive555helper` is based on [mpromonet/live555helper](https://github.com/mpromonet/live555helper);