GetIsLiveVideo#
- ExportWebVideoPlayer.GetIsLiveVideo()#
動画が生放送かどうかを取得します。
IsAvailable()
がfalse
の場合はfalse
を返します。- Returns:
動画が生放送かどうか
- Return type:
boolean
Example#
-- Webビデオプレイヤーの再生中の動画が生放送かどうかを取得する
local webVideoPlayer = vci.vc.room.webVideoPlayer
if webVideoPlayer.IsAvailable() then
-- 再生中の動画が生放送かどうかを取得する
if webVideoPlayer.GetStatus() == ExportWebVideoPlayerStatus.Playing then
print(webVideoPlayer.GetIsLiveVideo())
end
end