Hello, I have just started using Qt Quick, and I wanted to test QtMultimedia library with following code:

Qt Code:
  1. import QtQuick 2.3
  2. import QtQuick.Window 2.2
  3. import QtMultimedia 5.0
  4.  
  5. Window {
  6. visible: true
  7.  
  8. Text {
  9. text: "Play!";
  10. font.pointSize: 24;
  11. width: 150; height: 50;
  12.  
  13. Audio {
  14. id: playMusic
  15. source: "C:\Users\whateverismyusername:)\Desktop\Example.ogg"
  16. }
  17. MouseArea {
  18. id: playArea
  19. anchors.fill: parent
  20. onPressed: { playMusic.play() }
  21. }
  22.  
  23. }
  24. }
To copy to clipboard, switch view to plain text mode 

but when I run it, application appears as expected, but when I click play audio doesn't start, any ideas what am I missing?