Skip to content

Commit

Permalink
Whoops, CI now needs ffmpeg (#74)
Browse files Browse the repository at this point in the history
I used ffmpeg to detect silent videos in #73, but to make sure it’s actually installed in CI. This fixes the issue.
  • Loading branch information
Mr0grog committed Aug 29, 2024
1 parent aacea26 commit c22f198
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,18 @@ jobs:
steps:
- checkout

- run:
name: Install ffmpeg
command: |
sudo apt-get update
sudo apt-get install ffmpeg
- run:
name: decrypt files
command: |
openssl aes-256-cbc -k "$EDGI_ZOOM_API_SECRET" -in client_secret.json.enc -out client_secret.json -d -md sha256
openssl aes-256-cbc -k "$EDGI_ZOOM_API_SECRET" -in .youtube-upload-credentials.json.enc -out .youtube-upload-credentials.json -d -md sha256
- restore_cache:
keys:
- v1-pip-{{ checksum "requirements.txt" }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/zoom-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Install ffmpeg
run: |
sudo apt-get update
sudo apt-get install ffmpeg
- uses: actions/checkout@v4

- name: Set up Python
Expand Down

0 comments on commit c22f198

Please sign in to comment.