YouTip LogoYouTip

Prop Video Defaultplaybackrate

# Video defaultPlaybackRate Property [![Image 8: Video Object Reference](#) Video Object](#) ## Example Set the video to play at a default slow speed: ```javascript document.getElementById("myVideo").defaultPlaybackRate = 0.5; [Try it Yourself Β»](#) * * * ## Definition and Usage The defaultPlaybackRate property sets or returns the default playback speed of the audio/video. Setting this property only changes the default playback speed, not the current. To change the current playback speed, use the (#) property. * * * ## Browser Support ![Image 9: Internet Explorer](#)![Image 10: Firefox](#)![Image 11: Opera](#)![Image 12: Google Chrome](#)![Image 13: Safari](#) The defaultPlaybackRate property is supported in all browsers except Safari. **Note:** Internet Explorer 8 and earlier IE versions do not support the defaultPlaybackRate property. * * * ## Syntax Return the defaultPlaybackRate property: _videoObject_.defaultPlaybackRate Set the defaultPlaybackRate property: _videoObject_.defaultPlaybackRate=_number_ ## Property Values | Value | Description | | --- | --- | | _playbackspeed_ | Indicates the default playback speed of the audio/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 default playback speed | | --- | | Default Value: | 1.0 | * * * ## More Examples ## Example Set the video to play at a default fast speed: ```javascript document.getElementById("myVideo").defaultPlaybackRate = 5; [Try it Yourself Β»](#) * * Video Object](#)
← Prop Video DefaultplaybackrateProp Video Defaultmuted β†’