Difference between revisions of "GStreamer WebRTC Wrapper/Introduction/Data Channel"

From RidgeRun Developer Connection
Jump to: navigation, search
(What is Data Channel?)
 
(2 intermediate revisions by the same user not shown)
Line 5: Line 5:
 
== What is Data Channel? ==
 
== What is Data Channel? ==
  
Data channel is like a type of communication pathway that WebRTC uses to send and receive data between two web browsers or devices. This data type can be string or binaries. It's similar to a pipeline or a tunnel specifically designed for transmitting information. Making possible to send between two peers some files or send text messages by creating a separate path alongside the audio and video streams, allowing you to exchange additional data.  
+
Data channel is a communication pathway that WebRTC uses to send and receive data between two web browsers or devices. This data type can be string or binaries. It's similar to a pipeline or a tunnel specifically designed for transmitting information. Making possible to send between two peers some files or send text messages by creating a separate path alongside the audio and video streams, allowing you to exchange additional data.  
  
In resume, data channel works as a dedicated chat channel between peers that runs alongside your video call allowing the functionality to send messages, transfer files, or share other types of data in real-time while keeping the data secure.  
+
In summary, data channel works as a dedicated channel between peers that runs alongside your video call allowing the functionality to send messages, transfer files, or share other types of data in real-time while keeping the data secure.  
  
  

Latest revision as of 12:34, 10 July 2023




Previous: Introduction/WebRTC_Fundaments Index Next: Introduction/GstWebRTCWrapper_Basics




What is Data Channel?

Data channel is a communication pathway that WebRTC uses to send and receive data between two web browsers or devices. This data type can be string or binaries. It's similar to a pipeline or a tunnel specifically designed for transmitting information. Making possible to send between two peers some files or send text messages by creating a separate path alongside the audio and video streams, allowing you to exchange additional data.

In summary, data channel works as a dedicated channel between peers that runs alongside your video call allowing the functionality to send messages, transfer files, or share other types of data in real-time while keeping the data secure.



Previous: Introduction/WebRTC_Fundaments Index Next: Introduction/GstWebRTCWrapper_Basics