我正在获取HTTP错误400,以响应下面显示的函数处理的以下RTSP URL。
DESCRIBE rtsp:// root:pass@192.168.1.47/axis-media/media.amp?videocodec = h264 /
我使用的IP摄像机是最新的AXIS H264摄像机。
我使用的libcurl版本是v7.43.0
bool CHttpClientCurl :: Get() { //初始化curl CURLcode res = CURLE_OK; if(m_curl == NULL) { m_sError = L" CURL句柄为NULL。&#34 ;; 返回false; }
m_sBuffer.clear();
// initialize this curl session
curl_easy_reset(m_curl);
char sUrl[8192];
wcstombs(sUrl, m_sUrl.c_str(), m_sUrl.length());
sUrl[m_sUrl.length()] = '\0';
curl_version_info_data *data = curl_version_info(CURLVERSION_NOW);
printf(" cURL V%s loaded\n", data->version);
if (m_curl != NULL) {
curl_easy_setopt(m_curl, CURLOPT_VERBOSE, 1);
curl_easy_setopt(m_curl, CURLOPT_NOPROGRESS, 1L);
curl_easy_setopt(m_curl, CURLOPT_PROTOCOLS, CURLPROTO_RTSP);
res = curl_easy_setopt(m_curl, CURLOPT_URL, sUrl);
// request server options
printf("\nRTSP: OPTIONS %s\n", sUrl);
curl_easy_setopt(m_curl, CURLOPT_PROTOCOLS, CURLPROTO_RTSP);
res = curl_easy_setopt(m_curl, CURLOPT_RTSP_STREAM_URI, sUrl);
curl_easy_setopt(m_curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_DESCRIBE);
curl_easy_setopt(m_curl, CURLOPT_RTSP_TRANSPORT, "RTP/AVP;unicast;client_port=64378-64379");
// curl_easy_setopt(m_curl, CURLOPT_RTSP_SESSION_ID, "56789");
res = curl_easy_perform(m_curl);
int64_t nHttpCode = 0;
curl_easy_getinfo(m_curl, CURLINFO_RESPONSE_CODE, &nHttpCode);
m_nStatusCode = nHttpCode;
if (res != CURLE_OK)
{
std::wstringstream ss;
ss << curl_easy_strerror(res);
m_sError = L"Error occurred - " + std::wstring(ss.str());
return false;
}
else if (nHttpCode != 200)
{
SetErrorString(nHttpCode);
return false;
}
}
return true;
}
如果网址或C ++功能出错,有人可以告诉我吗?
非常感谢。
答案 0 :(得分:1)
解决此问题的方法是首先在rtsp字符串中提供用户凭据,然后连续两次发出RTSP DESCRIBE。如果用户凭据不正确或丢失,则第一个RTSP DESCRIBE请求将导致HTTP 401错误代码。第二个DESCRIBE请求将生成HTTP 200 OK代码。在第二个RTSP DESCRIBE返回HTTP 200 OK之后,您可以发出RTSP SETUP请求,然后发出RTSP PLAY请求,该请求应返回HTTP 200并创建RTSP流。