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