## For encoding videos: FFMPEG ### Android Edit android/build.gradle file and add the package name in ext.ffmpegKitPackage variable. ``` ext { ffmpegKitPackage = "" } ``` ### iOS Edit ios/Podfile file and add the package name as subspec. After that run pod install again. ``` pod 'ffmpeg-kit-react-native', :subspecs => ['video'], :podspec => '../../../../node_modules/ffmpeg-kit-react-native/ffmpeg-kit-react-native.podspec' ``` Add above line `config = use_native_modules!`.