GetTitle#

ExportWebVideoPlayer.GetTitle()#

動画のタイトルを取得します。
IsAvailable()falseの場合は""を返します。

Returns:

動画のタイトル

Return type:

string

Example#

-- Webビデオプレイヤーの再生中の動画のタイトルを取得する
local webVideoPlayer = vci.vc.room.webVideoPlayer
if webVideoPlayer.IsAvailable() then
    -- 再生中の動画のタイトルを取得する
    if webVideoPlayer.GetStatus() == ExportWebVideoPlayerStatus.Playing then
        print(webVideoPlayer.GetTitle())
    end
end