{"id":28999878,"url":"https://github.com/yspreen/ffmpeg-kit-react-native-config","last_synced_at":"2025-06-25T08:09:21.764Z","repository":{"id":283303054,"uuid":"951327557","full_name":"yspreen/ffmpeg-kit-react-native-config","owner":"yspreen","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-19T15:04:03.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-19T15:23:29.286Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yspreen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-19T14:04:22.000Z","updated_at":"2025-03-19T15:03:52.000Z","dependencies_parsed_at":"2025-03-20T02:15:08.363Z","dependency_job_id":null,"html_url":"https://github.com/yspreen/ffmpeg-kit-react-native-config","commit_stats":null,"previous_names":["yspreen/ffmpeg-kit-react-native-config"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/yspreen/ffmpeg-kit-react-native-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yspreen%2Fffmpeg-kit-react-native-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yspreen%2Fffmpeg-kit-react-native-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yspreen%2Fffmpeg-kit-react-native-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yspreen%2Fffmpeg-kit-react-native-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yspreen","download_url":"https://codeload.github.com/yspreen/ffmpeg-kit-react-native-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yspreen%2Fffmpeg-kit-react-native-config/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261832977,"owners_count":23216500,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-25T08:09:14.538Z","updated_at":"2025-06-25T08:09:21.751Z","avatar_url":"https://github.com/yspreen.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# config-plugins/ffmpeg-kit-react-native\n\nConfig plugin to auto-configure `ffmpeg-kit-react-native` when the native code is generated (`npx expo prebuild`).\n\n## Versioning\n\n| `expo` | `ffmpeg-kit-react-native` | `@spreen/ffmpeg-kit-react-native-config` |\n| ------ | ------------------------- | ---------------------------------------- |\n| 52.0.0 | 6.0.2                     | ^9.0.5                                   |\n| 51.0.0 | 6.0.2                     | ^8.0.0                                   |\n| 50.0.0 | 6.0.2                     | ^7.0.0                                   |\n| 49.0.0 | 5.1.0                     | ^6.0.0                                   |\n| 48.0.0 | 5.1.0                     | ^5.0.0                                   |\n| 47.0.0 | 5.1.0                     | ^4.0.0                                   |\n| 46.0.0 | 4.5.2                     | ^3.0.0                                   |\n| 45.0.0 | 4.5.1                     | ^2.0.0                                   |\n\n## Expo installation\n\n\u003e Tested against Expo SDK 50. Most packages worked on iOS. Not all packages have been tested on Android.\n\n\u003e This package cannot be used in the \"Expo Go\" app because [it requires custom native code](https://docs.expo.io/workflow/customizing/).\n\nFirst install the package with yarn, npm, or [`npx expo install`](https://docs.expo.io/workflow/expo-cli/#expo-install).\n\n```sh\nnpx expo install ffmpeg-kit-react-native @spreen/ffmpeg-kit-react-native-config\n```\n\nAfter installing this npm package, add the [config plugin](https://docs.expo.io/guides/config-plugins/) to the [`plugins`](https://docs.expo.io/versions/latest/config/app/#plugins) array of your `app.json` or `app.config.js`:\n\n```json\n{\n  \"expo\": {\n    \"plugins\": [\"@spreen/ffmpeg-kit-react-native-config\"]\n  }\n}\n```\n\nNext, rebuild your app as described in the [\"Adding custom native code\"](https://docs.expo.io/workflow/customizing/) guide.\n\n## API\n\nThe plugin provides props for extra customization. Every time you change the props or plugins, you'll need to rebuild (and `prebuild`) the native app. If no extra properties are added, defaults will be used.\n\n- `package` (_string_): Package to use. Options are: `min`, `min-gpl`, `https`, `https-gpl`, `audio`, `video`, `full`, `full-gpl`. [Learn more](https://github.com/tanersener/ffmpeg-kit/tree/main/react-native#211-package-names).\n- `ios.package` (_string_): Specify an iOS-only package.\n- `android.package` (_string_): Specify an Android-only package.\n\n#### Example\n\n```json\n{\n  \"plugins\": [\n    [\n      \"@spreen/ffmpeg-kit-react-native-config\",\n      {\n        \"package\": \"min\",\n        \"ios\": {\n          \"package\": \"video\"\n        }\n      }\n    ]\n  ]\n}\n```\n\n## Important Notes\n\n- This plugin changes the minimum deployment target on Android to `24` (from `21`) which may break other packages in your app!\n- Changing the \"package\" field on iOS will require re-running `pod install` after updating with `npx expo prebuild -p ios --no-install`.\n- Most of the modifications in this plugin are dangerous meaning it's highly likely that something may break over time. The plugin is heavily unit-tested to attempt to prevent breaking.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyspreen%2Fffmpeg-kit-react-native-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyspreen%2Fffmpeg-kit-react-native-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyspreen%2Fffmpeg-kit-react-native-config/lists"}