| 8 | ) |
| 9 | |
| 10 | type TuyaAPI interface { |
| 11 | GetMqtt() *TuyaMqttClient |
| 12 | |
| 13 | GetStreamType(streamResolution string) int |
| 14 | IsHEVC(streamType int) bool |
| 15 | |
| 16 | GetVideoCodecs() []*core.Codec |
| 17 | GetAudioCodecs() []*core.Codec |
| 18 | |
| 19 | GetStreamUrl(streamUrl string) (string, error) |
| 20 | GetICEServers() []pionWebrtc.ICEServer |
| 21 | |
| 22 | Init() error |
| 23 | Close() |
| 24 | } |
| 25 | |
| 26 | type TuyaClient struct { |
| 27 | TuyaAPI |