항목 배열에서 첫 번째 currentItem (가장 먼저 재생될 항목)이어야 하는 항목의 색인입니다. 이는 배열의 색인 (0에서 시작)이며 itemId (큐를 만들 때까지 알려지지 않음)가 아닙니다. repeatMode가 chrome.cast.media.RepeatMode.OFF인 경우 배열의 마지막 항목이 재생되면 재생이 종료됩니다 (startIndex 이전의 요소는 재생되지 않음). 이는 사용자가 이미 발신기 앱을 사용하고 있고 중간에 전송을 결정한 연속 시나리오에 유용할 수 있습니다. 이렇게 하면 발신자 앱이 로컬 및 원격 대기열 위치 간에 매핑하지 않아도 되며, 대기열을 업데이트하기 위한 추가 요청 하나를 저장할 수 있습니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2023-12-02(UTC)"],[[["`QueueLoadRequest` is used to load and potentially start playing a new, ordered list of media items on a Cast receiver."],["It requires an array of `QueueItem` objects, specifying the media to be loaded and played."],["Options for playback behavior include `customData`, `repeatMode`, and `startIndex` for controlling how the queue is handled."],["`repeatMode` determines how the queue behaves after the last item is played (e.g., repeating the queue, repeating a single item, or stopping)."],["`startIndex` allows you to specify which item in the queue should be played first, useful for resuming playback from a specific point."]]],["The `QueueLoadRequest` class manages loading and playing an ordered list of media items. It requires a non-empty array of `QueueItem` objects. Key properties include `items` (the media list), `repeatMode` (playback behavior after an item ends), `startIndex` (specifying the first item to play by its index), and `customData` (for receiver app customization). `startIndex` defaults to 0, and `repeatMode` defaults to OFF. The provided array is sorted by index.\n"]]