tutorial7 min read

How to Check if Your IP Camera Supports RTSP

Not sure if your security camera supports RTSP? Learn multiple methods to check RTSP support, find your camera's RTSP URL, and test the stream connection.

WebRTSP Team
WebRTSP Team
February 22, 2026
How to Check if Your IP Camera Supports RTSP

How to Check if Your IP Camera Supports RTSP

Before you can stream your IP camera to a web browser or integrate it with video management software, you need to know if it supports RTSP. In this comprehensive guide, we'll show you exactly how to check RTSP support and find your camera's RTSP URL.

Quick Answer

Most modern IP cameras support RTSP, but here's the fastest way to check:

  1. Check the manufacturer's documentation (camera manual or website)
  2. Look for ONVIF certification (ONVIF Profile S guarantees RTSP support)
  3. Test with VLC Media Player (free and works on all platforms)
  4. Use ONVIF Device Manager (automatically discovers RTSP URLs)

Let's explore each method in detail.

Method 1: Check Documentation

Manufacturer's Manual

The easiest method is to check your camera's documentation:

  1. Find your camera's model number (usually on a sticker on the camera)
  2. Search for "[model number] RTSP" on Google
  3. Look for:
    • User manual (PDF)
    • Technical specifications page
    • Support documentation

What to Look For:

Good signs:

  • "RTSP streaming supported"
  • "Network streaming protocols: RTSP/RTP"
  • RTSP URL format listed
  • ONVIF Profile S compliance

Bad signs:

  • "Proprietary streaming protocol"
  • Only mentions HTTP/HTTPS
  • "Cloud-only streaming"
  • No mention of RTSP or ONVIF

Popular Brands and RTSP Support:

BrandRTSP SupportTypical URL Format
Hikvision✅ Yesrtsp://ip:554/Streaming/Channels/101
Dahua✅ Yesrtsp://ip:554/cam/realmonitor?channel=1&subtype=0
Reolink✅ Yesrtsp://ip:554/h264Preview_01_main
Amcrest✅ Yesrtsp://ip:554/cam/realmonitor?channel=1&subtype=0
Axis✅ Yesrtsp://ip/axis-media/media.amp
Wyze⚠️ LimitedRequires custom firmware
Ring❌ NoCloud-only
Arlo❌ NoCloud-only
Nest❌ NoCloud-only

Method 2: ONVIF Certification

What is ONVIF?

ONVIF (Open Network Video Interface Forum) is an industry standard for IP security devices. If your camera is ONVIF-compliant, it definitely supports RTSP.

How to Check ONVIF Compliance:

  1. Check the camera box/sticker for ONVIF logo

  2. Search the ONVIF database:

  3. Look for Profile S:

    • Profile S = Guaranteed RTSP streaming support
    • Profile T = Enhanced video streaming
    • Profile G = Video recording and storage

Enable ONVIF (if disabled):

Some cameras have ONVIF disabled by default:

  1. Log into camera's web interface
  2. Navigate to SettingsNetworkONVIF
  3. Enable ONVIF protocol
  4. Set authentication (username/password)
  5. Save settings

Method 3: Test with VLC Media Player

Why VLC?

  • Free and cross-platform (Windows, Mac, Linux)
  • Supports all RTSP variants
  • Shows detailed error messages
  • No installation of camera-specific software needed

Step-by-Step VLC Test:

1. Download VLC

  • Visit videolan.org/vlc
  • Download for your operating system
  • Install and open VLC

2. Construct RTSP URL

You'll need:

  • Camera IP address (e.g., 192.168.1.100)
  • RTSP port (usually 554)
  • Stream path (varies by manufacturer)
  • Username and password (if authentication enabled)

Basic format:

rtsp://username:password@ip_address:port/stream_path

Example:

rtsp://admin:password123@192.168.1.100:554/stream1

3. Open Network Stream in VLC

Windows/Linux:

  1. Open VLC
  2. Click MediaOpen Network Stream
  3. Paste RTSP URL
  4. Click Play

Mac:

  1. Open VLC
  2. Click FileOpen Network
  3. Paste RTSP URL
  4. Click Open

4. Interpret Results

Success: Video starts playing

  • Your camera supports RTSP!
  • Save that URL — you'll need it

⚠️ Authentication error:

  • RTSP supported, but wrong credentials
  • Check username/password
  • Try default credentials (admin/admin, admin/12345)

Connection timeout:

  • Wrong IP address or port
  • Camera not on same network
  • Firewall blocking connection

"No suitable decoder module":

  • Wrong stream path
  • Try common alternatives (see below)

Common RTSP Paths to Try:

If the manufacturer's path doesn't work, try these common alternatives:

# Generic paths
rtsp://ip:554/
rtsp://ip:554/stream1
rtsp://ip:554/live
rtsp://ip:554/video
rtsp://ip:554/h264
rtsp://ip:554/ch01/0
rtsp://ip:554/11

# High/Low quality
rtsp://ip:554/stream1  (main/high quality)
rtsp://ip:554/stream2  (sub/low quality)

Method 4: ONVIF Device Manager

