action jellyfin_get_hls_video_segment_legacy { label: "Gets a hls video segment." provider: jellyfin method: GET path: "/Videos/{itemId}/hls/{playlistId}/{segmentId}.{segmentContainer}" encoding: json input: { type: "object" properties: { itemId: { type: "string" description: "The item id." } playlistId: { type: "string" description: "The playlist id." } segmentContainer: { type: "string" description: "The segment container." } segmentId: { type: "string" description: "The segment id." } } required: ["itemId", "playlistId", "segmentContainer", "segmentId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }