> For the complete documentation index, see [llms.txt](https://assetstore.easymlkit.voxelbusters.com/tutorials/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://assetstore.easymlkit.voxelbusters.com/tutorials/input-sources/live-camera-input-source.md).

# Live Camera Input Source

Use <mark style="color:purple;">**LiveCameraInputSource**</mark>  if you want to process the input directly from live camera feed.

```
using VoxelBusters.EasyMLKit;
private IInputSource CreateLiveCameraInputSource()
{
    IInputSource inputSource = new LiveCameraInputSource()
    {
        EnableFlash = false,
        IsFrontFacing = false
    };

    return inputSource;
}
```

| Options         | Description                                           |
| --------------- | ----------------------------------------------------- |
| Enable Flash    | Pass true to switch on the device flash               |
| Is Front Facing | Pass true to enable front facing camera feed as input |
