arduino-audio-tools
|
Real Time Streaming Protocol (RTSP) More...
Typedefs | |
using | RTSPClientEthernet = RTSPClient< EthernetClient, EthernetUDP > |
Ethernet RTSP client alias using Arduino Ethernet networking. | |
using | RTSPClientWiFi = RTSPClient< WiFiClient, WiFiUDP > |
WiFi RTSP client alias using Arduino WiFi networking. | |
using | RTSPPlatformEthernet = RTSPPlatform< EthernetServer, EthernetClient, EthernetUDP > |
RTSP platform binding for Arduino Ethernet. | |
using | RTSPPlatformWiFi = RTSPPlatform< WiFiServer, WiFiClient, WiFiUDP > |
RTSP platform binding for Arduino WiFi. | |
Real Time Streaming Protocol (RTSP)
using RTSPClientEthernet = RTSPClient<EthernetClient, EthernetUDP> |
Ethernet RTSP client alias using Arduino Ethernet networking.
Convenience alias for RTSPClient<EthernetClient, EthernetUDP>
, which uses EthernetClient
for RTSP TCP control and EthernetUDP
for RTP.
Example:
using RTSPClientWiFi = RTSPClient<WiFiClient, WiFiUDP> |
WiFi RTSP client alias using Arduino WiFi networking.
Convenience alias for RTSPClient<WiFiClient, WiFiUDP>
, which uses WiFiClient
for RTSP TCP control and WiFiUDP
for RTP.
Example:
using RTSPPlatformEthernet = RTSPPlatform<EthernetServer, EthernetClient, EthernetUDP> |
RTSP platform binding for Arduino Ethernet.
Convenience type alias that binds the generic RTSPPlatform
to the Arduino Ethernet networking stack (EthernetServer
, EthernetClient
, EthernetUDP
). Use this when running the RTSP server over Ethernet- capable boards.
using RTSPPlatformWiFi = RTSPPlatform<WiFiServer, WiFiClient, WiFiUDP> |
RTSP platform binding for Arduino WiFi.
Convenience type alias that binds the generic RTSPPlatform
to the Arduino WiFi networking stack (WiFiServer
, WiFiClient
, WiFiUDP
). Use this when running the RTSP server over WiFi-capable boards.