Why is Xbox Video app unable to play AVI files?

1

On my Windows 8 Pro system, Windows Media Player is able to play some AVI video files. It means that required codecs to play those files are installed in the system.

Then, why is Xbox Video (Metro app by Microsoft) unable to play the same AVI files?

How to make Xbox Video app play those AVI files?

Apple II

Posted 2013-02-01T18:47:21.220

Reputation: 3 669

Answers

3

According to this discussion, the only codecs that WinRT apps can use either must be supplied by Microsoft or bundled into the app. WinRT apps cannot use any codecs installed from the desktop, and there doesn't appear to be any way to make a 3rd party codec available to all WinRT apps.

This behavior is by design. In order for you to use your FLAC MF codec from within the context of your Windows store app you will need to modify the codec to work in the WinRT environment. You will then need to ship the codec with your application rather than rely on a desktop installation.

Edit: More information from @Bala Sivakumar, Program Manager for the Microsoft MM Platform Team

The reason for this is that Windows 8 is designed to run on low-power devices where software decoding is not desirable. Therefore only codecs that can be hardware accelerated are supported system-wide. Third party codecs can be made available in some cases - where the graphics card manufacturer supports hardware acceleration of the codec and ships support in the driver. Such codecs are signed by Microsoft to allow for system-wide use.

afrazier

Posted 2013-02-01T18:47:21.220

Reputation: 21 316

Means, I am out of luck.. :( – Apple II – 2013-02-01T19:14:23.710

3The reason for this is that Windows 8 is designed to run on low-power devices where software decoding is not desirable. Therefore only codecs that can be hardware accelerated are supported system-wide.

Third party codecs can be made available in some cases - where the graphics card manufacturer supports hardware acceleration of the codec and ships support in the driver. Such codecs are signed by Microsoft to allow for system-wide use.

I recommend using AVI files with the H.264 codec for video if at all possible (since hardware-acceleration for this codec is widely available on most systems) – Bala Sivakumar – 2013-06-19T18:00:58.237

@BalaSivakumar: Thanks for commenting and providing some background and extra information, and welcome to SuperUser! – afrazier – 2013-06-19T18:29:37.510

1

AVI is simply a container format. Similar to how zip files are containers for other files, avi files contain either/both a video stream encoded with any arbitrary codec, and an audio stream encoded with any arbitrary codec.

These codecs need to be supported before you can play the file. You can install CCCP to get more codecs support.

Janus Troelsen

Posted 2013-02-01T18:47:21.220

Reputation: 1 958

I know AVI is a container format, that's why I am talking about specific files. – Apple II – 2013-02-01T18:53:37.277

If WMP is able to play those AVI files, where's the problem? It means that codecs (whatever they are) are installed. – Apple II – 2013-02-01T18:56:37.723