getChapters

Column
promise
array
Tags
챕터 배열 반환

getChapters

getChapters(): Promise<array, Error>
영상의 챕터 object 배열 반환
 

chapter object 구조

{ "startTime": 15, "title": "Chapter Title", "index": 1 }

코드 예시

player.getChapters().then(function(chapters) { // chapters = an array of chapters objects }).catch(function(error) { // an error occurred });