Hi!
I create simple example using AnimatedImage as below:
Qt Code:
  1. import QtQuick 2.0
  2.  
  3. Rectangle {
  4. width: animation.width; height: animation.height + 8
  5.  
  6. AnimatedImage { id: animation; source: "animation.gif" }
  7.  
  8. Rectangle {
  9. property int frames: animation.frameCount
  10.  
  11. width: 4; height: 8
  12. x: (animation.width - width) * animation.currentFrame / frames
  13. y: animation.height
  14. color: "red"
  15. }
  16. }
To copy to clipboard, switch view to plain text mode 
And now, I have slider, when I changed slider value then speed AnimatedImage changed(increase or decrease)
How to do it?
Thanks!