加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.qml 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
心尘 提交于 2018-10-09 20:11 . gst save rtsp to mp4 with h264 and aac ok
import QtQuick 2.0
import QtQuick.Window 2.0
import QtQuick.Controls 1.0
Window {
visible: true
width: 640
height: 480
Button {
id: btn1
width: 150
height: 40
onClicked: {
pageLoader.source = "qml-rtsp-player.qml"
}
text: "Qml rtsp player"
}
Button {
id: btn2
width: 150
height: 40
anchors.top: btn1.bottom
onClicked: {
pageLoader.source = "mediaobj-rtsp-player.qml"
}
text: "mediaobj rtsp player"
}
Button {
id: btn3
width: 150
height: 40
anchors.top: btn2.bottom
onClicked: {
gstSame2Mp4.start()
}
text: "save to mp4"
}
Button {
width: 150
height: 40
anchors.top: btn3.bottom
onClicked: {
gstSame2Mp4.stop()
}
text: "stop"
}
Loader {
id: pageLoader
asynchronous: true
anchors.centerIn: parent
onStatusChanged: {
if(pageLoader.status == Loader.Ready){
console.log("page loader is ready")
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化