GetWebVideoSource#

ExportWebVideoPlayer.GetWebVideoSource()#

動画の再生元を取得します。
IsAvailable()falseの場合はExportWebVideoSource.Unknownを返します。

Returns:

動画の再生元

Return type:

ExportWebVideoSource

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