Update FRAME_PROCESSORS_CREATE_OVERVIEW.mdx

This commit is contained in:
Marc Rousavy 2021-07-06 15:28:17 +02:00 committed by GitHub
parent 444e421e67
commit 65168f7abb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -107,6 +107,10 @@ const frameProcessor = useFrameProcessor((frame) => {
}, []) }, [])
``` ```
## What's possible?
You can run any native code you want in a Frame Processor Plugin. Just like in the native iOS and Android Camera APIs, you will receive a frame (`CMSampleBuffer` on iOS, `ImageProxy` on Android) which you can use however you want. In other words; **everything is possible**.
## Implementations ## Implementations
### Long-running Frame Processors ### Long-running Frame Processors