Reputation: 7826
MediaPlayerElement is replacement for "old" MediaElement. My question is Why?
What is the difference between MediaPlayerElement
and MediaElement
?
Upvotes: 6
Views: 5620
Reputation: 69632
MediaPlayerElement
is the evolution of MediaElement
.
Newer MediaPlayerElement
decomposes the control in MediaPlayer
class and a lightweight control over it. This provides better flexibility and new features for playback.
Another paragraph on the relation of the controls and suggested migration path:
… For more information about the
MediaPlayer
class, including guidelines on how to transition fromMediaElement
toMediaPlayerElement
, see the Media playback page.
Upvotes: 2
Reputation: 4455
Media Player element uses Media Playback Source in form of MediaSource class which has many methods so it can provide media source by several ways like
and some more as well. It can also be rendered on any XAML surface like a grid or a button. these are main upgrades in Media Player element but you can read in detail about all features here .
Upvotes: 8