Prop Video Playbackrate
# Video playbackRate Property
[ Video Object](#)
## Example
Set the video to play in slow motion:
```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

The playbackRate property is supported in all major browsers.
**Note:** Internet Explorer 9 and earlier versions do not support the playbackRate property.
* * *
## Syntax
Return the playbackRate property:
```javascript
videoObject.playbackRate
Set the playbackRate property:
```javascript
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 fast:
```javascript
document.getElementById("myVideo").playbackRate = 5;
[Try it Yourself Β»](#)
* * Video Object](#)
YouTip