MediaElement.PlaybackRate Property

Definition

Gets or sets the playback rate ratio for the media engine.

public:
 property double PlaybackRate { double get(); void set(double value); };
double PlaybackRate();

void PlaybackRate(double value);
public double PlaybackRate { get; set; }
var double = mediaElement.playbackRate;
mediaElement.playbackRate = double;
Public Property PlaybackRate As Double
<MediaElement PlaybackRate="double"/>

Property Value

Double

double

The playback rate ratio for the media. A value of 1.0 is the normal playback speed. Value can be negative to play backwards.

Remarks

The current PlaybackRate is set to the value of DefaultPlaybackRate whenever Play is called. So setting DefaultPlaybackRate to a different value has no effect until Play is called.

To set a rate that will persist throughout the lifetime of the MediaElement, use DefaultPlaybackRate. Once playback ends, due to the MediaEnded event being raised or if Pause or Stop are called, the PlaybackRate will be effectively lost.

Applies to