Skip to content

Commit

Permalink
Merge pull request #94 from streaming-video-technology-alliance/relea…
Browse files Browse the repository at this point in the history
…se/0.7.0

* feat: CEA608/708 parser (#75) (#86)
* feat: CTA-608parser (#75)

---------

Signed-off-by: Casey Occhialini <1508707+littlespex@users.noreply.github.com>
Signed-off-by: hernan <hernanr@qualabs.com>
Signed-off-by: Hernán Reyes <99908389+hernanr99@users.noreply.github.com>
Signed-off-by: Nicolas Levy <nicolas@qualabs.com>
Signed-off-by: Noelia Bentancor <71080743+NoeliaBentancor@users.noreply.github.com>
Signed-off-by: Agajan Jumakuliyev <agajan.tm@gmail.com>
Co-authored-by: Hernán Reyes <99908389+hernanr99@users.noreply.github.com>
Co-authored-by: Nicolas Levy <nicolaslevylinares@gmail.com>
Co-authored-by: Noelia Bentancor <71080743+NoeliaBentancor@users.noreply.github.com>
Co-authored-by: DuckyCB <duckycb@proton.me>
Co-authored-by: Matías Rodriguez <matiasnrb97@gmail.com>
Co-authored-by: Matías Rodriguez <37405481+matiasrb97@users.noreply.github.com>
Co-authored-by: Patricio Carrau <66135366+DuckyCB@users.noreply.github.com>
Co-authored-by: Agajan J <agajan.tm@gmail.com>
  • Loading branch information
9 people authored Jun 5, 2024
2 parents c9a28c9 + 18120e3 commit 1c90c68
Show file tree
Hide file tree
Showing 302 changed files with 67,669 additions and 486 deletions.
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ node_modules/
dist
temp
.vscode
.idea
RELEASE.md
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]


## [0.7.0] - 2024-06-05

### 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

### Fixed
Expand Down Expand Up @@ -182,7 +193,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Bootstrap project [#2](https://github.com/streaming-video-technology-alliance/common-media-library/issues/2)


[Unreleased]\: https://github.com/streaming-video-technology-alliance/common-media-library/compare/v0.6.4...HEAD
[Unreleased]\: https://github.com/streaming-video-technology-alliance/common-media-library/compare/v0.7.0...HEAD
[0.7.0]\: https://github.com/streaming-video-technology-alliance/common-media-library/compare/v0.6.4...v0.7.0
[0.6.4]\: https://github.com/streaming-video-technology-alliance/common-media-library/compare/v0.6.3...v0.6.4
[0.6.3]\: https://github.com/streaming-video-technology-alliance/common-media-library/compare/v0.6.2...v0.6.3
[0.6.2]\: https://github.com/streaming-video-technology-alliance/common-media-library/compare/v0.6.1...v0.6.2
Expand Down
2 changes: 1 addition & 1 deletion dev/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@svta/common-media-library-dev",
"private": true,
"version": "0.6.4",
"version": "0.7.0",
"license": "Apache-2.0",
"type": "module",
"homepage": "https://github.com/streaming-video-technology-alliance/common-media-library",
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@svta/common-media-library-docs",
"private": true,
"version": "0.6.4",
"version": "0.7.0",
"license": "Apache-2.0",
"type": "module",
"homepage": "https://github.com/streaming-video-technology-alliance/common-media-library",
Expand Down
3 changes: 2 additions & 1 deletion jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
},
"exclude": [
"**/node_modules",
"**/dist"
"**/dist",
"**/samples"
],
"include": [
"**/*.js"
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

0 comments on commit 1c90c68

Please sign in to comment.