https://github.com/jchavanton/rtc_gw
Webrtc Gateway to SIP/RTP (experimental work in progress)
https://github.com/jchavanton/rtc_gw
Last synced: 2 months ago
JSON representation
Webrtc Gateway to SIP/RTP (experimental work in progress)
- Host: GitHub
- URL: https://github.com/jchavanton/rtc_gw
- Owner: jchavanton
- Created: 2018-01-31T10:40:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-17T23:15:20.000Z (about 6 years ago)
- Last Synced: 2025-03-27T11:02:41.928Z (3 months ago)
- Language: C++
- Size: 8.32 MB
- Stars: 9
- Watchers: 3
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation :
## Debian
```
apt-get install git build-essential
```## WebRTC
#### depot_tools
```
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
export PATH=$PATH:/path/to/depot_tools
```
#### WebRTC sources
```
mkdir webrtc-checkout
cd webrtc-checkout
fetch --nohooks webrtc
gclient sync
cd src
git checkout master
gn gen out/Default
```## RTC Gateway
### checkout the source code
```
cd webrtc-checkout/src/examples
git clone https://github.com/jchavanton/rtc_gw.git
```### Patch BUILD.gn to build rtc_gw
```
patch -p1 < examples/rtc_gw/build.patch
```### Build everything
```
ninja -C out/Default
```