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

update editor list #196

Merged
merged 2 commits into from
Feb 22, 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
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, cconcolato@netflix.com
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
Loading