Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [nemo@localhost testvideo2]$ cat main.qml
- import QtQuick 2.0
- import Sailfish.Silica 1.0
- import QtMultimedia 5.0
- ApplicationWindow
- {
- initialPage: videoPlay
- Page {
- id: videoPlay
- Rectangle {
- color: "black"
- anchors.fill: parent
- MediaPlayer {
- id: mediaPlayer
- autoLoad: true
- autoPlay: true
- source:'/home/nemo/Videos/Jolla/the_other_half.mp4'
- }
- VideoOutput {
- id: videoOutput
- anchors.centerIn: parent
- source: mediaPlayer
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment