Native .NET library for ASF format?

Is there a .NET library for working with ASF files that do not use COM / Interop? I know that Microsoft has an official specification ( http://go.microsoft.com/fwlink/?LinkId=31334 ).

+3
source share
1 answer

Shameless plugin here - I wrote a .NET ASF parser called AsfMojo , which is there on codeplex:

AsfMojo is an open source .NET ASF parsing library that provides support for parsing Windows Media Audio (WMA) and Windows Media Video (WMV) files. It offers classes for creating streams from batch data in a multimedia file, collecting file statistics and extracting audio segments or frame sharpness frames. Library analyzes ASF objects according to revision of ASF specification 01.20.05

Check this out and see if it works for you - ASF analysis itself is pure .NET code (based on the ASF specification), just to create still frames for specific time delays. The frame uses the Media SDK / InterOp.

+6
source

Source: https://habr.com/ru/post/1796588/


All Articles