Why Use ONVIF Device Manager?

  • Auto-discovers cameras on your network
  • Automatically finds RTSP URLs
  • Free and open-source
  • Shows all available streams (main, sub, mobile)

Step-by-Step Guide:

1. Download ONVIF Device Manager

2. Discover Cameras

  1. Open ONVIF Device Manager
  2. Click Refresh (🔄 icon)
  3. Wait for camera discovery (5-10 seconds)
  4. Your cameras appear in the left panel

3. Get RTSP URLs

  1. Click on your camera in the list
  2. Enter username/password if prompted
  3. Navigate to Live Video tab
  4. You'll see:
    • Live preview of stream
    • Media Profile dropdown (Main Stream, Sub Stream, etc.)
    • Video Source URI — this is your RTSP URL!

4. Copy and Test URLs

  1. Right-click on Video Source URI
  2. Select Copy
  3. Test in VLC (Method 3 above)

ONVIF Device Manager Advantages:

✅ Finds RTSP URLs automatically ✅ Shows all available stream profiles ✅ Tests authentication ✅ Displays camera capabilities (PTZ, audio, etc.) ✅ Works with any ONVIF-compliant camera

Method 5: Browser-Based Testing

Using Your Camera's Web Interface:

Many cameras have a built-in web interface that shows RTSP settings:

1. Find Camera IP Address

Option A: Check your router

  • Log into router admin panel
  • Look for connected devices
  • Find camera by MAC address or name

Option B: Use network scanner

2. Access Web Interface

  1. Open browser
  2. Enter camera IP: http://192.168.1.100
  3. Log in with credentials

3. Find RTSP Settings

Look in:

  • SettingsNetworkStreaming
  • ConfigurationVideoStream
  • SystemNetwork ServicesRTSP

You should find:

  • RTSP port (default 554)
  • Stream paths
  • Authentication settings
  • URL format examples

Method 6: Command-Line Testing

For Advanced Users (Linux/Mac):

Use ffmpeg to test RTSP connection:

# Install ffmpeg
brew install ffmpeg  # Mac
sudo apt install ffmpeg  # Ubuntu/Debian

# Test RTSP stream
ffmpeg -i "rtsp://username:password@192.168.1.100:554/stream1" -frames:v 1 test.jpg

Success: Creates test.jpg snapshot Failure: Shows detailed error message

Using curl:

curl -v "rtsp://192.168.1.100:554/stream1"

Look for:

  • RTSP/1.0 200 OK = RTSP supported
  • 401 Unauthorized = Authentication required (RTSP works, wrong password)
  • Connection timeout = Wrong IP or RTSP not supported

Troubleshooting Common Issues

Issue 1: "Connection Refused"

Possible causes:

  • Wrong IP address
  • Camera not on network
  • Firewall blocking connection

Solutions:

  1. Ping camera: ping 192.168.1.100
  2. Check camera is on same subnet
  3. Temporarily disable firewall
  4. Check if camera RTSP service is enabled

Issue 2: "Authentication Failed"

Solutions:

  1. Try default credentials:
    • admin/admin
    • admin/12345
    • admin/password
    • root/root
  2. Check if authentication is required
  3. Reset camera to factory defaults

Issue 3: "Stream Not Found"

Solutions:

  1. Try alternative stream paths (see common paths above)
  2. Check manufacturer documentation
  3. Use ONVIF Device Manager to discover correct path
  4. Try different stream profiles (main vs sub stream)

Issue 4: "No Video, Audio Only"

Possible causes:

  • Wrong codec
  • Unsupported video format

Solutions:

  1. Update VLC to latest version
  2. Try different stream profile
  3. Check camera encoding settings (prefer H.264)

What If My Camera Doesn't Support RTSP?

Option 1: Firmware Update

Some cameras add RTSP support via firmware:

  • Check manufacturer's website for updates
  • Example: Wyze cameras can use custom firmware (RTSP-enabled)

Option 2: Custom Firmware

Community projects:

  • OpenIPC — Open-source IP camera firmware
  • Adds RTSP to unsupported cameras
  • ⚠️ Warning: May void warranty

Option 3: Replace the Camera

If you need RTSP for integration:

  • Consider cameras from Hikvision, Dahua, or Reolink
  • Look for "ONVIF Profile S" certification
  • Budget-friendly RTSP cameras start at $30-50

Option 4: Use Manufacturer's API

Some cloud-only cameras offer APIs:

  • Nest Cam: Google Nest API
  • Ring: Ring API (limited access)
  • Check developer documentation

Conclusion

Checking RTSP support is straightforward:

  1. Quick check: Search "[camera model] RTSP" or look for ONVIF logo
  2. Best tool: ONVIF Device Manager (automatic URL discovery)
  3. Universal test: VLC Media Player (works with any RTSP camera)

Once you've confirmed RTSP support and found your URL, you're ready to stream your camera to web browsers, integrate with VMS software, or use services like WebRTSP.io for instant browser viewing.

Next Steps


Found your RTSP URL? Test it instantly with WebRTSP.io — no setup required!