action jellyfin_get_live_stream_file { label: "Gets a live tv channel stream." provider: jellyfin method: GET path: "/LiveTv/LiveStreamFiles/{streamId}/stream.{container}" encoding: json input: { type: "object" properties: { container: { type: "string" description: "Container type." } streamId: { type: "string" description: "Stream id." } } required: ["container", "streamId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }