-
Notifications
You must be signed in to change notification settings - Fork 0
Architecture Overview
TamKungZ_ edited this page Mar 5, 2026
·
1 revision
-
CodecMedia(factory) -
CodecMediaEngine(interface with all supported operations) -
CodecMediaException(checked exception)
Core records returned by API:
ProbeResultStreamInfoMetadataExtractionResultConversionResultPlaybackResultValidationResult
Enums:
-
MediaType:AUDIO,VIDEO,IMAGE,CONTAINER,UNKNOWN -
StreamKind:AUDIO,VIDEO,SUBTITLE,DATA,UNKNOWN
AudioExtractOptions(targetFormat, bitrateKbps, streamIndex)ConversionOptions(targetFormat, preset, overwrite)PlaybackOptions(dryRun, allowExternalApp)ValidationOptions(strict, maxBytes)
StubCodecMediaEngine orchestrates parsers and conversion routes.
Notable internal areas:
-
internal/audio/*for MP3/OGG/WAV probing -
internal/image/*for PNG/JPEG/WebP/BMP/TIFF/HEIF probing -
internal/video/*for MOV/MP4/WebM probing -
internal/convert/*conversion routing and converter dispatch