YouTip LogoYouTip

Prop Video Playbackrate

# Video playbackRate Property [![Image 8: Video Object Reference](#) Video Object](#) ## Example Set the video to play at slow speed: ```javascript document.getElementById("myVideo").playbackRate = 0.5; [Try it yourself Β»](#) * * * ## Definition and Usage The playbackRate property sets or returns the current playback speed of the video. * * * ## Browser Support ![Image 9: Internet Explorer](#)![Image 10: Firefox](#)![Image 11: Opera](#)![Image 12: Google Chrome](#)![Image 13: Safari](#) The playbackRate property is supported by all major browsers. **Note:** Internet Explorer 9 and earlier versions of IE do not support the playbackRate property. * * * ## Syntax Get the playbackRate property: _videoObject_.playbackRate Set the playbackRate property: _videoObject_.playbackRate=_playbackspeed_ ## Property Values | Value | Description | | --- | --- | | _playbackspeed_ | Indicates the current playback speed of the video. Example values: * 1.0 Normal speed * 0.5 Half speed (slower) * 2.0 Double speed (faster) * -1.0 Backwards, normal speed * -0.5 Backwards, half speed | ## Technical Details | Return Value: | A number, indicating the current playback speed of the video | | --- | | Default Value: | 1.0 | * * * ## More Examples ## Example Set the video to play at fast speed: ```javascript document.getElementById("myVideo").playbackRate = 5; [Try it yourself Β»](#) * * Video Object](#)
← Prop Video PlaybackrateProp Video Paused β†’