Table of Contents

Property SupportedMediaContainerExtensions

Namespace
LMKit.Inspection
Assembly
LM-Kit.NET.dll

SupportedMediaContainerExtensions

Gets the media (video and mixed audio/video) container extensions whose stream-level facts the inspection extractors parse - tracks, codecs, duration, dimensions - in canonical form: lowercase and dot-prefixed (for example ".mp4", ".mkv").

public static IReadOnlyCollection<string> SupportedMediaContainerExtensions { get; }

Property Value

IReadOnlyCollection<string>

Remarks

Inspection itself accepts ANY content (see Inspect(byte[], string): an unrecognized format still yields the identity layer). This registry names the container families with a dedicated extractor route, so a caller filtering uploads by file name can keep accepting the formats inspection understands deeply, instead of hardcoding a second media list that drifts. Complements SupportedFileExtensions (document ingestion); the two sets do not overlap.

Share