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

ffmpeg 6.1 release does not support drawtext #15

Closed
cainlevy opened this issue Dec 1, 2023 · 2 comments
Closed

ffmpeg 6.1 release does not support drawtext #15

cainlevy opened this issue Dec 1, 2023 · 2 comments

Comments

@cainlevy
Copy link

cainlevy commented Dec 1, 2023

Yesterday, our builds were succeeding with ffmpeg build 6.0. Today, they are failing with ffmpeg build 6.1 because of a missing drawtext filter.

[AVFilterGraph @ 0x6c7a600] No such filter: 'drawtext'

@cainlevy
Copy link
Author

cainlevy commented Dec 1, 2023

Hmm, this appears to be an upstream issue with either the johnvansickle.com build or ffmpeg 6.1 itself.

The most useful fix with setup-ffmpeg would be an option to pin to a specific release.

@cainlevy
Copy link
Author

cainlevy commented Dec 1, 2023

I worked around the issue by replacing this GitHub action with the following. It's not as good as FedericoCarboni/setup-ffmpeg (no tool caching or runner detection) but it gets the job done.

      - name: Download FFMpeg release
        run: |
          curl -O -L https://github.com/FedericoCarboni/setup-ffmpeg/releases/download/ffmpeg-6.0-20231101/ffmpeg-linux-x64.tar.gz
          tar xzvf ffmpeg-linux-x64.tar.gz
          chmod a+x ./ffmpeg
          chmod a+x ./ffprobe
          mv ffmpeg ffprobe /usr/local/bin

I'm closing this issue because it doesn't appear to be related to this GitHub action.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant