Guest User

Untitled

a guest
Feb 16th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. [nemo@localhost testvideo2]$ cat main.qml
  2. import QtQuick 2.0
  3. import Sailfish.Silica 1.0
  4. import QtMultimedia 5.0
  5.  
  6. ApplicationWindow
  7. {
  8. initialPage: videoPlay
  9. Page {
  10. id: videoPlay
  11. Rectangle {
  12. color: "black"
  13. anchors.fill: parent
  14. MediaPlayer {
  15. id: mediaPlayer
  16. autoLoad: true
  17. autoPlay: true
  18. source:'/home/nemo/Videos/Jolla/the_other_half.mp4'
  19. }
  20. VideoOutput {
  21. id: videoOutput
  22. anchors.centerIn: parent
  23. source: mediaPlayer
  24. }
  25. }
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment