From 3193980471fffc5f75854751c1199b9774c5a161 Mon Sep 17 00:00:00 2001 From: Luke Parke <5702154+LukasParke@users.noreply.github.com> Date: Thu, 13 Aug 2026 10:52:34 -0500 Subject: [PATCH 1/2] feat: document audio transcode parameters --- plex-api-spec.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/plex-api-spec.yaml b/plex-api-spec.yaml index 89c4a704a..b97709e14 100644 --- a/plex-api-spec.yaml +++ b/plex-api-spec.yaml @@ -50435,6 +50435,11 @@ paths: - $ref: "#/components/parameters/transcodeType" - $ref: "#/components/parameters/transcodeSessionId" - $ref: "#/components/parameters/advancedSubtitles" + - name: session + description: Playback session UUID used by music transcode clients. + in: query + schema: + type: string - name: platform description: Client platform (some clients send this in addition to headers). in: query @@ -50535,6 +50540,12 @@ paths: type: integer minimum: 0 example: 5000 + - name: maxAudioBitrate + description: Maximum audio bitrate for music transcodes, in kbps. + in: query + schema: + type: integer + minimum: 0 - name: offset description: Offset from the start of the media (in seconds). in: query From c2b6c280c8d1130a7c8ea23869eebdec000f174e Mon Sep 17 00:00:00 2001 From: Luke Parke <5702154+LukasParke@users.noreply.github.com> Date: Thu, 13 Aug 2026 11:27:10 -0500 Subject: [PATCH 2/2] fix: support query profile augmentations --- plex-api-spec.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plex-api-spec.yaml b/plex-api-spec.yaml index b97709e14..4558d10a3 100644 --- a/plex-api-spec.yaml +++ b/plex-api-spec.yaml @@ -50546,6 +50546,12 @@ paths: schema: type: integer minimum: 0 + - name: X-Plex-Client-Profile-Extra + description: Profile augmentations supplied as a query parameter by some music transcode clients. + in: query + schema: + type: string + x-speakeasy-name-override: clientProfileExtraQuery - name: offset description: Offset from the start of the media (in seconds). in: query