# rtsp_access_info **Repository Path**: xiaowang777/rtsp_access_info ## Basic Information - **Project Name**: rtsp_access_info - **Description**: RTSP摄像头访问方法 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-31 - **Last Updated**: 2021-10-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # rtsp_access_info #### 介紹 RTSP摄像头访问方法 ~~~ RTSP stands for real-time stream protocol, it’s the primary multimedia stream protocol enables your cameras to deliver video and audio stream. Almost network cameras rely on this protocol to transmit video/audio stream to web browser/video management software/NVR/NAS. In order to obtain video stream, users need to know the correct URL address of the camera, while RTSP url varies from brand to brand. HIKVISION NETWORK CAMERAS Default IP address: 192.168.1.64/DHCP, username: admin, password: user-defined Port number: HTTP port (80), RTSP port (554), HTTPS (443), Service port (8000), ONVIF port (80). RTSP URL: rtsp://[username]:[password]@[ip]:[port]/[codec]/[channel]/[subtype]/av_stream Instruction: Username: e.g. admin Password: e.g. 12345 IP: IP address of network camera, e.g. 192.0.0.64 Port: default port number is 554 Codec: h.264, MPEG-4, mpeg4 Channel: if it’s channel 1, then the value is ch1 Subtype: stream type, main for main stream, sub for sub-stream. Main stream RTSP: rtsp://admin:12345@192.0.0.64:554/h264/ch1/main/av_stream Sub-stream RTSP: rtsp://admin:12345@192.0.0.64/mpeg4/ch1/sub/av_stream DAHUA IP CAMERAS Default IP address: 192.168.1.108 username/password: admin/admin Port number: TCP port (37777), UDP port (37778), http port (80), RTSP (554), HTTPS (443), ONVIF (default is closed, 80). RTSP URL: rtsp://username:password@ip:port/cam/realmonitor?channel=1&subtype=0 Instruction: Username: e.g. admin Password: e.g. admin IP: IP address of your network camera, e.g. 10.7.8.122 Port: default port number 554 (if it’s default number, you may skip it) Channel: video channel, starts from 1. E.g. channel 2, then value should be channel=2 Subtype: stream type, main stream is 0 (subtype=0), sub-stream is 1 (subtype=1) An example: rtsp://admin:admin@10.12.4.84:554/cam/realmonitor?channel=2&subtype=1 XM/JUFENG IP CAMERAS Default IP address: 192.168.1.10 username: admin password: no password Port number: TCP port (34567), HTTP port (80), ONVIF port (8899) RTSP URL: rtsp://10.6.3.57:554/user=admin&password=&channel=1&stream=0.sdp? Instruction: 10.6.3.57 is the camera’s IP address 554 is the default port number for RTSP User=admin is username Password= no password Channel=1 channel 1 Stream=0.sdp? Main stream Stream=1.sdp? Sub-stream TOPSEE IP CAMERAS Default IP address: 192.168.0.123 username: admin, password: 123456 Port number: http (80), data port (8091) RTSP port (554) ONVIF port (80) RTSP URL: main-stream rtsp://192.168.0.123:554/mpeg4 Sub-stream rtsp://192.168.0.123:554/mpeg4cif If account is required: rtsp://admin:123456@192.168.0.123:554/mpeg4 rtsp://admin:123456@192.168.0.123:554/mpeg4cif JOVISION IP CAMERAS RTSP URL: rtsp://0.0.0.0:8554/live1.264 (sub-stream); rtsp://0.0.0.0:8554/live0.264 (main stream) JOOAN IP CAMERAS RTSP URL: rtsp://IP:port(website port)/ch0_0.264 mainstream; rtsp://IP:port(website port)/ch0_1.264 sub-stream GWELL/YOOSEE WI-FI CAMERAS Default IP address: DHCP username: admin, password: 123 Main stream rtsp://IPadr:554/onvif1 Sub stream: rtsp://IPadr:554/onvif2 ONVIF port number: 5000; discovery port: 3702 V380 IP CAMERAS Default IP address: DHCP username: admin, password: no password/admin ONVIF port number: 8899 RTSP URL: main stream rtsp://ip//live/ch00_1 sub-stream rtsp://ip//live/ch00_0 UNIVIEW NETWORK CAMERAS Default IP address: 192.168.0.13/DHCP username: admin, password: 123456 Port number: HTTP (80), RTSP (554), HTTPS (110/443), ONVIF port (80) RTSP URL: rtsp://username:password@ipaddress:port number/video123 123 represents three different streams. TIANDY IP CAMERAS Default IP address: 192.168.1.2 username: Admin, password: 1111 ONVIF port number: 8080 RTSP URL address: rtsp://192.168.1.2 Is your camera not listed? You may check the full list that includes all famous brands in the world. ~~~