Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF media formats

Does WPF have built-in support for any audio and video formats? I'm going to be using the MediaPlayer and MediaElement classes to build a little media player, and for now, I don't want to have to deal with codecs and formats that .NET doesn't have native support for.

like image 824
rafale Avatar asked May 27 '11 23:05

rafale


People also ask

Is WPF still in demand?

None of Microsoft's GUI frameworks ever really die. WPF has top-notch performance, with a high level of customization, and if you aim for Windows, both WPF is critical. Caliburn and ReactiveUI prove that WPF still has a rich ecosystem around it, and it is here to stay.

What are the types of documents supported by WPF?

Types of Documents WPF divides documents into two broad categories based on their intended use; these document categories are termed "fixed documents" and "flow documents."

Does .NET 6 support WPF?

NET 6 extends support for desktop technologies - WinForms and WPF, and continues to unify all . NET development frameworks. Our products now fully support new . NET versions and we will continue to keep them compatible with the latest framework updates.

Does WPF support animation?

Windows Presentation Foundation (WPF) provides support for multimedia, vector graphics, animation, and content composition, making it easy for developers to build interesting user interfaces and content.


1 Answers

WPF supports the video formats WMV, MPEG and some AVI files by default, but since it has Windows Media Player running beneath, WPF can use all the codecs installed for it

like image 192
BentOnCoding Avatar answered Sep 28 '22 03:09

BentOnCoding