forked from pion/example-webrtc-applications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
examples.json
68 lines (68 loc) · 2.56 KB
/
examples.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[
{
"title": "Data Channels",
"link": "data-channels",
"description": "The data-channels example shows how you can send/recv DataChannel messages from a web browser.",
"type": "browser"
},
{
"title": "Data Channels Create",
"link": "data-channels-create",
"description": "Example data-channels-create shows how you can send/recv DataChannel messages from a web browser. The difference with the data-channels example is that the data channel is initialized from the server side in this example.",
"type": "browser"
},
{
"title": "Data Channels Close",
"link": "data-channels-close",
"description": "Example data-channels-close is a variant of data-channels that allow playing with the life cycle of data channels.",
"type": "browser"
},
{
"title": "Data Channels Detach",
"link": "data-channels-detach",
"description": "The data-channels-detach is an example that shows how you can detach a data channel.",
"type": "browser"
},
{
"title": "GoCV Receive",
"link": "gocv-receive",
"description": "gocv-receive is a simple application that shows how to receive media using Pion and then do motion detection with GoCV.",
"type": "browser"
},
{
"title": "Gstreamer Receive",
"link": "gstreamer-receive",
"description": "The gstreamer-receive example shows how to receive media from the browser and play it live. This example uses GStreamer for rendering.",
"type": "browser"
},
{
"title": "Gstreamer Send",
"link": "gstreamer-send",
"description": "Example gstreamer-send shows how to send video to your browser. This example uses GStreamer to process the video.",
"type": "browser"
},
{
"title": "Pion to Pion",
"link": "#",
"description": "Example pion-to-pion is an example of two pion instances communicating directly! It therefore has no corresponding web page.",
"type": "browser"
},
{
"title": "Save to Disk",
"link": "save-to-disk",
"description": "The save-to-disk example shows how to record your webcam and save the footage to disk on the server side.",
"type": "browser"
},
{
"title": "Minimal SFU",
"link": "sfu-minimal",
"description": "The minimal SFU example demonstrates how to broadcast a video to multiple peers. A broadcaster uploads the video once and the server forwards it to all other peers.",
"type": "browser"
},
{
"title": "WebSocket SFU",
"link": "#",
"description": "The Websocket SFU example demonstrates how to broadcast a video to multiple peers. This is similar to Minimal SFU, but all signaling is done via websockets like a more full featured application.",
"type": "browser"
}
]