av 0.0.5 av: ^0.0.5 copied to clipboard
An audio/video plugin for Flutter.
av #
An audio/video recording and streaming package for Flutter.
Installation #
flutter pub add av
iOS Setup #
If your app needs to record audio, add the NSMicrophoneUsageDescription key to ios/Runner/Info.plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
...
<key>NSMicrophoneUsageDescription</key>
<string>The app needs microphone access for capturing audio.</string>
...
</dict>
</plist>
If your app needs to record video, add the NSCameraUsageDescription key to ios/Runner/Info.plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
...
<key>NSCameraUsageDescription</key>
<string>The app needs camera access for capturing video.</string>
...
</dict>
</plist>