action jellyfin_get_hls_audio_segment_legacy_mp3 { label: "Gets the specified audio segment for an audio item." provider: jellyfin method: GET path: "/Audio/{itemId}/hls/{segmentId}/stream.mp3" encoding: json input: { type: "object" properties: { itemId: { type: "string" description: "The item id." } segmentId: { type: "string" description: "The segment id." } } required: ["itemId", "segmentId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }