plex_audio_mgr
Control Plex audio playback: adjust volume, mute/unmute, select audio streams, and hand off to other clients.
Instructions
Comprehensive audio management operations for Plex Media Server.
PORTMANTEAU PATTERN RATIONALE: Consolidates 7 audio-focused control operations into a single interface to minimize latency during real-time playback adjustments and stream switching.
Return Format
{"success": bool, "data": dict, "message": str}
Examples
await plex_audio_mgr(operation="list_streams", media_key="12345") await plex_audio_mgr(operation="set_volume", client_id="client-abc", volume=75)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| volume | No | Volume level (0-100). | |
| client_id | No | Client identifier for playback control. | |
| media_key | No | Media key for stream listing. | |
| operation | Yes | Operation to perform. | |
| stream_id | No | Stream ID for stream selection. | |
| target_client_id | No | Target client for handover. |