Conversation
- Enable CI for the dev branch. - permissions to the ffmpeg test output directory. - Update CI test video download to use H264 codec instead of AV1. - test: add 777 permissions to HLS output directory in ffmpeg test
Owner
Author
temp close.... or close |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a complete CI/CD pipeline and Docker-based build/test setup for an FFmpeg worker focused on H.264/AAC video processing. The changes automate building, testing, and publishing a minimal, secure FFmpeg Docker image, and include a comprehensive test script for validating the image’s functionality and supported codecs.
CI/CD Workflow Setup:
.github/workflows/ci.ymlto automate building, testing, and pushing the Docker image to GitHub Container Registry, including steps for asset download and test execution.Docker Image Build and Optimization:
Dockerfilethat compiles FFmpeg from source with only H.264 (libx264) and AAC (libfdk_aac) support, strips unnecessary features and dependencies, and applies security hardening for runtime.Testing Infrastructure:
test/ffmpeg.test.sh, a robust Bash script that builds the image, verifies FFmpeg/FFprobe versions and codecs, performs transcoding and HLS adaptive bitrate tests, and checks image statistics.Project Metadata:
package.jsonfor repository metadata, including description, keywords, author, license, and links.