Skip to content

AV1 video codec bitstream parser (not decoder!)

License

Notifications You must be signed in to change notification settings

RealSprint/av1parser

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

av1parser

Build Status MIT License

AOM(Alliance of Open Media)'s AV1 video codec bitstream parser.

The program reads AV1 bitstreams, parses header-level syntax elements, and analyzes the high-level structure of the coded video sequence.

This project is not intended to decode video frames.

Usage (Example)

Run with maximum verbose output:

$ cargo run streams/parkjoy.webm -vvv
...

(The semantics of each syntax element are defined in AV1 specification. Enjoy it! :P)

Details

Supported file formats:

Supported OBU types:

  • OBU_SEQUENCE_HEADER
  • OBU_TEMPORAL_DELIMITER (no payload)
  • OBU_FRAME_HEADER
  • OBU_FRAME (header part only)
  • OBU_TILE_LIST
  • OBU_METADATA

License

MIT License

About

AV1 video codec bitstream parser (not decoder!)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 97.2%
  • Python 2.8%