GetWebVideoSource#
- ExportWebVideoPlayer.GetWebVideoSource()#
動画の再生元を取得します。
IsAvailable()
がfalse
の場合はExportWebVideoSource.Unknown
を返します。- Returns:
動画の再生元
- Return type:
Example#
-- Webビデオプレイヤーの再生中の動画の再生元を取得する
local webVideoPlayer = vci.vc.room.webVideoPlayer
local source
if webVideoPlayer.IsAvailable() then
-- 再生中の動画の再生元を取得し、結果を出力する
if webVideoPlayer.GetStatus() == ExportWebVideoPlayerStatus.Playing then
source = webVideoPlayer.GetWebVideoSource()
if source == ExportWebVideoSource.Youtube then
print("YouTube")
elseif source == ExportWebVideoSource.Niconico then
print("Niconico")
else
print("Unknown")
end
end
end