Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import QtQuick 2.0
- import QtQuick.Window 2.2
- import QtMultimedia 5.8
- Window {
- visible: true
- width: 640
- height: 480
- title: qsTr("Hello World")
- Video{
- id: video
- objectName: "video"
- anchors.fill: parent
- autoPlay: true
- playlist: Playlist{
- playbackMode: Playlist.Loop
- PlaylistItem{
- source: "file:///home/pi/Video/hd0-1.mp4"
- }
- PlaylistItem{
- source: "file:///home/pi/Video/hd0-2.mp4"
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement