---Web動画プレイヤーの情報をリモコンアイテムから取得 local function HandleGetWebVideoInfo(sender, name, message) ---@type string 動画タイトル local videoTitle = message.title ---@type number 動画時間 local videoDuration = message.duration ---@type number 現在の再生時間 local videoPlayStartTime = message.currentTime ---@type boolean 再生中 local isPlayingVideo = message.isPlaying end vci.message.On("WebVideoInfoFromRemocon", HandleGetWebVideoInfo)