-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2f22827
Showing
1,591 changed files
with
395,849 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
patreon: tanersener | ||
open_collective: ffmpeg-kit | ||
custom: [ 'https://buymeacoff.ee/tanersener' ] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Description** | ||
A clear and concise description of what the bug is. | ||
|
||
**Expected behavior** | ||
What you expected to happen. | ||
|
||
**Current behavior** | ||
What happened. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behaviour. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Logs** | ||
Post logs here or paste them to [Ghostbin](https://ghostbin.co) and insert the link here. | ||
|
||
**Environment** | ||
|
||
- Platform: [e.g. Android/iOS/macOS/tvOS] | ||
- Architecture: [arm-v7a, arm-v7a-neon, arm64-v8a, x86, x86_64, armv7, armv7s, arm64, arm64-mac-catalyst, arm64-simulator, arm64e, i386, x86-64, x86-64-mac-catalyst ] | ||
- Version (if applicable) [e.g. v4.4] | ||
- Source branch (if applicable) [e.g. master, development, v4.4] | ||
- Xcode version (if applicable) [e.g. 7.3.1, 9.0.1, 12.0] | ||
- Cocoapods version (if applicable) [e.g. 1.9.1] | ||
- Android Studio version (if applicable) [e.g. 4.0] | ||
- Android NDK version (if applicable) [e.g. 16b, r17c, r21d] | ||
|
||
**Other** | ||
Add any other context about the problem here. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Platform** | ||
Is this a general feature for all platforms or a platform specific feature? | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## Description | ||
Describe the change and/or the issue fixed in this pull request. | ||
Please also include the context and motivation about the changes introduced. | ||
|
||
## Type of Change | ||
- New feature | ||
- Bug fix | ||
- Documentation | ||
|
||
## Checks | ||
- [ ] Changes support all platforms (`Android`, `iOS`, `macOS`, `tvOS`) | ||
- [ ] Breaks existing functionality | ||
- [ ] Implementation is completed, not half-done | ||
- [ ] Is there another PR already created for this feature/bug fix | ||
|
||
## Tests | ||
How are these changes verified? Please provide test instructions. | ||
Also list any relevant details about your test configuration. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
name: android build scripts | ||
|
||
on: | ||
push: | ||
branches: | ||
- development | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-main-on-linux: | ||
name: android main on linux | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
ndk-version: [ 'r22b-linux-x86_64', 'r23b-linux' ] | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up adopt jdk 8 | ||
uses: actions/setup-java@v2.2.0 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '8' | ||
- name: set up android ndk | ||
run: | | ||
curl -s "https://dl.google.com/android/repository/android-ndk-${{ matrix.ndk-version }}.zip" -o ndk.zip | ||
unzip -q -o ndk.zip -d .ndk | ||
echo "ANDROID_NDK_ROOT=$PWD/.ndk/$(ls .ndk)" >> $GITHUB_ENV | ||
- name: run the build script | ||
run: ./android.sh -d --enable-android-media-codec --enable-android-zlib | ||
- name: print build logs | ||
if: ${{ always() }} | ||
run: cat build.log | ||
- name: print ffbuild logs | ||
if: ${{ failure() }} | ||
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log' | ||
build-lts-on-linux: | ||
name: android lts on linux | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
ndk-version: [ 'r22b-linux-x86_64', 'r23b-linux' ] | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up adopt jdk 8 | ||
uses: actions/setup-java@v2.2.0 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '8' | ||
- name: set up android ndk | ||
run: | | ||
curl -s "https://dl.google.com/android/repository/android-ndk-${{ matrix.ndk-version }}.zip" -o ndk.zip | ||
unzip -q -o ndk.zip -d .ndk | ||
echo "ANDROID_NDK_ROOT=$PWD/.ndk/$(ls .ndk)" >> $GITHUB_ENV | ||
- name: run the build script | ||
run: ./android.sh -d --lts --enable-android-media-codec --enable-android-zlib | ||
- name: print build logs | ||
if: ${{ always() }} | ||
run: cat build.log | ||
- name: print ffbuild logs | ||
if: ${{ failure() }} | ||
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log' | ||
build-main-on-macos: | ||
name: android main on macos | ||
runs-on: macos-10.15 | ||
strategy: | ||
matrix: | ||
ndk-version: [ 'r22b-darwin-x86_64', 'r23b-darwin' ] | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up adopt jdk 8 | ||
uses: actions/setup-java@v2.2.0 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '8' | ||
- name: set up android ndk | ||
run: | | ||
curl -s "https://dl.google.com/android/repository/android-ndk-${{ matrix.ndk-version }}.zip" -o ndk.zip | ||
unzip -q -o ndk.zip -d .ndk | ||
echo "ANDROID_NDK_ROOT=$PWD/.ndk/$(ls .ndk)" >> $GITHUB_ENV | ||
- name: run the build script | ||
run: ./android.sh -d --enable-android-media-codec --enable-android-zlib | ||
- name: print build logs | ||
if: ${{ always() }} | ||
run: cat build.log | ||
- name: print ffbuild logs | ||
if: ${{ failure() }} | ||
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log' | ||
build-lts-on-macos: | ||
name: android lts on macos | ||
runs-on: macos-10.15 | ||
strategy: | ||
matrix: | ||
ndk-version: [ 'r22b-darwin-x86_64', 'r23b-darwin' ] | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up adopt jdk 8 | ||
uses: actions/setup-java@v2.2.0 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '8' | ||
- name: set up android ndk | ||
run: | | ||
curl -s "https://dl.google.com/android/repository/android-ndk-${{ matrix.ndk-version }}.zip" -o ndk.zip | ||
unzip -q -o ndk.zip -d .ndk | ||
echo "ANDROID_NDK_ROOT=$PWD/.ndk/$(ls .ndk)" >> $GITHUB_ENV | ||
- name: run the build script | ||
run: ./android.sh -d --lts --enable-android-media-codec --enable-android-zlib | ||
- name: print build logs | ||
if: ${{ always() }} | ||
run: cat build.log | ||
- name: print ffbuild logs | ||
if: ${{ failure() }} | ||
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
name: ios build scripts | ||
|
||
on: | ||
push: | ||
branches: | ||
- development | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-main-on-macos-bigsur: | ||
name: ios main on big sur | ||
runs-on: macos-11 | ||
strategy: | ||
matrix: | ||
xcode: [ '12.5.1', '13.0' ] | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up xcode | ||
run: echo "export DEVELOPER_DIR=/Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer" > ~/.xcode.for.ffmpeg.kit.sh | ||
- name: run the build script | ||
run: ./ios.sh --xcframework --enable-ios-audiotoolbox --enable-ios-avfoundation --enable-ios-bzip2 --enable-ios-libiconv --enable-ios-videotoolbox --enable-ios-zlib | ||
- name: print build logs | ||
if: ${{ always() }} | ||
run: cat build.log | ||
- name: print ffbuild logs | ||
if: ${{ failure() }} | ||
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log' | ||
build-main-on-macos-catalina: | ||
name: ios main on catalina | ||
runs-on: macos-10.15 | ||
strategy: | ||
matrix: | ||
xcode: [ '11.7', '12.4' ] | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up xcode | ||
run: echo "export DEVELOPER_DIR=/Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer" > ~/.xcode.for.ffmpeg.kit.sh | ||
- name: run the build script | ||
run: ./ios.sh --xcframework --enable-ios-audiotoolbox --enable-ios-avfoundation --enable-ios-bzip2 --enable-ios-libiconv --enable-ios-videotoolbox --enable-ios-zlib | ||
- name: print build logs | ||
if: ${{ always() }} | ||
run: cat build.log | ||
- name: print ffbuild logs | ||
if: ${{ failure() }} | ||
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log' | ||
build-lts-on-macos: | ||
name: ios lts | ||
runs-on: macos-10.15 | ||
strategy: | ||
matrix: | ||
xcode: [ '10.3', '11.7' ] | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up xcode | ||
run: echo "export DEVELOPER_DIR=/Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer" > ~/.xcode.for.ffmpeg.kit.sh | ||
- name: run the build script | ||
run: ./ios.sh --lts --enable-ios-audiotoolbox --enable-ios-bzip2 --enable-ios-libiconv --enable-ios-zlib | ||
- name: print build logs | ||
if: ${{ always() }} | ||
run: cat build.log | ||
- name: print ffbuild logs | ||
if: ${{ failure() }} | ||
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
name: macos build scripts | ||
|
||
on: | ||
push: | ||
branches: | ||
- development | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-main-on-macos-bigsur: | ||
name: macos main on big sur | ||
runs-on: macos-11 | ||
strategy: | ||
matrix: | ||
xcode: [ '12.5.1', '13.0' ] | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up xcode | ||
run: echo "export DEVELOPER_DIR=/Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer" > ~/.xcode.for.ffmpeg.kit.sh | ||
- name: run the build script | ||
run: ./macos.sh --xcframework --enable-macos-audiotoolbox --enable-macos-avfoundation --enable-macos-bzip2 --enable-macos-coreimage --enable-macos-libiconv --enable-macos-opencl --enable-macos-opengl --enable-macos-videotoolbox --enable-macos-zlib | ||
- name: print build logs | ||
if: ${{ always() }} | ||
run: cat build.log | ||
- name: print ffbuild logs | ||
if: ${{ failure() }} | ||
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log' | ||
build-main-on-macos-catalina: | ||
name: macos main on catalina | ||
runs-on: macos-10.15 | ||
strategy: | ||
matrix: | ||
xcode: [ '11.7', '12.4' ] | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up xcode | ||
run: echo "export DEVELOPER_DIR=/Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer" > ~/.xcode.for.ffmpeg.kit.sh | ||
- name: run the build script | ||
run: ./macos.sh --xcframework --enable-macos-audiotoolbox --enable-macos-avfoundation --enable-macos-bzip2 --enable-macos-coreimage --enable-macos-libiconv --enable-macos-opencl --enable-macos-opengl --enable-macos-videotoolbox --enable-macos-zlib | ||
- name: print build logs | ||
if: ${{ always() }} | ||
run: cat build.log | ||
- name: print ffbuild logs | ||
if: ${{ failure() }} | ||
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log' | ||
build-lts-on-macos: | ||
name: macos lts | ||
runs-on: macos-10.15 | ||
strategy: | ||
matrix: | ||
xcode: [ '10.3', '11.7' ] | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up xcode | ||
run: echo "export DEVELOPER_DIR=/Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer" > ~/.xcode.for.ffmpeg.kit.sh | ||
- name: run the build script | ||
run: ./macos.sh --lts --enable-macos-audiotoolbox --enable-macos-bzip2 --enable-macos-coreimage --enable-macos-libiconv --enable-macos-opencl --enable-macos-opengl --enable-macos-videotoolbox --enable-macos-zlib | ||
- name: print build logs | ||
if: ${{ always() }} | ||
run: cat build.log | ||
- name: print ffbuild logs | ||
if: ${{ failure() }} | ||
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log' |
Oops, something went wrong.