使用Qt版本5.4.2Video.play返回DirectShowPlayerService :: doSetUrlSource:未解決的錯誤代碼800c000d
返回的錯誤代碼:DirectShowPlayerService :: doSetUrlSource:800c000d
的QML文件已經寫有未解決的錯誤代碼視頻QML類型如下。我已經在項目文件(.PRO)
的Qt + =多媒體
片段在QML文件,如下代碼添加的下方。
Video {
id: video
width : 800
height : 600
source : "Video.mp4"
MouseArea {
anchors.fill: parent
onClicked: {
video.play();
}
}
focus: true
Keys.onSpacePressed: video.playbackState == MediaPlayer.PlayingState ? video.pause() : video.play()
Keys.onLeftPressed: video.seek(video.position - 5000)
Keys.onRightPressed: video.seek(video.position + 5000)
}
任何關於這個錯誤的指針都會有幫助。
一個相關的問題是沒有回答在如下stackoverflow:http://stackoverflow.com/questions/26098203/playing-rtsp-video-in-qml-on-windows – Sudhi