Advertisement
Guest User

Test player

a guest
Mar 6th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import QtQuick 2.8
  2. import QtMultimedia 5.8
  3.  
  4. Item {
  5. MediaPlayer {
  6. id: mediaplayer
  7. autoPlay: true
  8. loops: MediaPlayer.Infinite
  9. source: "Blade Runner Immersive Theatre.webm"
  10. }
  11.  
  12. VideoOutput {
  13. fillMode: VideoOutput.PreserveAspectCrop
  14. anchors.fill: parent
  15. source: mediaplayer
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement