如何在 Qt 应用程序中实现视频 URL 的 HTTP 基本身份验证和自定义请求标头?
1) 在针对 Symbian 和 MeeGo 的 Qt 4.7 应用程序中,如何正确实现在 http 请求标头中提供身份验证参数,一些使用 http 基本身份验证标头,一些自定义标头,用于用作视频播放的视频源的 URL?
2) 是否可以使用 Symbian^3 和 MeeGo 设备附带的视频播放器应用程序打开需要 http 基本身份验证或自定义请求标头的视频 URL,并且可以从 Qt 4.7 应用程序启动它吗?
我对流式传输和下载视频文件案例都很感兴趣。
1) How to properly implement supplying authentication parameters in http request headers, some using http basic authentication headers, some custom headers, for an URL that is used as video source for video playback , in Qt 4.7 app targeted for Symbian and MeeGo?
2) Is it possible to open a video URL that requires http basic authentication or custom request headers using the Video player application that comes with the Symbian^3 and MeeGo Devices, and can this be launched from Qt 4.7 app?
Both streaming and downloading the video file cases are of interest to me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
QNetworkAccessManager
来实现此目的:http://doc. qt.digia.com/qt/qnetworkaccessmanager.html
它有一堆方便的方法来发出 HTTP 请求和接收响应。
You can use
QNetworkAccessManager
for this purpose:http://doc.qt.digia.com/qt/qnetworkaccessmanager.html
It has a bunch of handy methods for making HTTP requests and receiving responses.