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