Skip to content

ffmpeg: Add VDPAU AV1 decoder #593

ffmpeg: Add VDPAU AV1 decoder

ffmpeg: Add VDPAU AV1 decoder #593

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: fluster
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
min_linux:
name: linux with min supported deps
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.6
uses: actions/setup-python@v4
with:
python-version: 3.6
- name: Install dependencies
run: |
make install_deps
sudo apt update && sudo apt install gstreamer1.0-tools gstreamer1.0-libav gstreamer1.0-plugins-bad ffmpeg vpx-tools
- name: Check
run: |
make check
linux:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
make install_deps
sudo apt update && sudo apt install gstreamer1.0-tools gstreamer1.0-libav gstreamer1.0-plugins-bad ffmpeg vpx-tools
- name: Check
run: |
make check
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.6
uses: actions/setup-python@v4
with:
python-version: 3.6
- name: Install dependencies
run: |
make install_deps
- name: Check
run: |
make check