Add AVI container format support#155
Open
wiedymi wants to merge 1 commit intoVanilagy:mainfrom
Open
Conversation
561cba5 to
f8b6e34
Compare
Implements reading and writing of AVI (Audio Video Interleave) files, a RIFF-based container format. Features: - Full AVI demuxer with support for multiple video and audio codecs - AVI muxer with RF64 support for large files (>4GB) - Codec mapping for common fourCC codes (H.264, HEVC, VP8, VP9, AV1, etc.) - Audio codec support (AAC, MP3, Vorbis, FLAC, PCM variants, μ-law, A-law) - Index (idx1) generation for seeking - Proper timestamp and duration handling Files added: - src/avi/avi-demuxer.ts - AVI file parser - src/avi/avi-muxer.ts - AVI file writer - src/avi/avi-misc.ts - Codec mappings and utilities - src/avi/riff-writer.ts - RIFF chunk writing utility Integration: - Added AviInputFormat and AviOutputFormat classes - Exported AVI singleton in ALL_FORMATS - Test suite with 7 tests covering format detection, muxing, and demuxing
f8b6e34 to
9eb113a
Compare
Author
|
@Vanilagy well, i rebased the PR, though I would like to double check on it again, not sure if you plan to do .avi support yourself, in this case we can just close it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements reading and writing of AVI (Audio Video Interleave) files, a RIFF-based container format.
Features:
Files added:
Integration: