Skip to content

Commit

Permalink
Update to FFMPEG_jll 4.3.1 with optional nvidia hardware accelerated …
Browse files Browse the repository at this point in the history
…encoding (#32)

* bump FFMPEG_jll version

ffmpeg 4.3.1 with optional nvidia hardware acceleration enabled

* Update .gitignore

* add missing x264_jll dep

* Update .gitignore

* bump compat to latest ffmpeg & x264 only

* add github action

* bump version to 0.4.0
  • Loading branch information
IanButterworth authored Aug 4, 2020
1 parent 0f42cfc commit ac20d2d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/RunTests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Run tests

on: [push, pull_request]

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1']
julia-arch: [x64, x86]
os: [ubuntu-latest, windows-latest, macOS-latest]
exclude:
- os: macOS-latest
julia-arch: x86

steps:
- uses: actions/checkout@v1.0.0
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-runtest@master

6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name = "FFMPEG"
uuid = "c87230d0-a227-11e9-1b43-d7ebe4e7570a"
authors = ["SimonDanisch <sdanisch@gmail.com>"]
version = "0.3.0"
version = "0.4.0"

[deps]
FFMPEG_jll = "b22a6f82-2f65-5046-a5b2-351ab43fb4e5"
x264_jll = "1270edf5-f2f9-52d2-97e9-ab00b5d0237a"

[compat]
FFMPEG_jll = "4.1.0"
x264_jll = "2019.5.25"
FFMPEG_jll = "4.3.1"
x264_jll = "2020.7.14"
julia = "^1.3"

[extras]
Expand Down

2 comments on commit ac20d2d

@IanButterworth
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/18951

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.0 -m "<description of version>" ac20d2dc617b652e178e4bafe659e697bbe55f8e
git push origin v0.4.0

Please sign in to comment.