0
我使用Twilio API在兩個用戶之間創建視頻聊天。 第一個用戶視頻圖片必須是第二個用戶圖片頂部的小圓圈。獲取視頻軌道的大小
第二用戶使用USB攝像頭和我「橫長方形」的視頻,所以我需要動圈與我的視頻在這個矩形:
我試圖讓CMVideoDimensions:
extension VideoChatViewController: TVIParticipantDelegate {
func participant(_ participant: TVIParticipant, addedVideoTrack videoTrack: TVIVideoTrack) {
logMessage(messageText: "Participant \(participant.identity) added video track")
if (self.participant == participant) {
videoTrack.attach(self.remoteView)
let dimensions = videoTrack.videoDimensions
let height = dimensions.height
let width = dimensions.width
print ("\(height) ; \(width)")
}
}
}
但是我得到了height = 0和width = 0。 如何獲得視頻軌道的大小?