Skip to content

Commit

Permalink
Merge pull request #196 from AOMediaCodec/editors
Browse files Browse the repository at this point in the history
update editor list
  • Loading branch information
cconcolato authored Feb 22, 2024
2 parents dc1c8c0 + bcf9ca5 commit b955fe0
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 22 deletions.
30 changes: 19 additions & 11 deletions .github/workflows/auto-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,28 @@ jobs:
runs-on: ubuntu-20.04

steps:
- name: Checkout Repository
uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- run: pip install bikeshed

- name: Install Poetry
uses: abatilo/actions-poetry@v3

- name: Set up Python
uses: actions/setup-python@v2
- name: Setup a local virtual environment
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/cache@v3
name: Define a cache for the virtual environment based on the dependencies lock file
with:
python-version: 3.9
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}

- name: Install dependencies
- name: Install Poetry dependencies
run: |
curl -sSL https://install.python-poetry.org | python3 -
pip install bikeshed
cd conformance
poetry install
Expand All @@ -42,7 +50,7 @@ jobs:
poetry run generate-report
- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 20

Expand Down
27 changes: 17 additions & 10 deletions .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,38 @@ jobs:
runs-on: ubuntu-20.04

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.11
cache: 'pip'
- run: pip install bikeshed

- name: Install Poetry
uses: abatilo/actions-poetry@v3

- name: Setup a local virtual environment
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/cache@v3
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}

- name: Install dependencies
- name: Install Poetry dependencies
run: |
cd conformance
poetry install
- name: Generate conformance report
run: |
cd conformance
pip install bikeshed
poetry run generate-report
- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 20

Expand Down
4 changes: 3 additions & 1 deletion index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ Title: AV1 Codec ISO Media File Format Binding
Status: WGD
URL: https://aomediacodec.github.io/av1-isobmff/
Shortname: av1-isobmff
Editor: Cyril Concolato, Netflix, [email protected]
Editor: Cyril Concolato, Netflix
Editor: Dimitri Podborski, Apple
Editor: Wan-Teh Chang, Google
Abstract: This document specifies the storage format for [[!AV1]] bitstreams in [[!ISOBMFF]] tracks as well as in [[!CMAF]] files.
Date: 2023-12-11
Repository: AOMediaCodec/av1-isobmff
Expand Down

0 comments on commit b955fe0

Please sign in to comment.