StreamTest

That URL scheme is not supported

Only http and https can be fetched; schemes such as rtmp, rtsp and file cannot.

What it means

The URL uses a scheme other than http or https — commonly rtmp, rtsp, udp, rtp or file. These describe transports we have no way to open.

Why it matters

Neither a browser nor our server can open these. rtmp and rtsp need a dedicated client, udp and rtp only work on a network carrying that multicast, and file refers to the local disk of whatever machine opens it.

How to fix it

  1. For web delivery, repackage the source as HLS or DASH over HTTPS.
  2. To check a local file, paste its contents directly instead of a file:// URL.

Check your own stream

The free stream tester runs this check on every analysis and links each finding straight back here.

Open the stream tester

Frequently asked questions

What does "That URL scheme is not supported" mean?
The URL uses a scheme other than http or https — commonly rtmp, rtsp, udp, rtp or file. These describe transports we have no way to open.
Why does it matter?
Neither a browser nor our server can open these. rtmp and rtsp need a dedicated client, udp and rtp only work on a network carrying that multicast, and file refers to the local disk of whatever machine opens it.
How do I fix it?
1. For web delivery, repackage the source as HLS or DASH over HTTPS. 2. To check a local file, paste its contents directly instead of a file:// URL.
How can I detect this automatically?
Paste your stream delivery URL into StreamTest's free stream tester. It runs this check on every analysis, flags the finding, and links straight back to this page — no sign-up required.

Related Fetching and delivery checks