我想创建 webrtc 到 hlt。使用 Wawza 是一个很好的解决方案,但我无法管理它。我想使用 aws 永恒的媒体直播。我用 kurento mediaserver 找到了一个解决方案,将 webrtc 转换为 rtp,aws 将 rtp 转换为 htl。
是否可以创建以下架构。
浏览器 => kurento (WebrtcEndpoint) => kurento(rtpEndpoint) => aws 永恒媒体直播。
我想自定义输出:
kubectl get pod . . .
Run Code Online (Sandbox Code Playgroud)
用--output=go-template
代替--output=yaml
或--output=json
。
get
我的目的是使用一个命令获取除了默认列(例如,NAME、READY、STATUS 等..,.)之外的其他值(例如,容器端口) :
kubectl get pods --output=go-template --template=$GO_TEMPLATE
#=>
NAME READY STATUS RESTARTS AGE CONTAINER PORTS . . .
. . . . . . . . . . . . . . . . . . . . .
client-qfr4s 1/1 Running 0 14d 80,443 . . .
. . . . . . . . . . . . . . . . …
Run Code Online (Sandbox Code Playgroud)