Graceful degradation is the design rule that a real-time clinical call should shed quality before it drops the connection. As the network worsens, the system steps down a deliberate ladder: it first lowers video resolution, then frame rate, then suspends video entirely while protecting the audio at all costs, and only as a last resort reconnects. Throughout, the session state — who is in the room, the consent that was captured, the visit timer, any in-progress notes — is preserved so that a recovered call resumes where it left off rather than restarting from scratch.

This matters because the opposite failure mode, a hard mid-consult disconnect, is not merely an annoyance in telemedicine; it is a clinical and legal event. A dropped call can interrupt a medication discussion, sever a patient mid-disclosure, or break the continuity that a documented encounter depends on. Audio is the floor because a clinician can still take a history and counsel a patient on voice alone, whereas frozen or absent video is recoverable context.

For a product team this means the degradation ladder must be designed explicitly, not left to whatever a WebRTC stack happens to do by default. Each rung should be defined, instrumented, and tested under simulated impairment — high packet loss, constrained bandwidth, abrupt network switches — so you know exactly when audio-only kicks in and how reconnection restores state. The common mistake is testing only on good office Wi-Fi; the failure you must engineer for is the patient on a weak cellular signal in a rural clinic.