1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 | import QtQuick 2.3
import QtMultimedia 5.0
import Ubuntu.Components 1.1
MainView {
MediaPlayer {
id: mediaPlayer
source: "http://wbads.vo.llnwd.net/o25/u/telepixtv/videos/ellen/20150320/594/0_fu4qgsy7_0_obx408yq_2.mp4"
//source: "0_fu4qgsy7_0_obx408yq_2.mp4"
autoPlay: true
}
VideoOutput {
anchors.fill: parent
source: mediaPlayer
}
}
|