Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: CEA608/708 parser (#75) #86

Merged
merged 11 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"node": true
},
"rules": {
"@typescript-eslint/no-duplicate-enum-values": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add CMAF-Ham types, mappers and services to convert and manipulate VOD HLS and VOD DASH manifests.
- Add cmaf-ham-converter sample to showcase the CMAF-Ham functions.
- Implement CEA 608/708 parser [#62](https://github.com/streaming-video-technology-alliance/common-media-library/issues/62)

### Fix
- Integrate outstanding 608 PR [#88](https://github.com/streaming-video-technology-alliance/common-media-library/issues/88)


## [0.6.4] - 2024-03-04
Expand Down
11 changes: 7 additions & 4 deletions lib/NOTICE
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
Streaming Video Technology Alliance Common Media Library
Copyright (c) 2023 Streaming Video Technology Alliance

The src/id3.ts implementation in this project is derived
from the hls.js library (https://github.com/video-dev/hls.js/)
The src/id3.ts implementation in this project is derived
from the hls.js library (https://github.com/video-dev/hls.js/)

The src/structuredfield.ts implementation in this project is derived
from the structured-field-values library (https://github.com/Jxck/structured-field-values)
The src/structuredfield.ts implementation in this project is derived
from the structured-field-values library (https://github.com/Jxck/structured-field-values)

The src/608.ts implementation in this project is derived
from the hls.js library (https://github.com/video-dev/hls.js/) and dash.js library (https://github.com/Dash-Industry-Forum/dash.js/)
Loading
Loading