DeepAR Community Forum - Latest posts https://forum.deepar.ai Latest posts Probably - DeepAR SDK Bug Report: Intermittent Black Frame Video Recording Probably - DeepAR SDK Bug Report: Intermittent Black Frame Video Recording

Environment

  • DeepAR SDK version: 5.6.21
  • Platform: iOS 17+
  • Devices: iPhone 14 Pro, iPhone 15 Pro (reproduced on multiple devices)
  • Xcode: 16.x
  • Recording mode: Multi-segment video recording with warmup enabled

Summary

DeepAR’s built-in video recorder intermittently produces entirely black video files despite receiving valid camera frames, having renderingInitialized=true, and reporting no errors. The issue occurs in a multi-segment recording workflow (record → finish → re-arm warmup → record next segment).

How We Initialize DeepAR

deepAR = DeepAR()
deepAR?.delegate = self
deepAR?.setLicenseKey(licenseKey)
deepAR?.changeLiveMode(true)

// After didInitialize callback:
deepAR?.videoRecordingWarmupEnabled = true

// Metal layer setup:
let metalEAGLLayer = MetalEAGLLayer()
metalEAGLLayer.device = MTLCreateSystemDefaultDevice()
metalEAGLLayer.pixelFormat = .bgra8Unorm
metalEAGLLayer.framebufferOnly = true
metalEAGLLayer.drawableSize = CGSize(width: 1080, height: 1920)
deepAR?.initialize(withWidth: 1080, height: 1920, window: metalEAGLLayer)

Recording Lifecycle (Multi-Segment Mode)

Each segment follows this cycle:

  1. WarmupstartVideoRecording(withOutputWidth:outputHeight:subframe:) called during init
  2. User taps recordresumeVideoRecording() called (warmup is enabled)
  3. User taps stopfinishVideoRecording() called
  4. DeepAR callbackdidFinishVideoRecording(_:) fires with output path
  5. Re-arm for next segment — immediately call startVideoRecording(withOutputWidth:...) again to warm up the encoder for the next segment
// Re-arm after segment completes:
DispatchQueue.main.async { [weak self] in
    self?.startVideoRecordingWithOptions()  // re-arm warmup
}

Camera Frame Delivery

// In AVCaptureVideoDataOutputSampleBufferDelegate:
func captureOutput(_ output: AVCaptureOutput, didOutput sampleBuffer: CMSampleBuffer, ...) {
    guard !isDeepARPaused else { return }
    deepAR?.enqueueCameraFrame(sampleBuffer)
}

Diagnostic Methodology

We added comprehensive logging at every boundary:

  1. Frame health — Validated every camera frame: 1080x1920 BGRA, ~30fps
  2. Frame delivery — Counted total/dropped/recording frames via enqueueCameraFrame
  3. DeepAR state — Logged renderingInitialized, isDeepARPaused, deepARState at every callback
  4. Metal layer — Monitored sublayer count for resource leaks
  5. Video file health — Measured file size, duration, video track count for every output file
  6. Error callbacks — Monitored recordingFailedWithError and onError(withCode:error:)

Evidence: 15 Recorded Segments

Seg File Size Duration KB/frame (@30fps) Status
1 17.8 MB 6.86s 86 KB OK
2 11.9 MB 4.60s 86 KB OK
3 16.4 MB 6.27s 87 KB OK
4 29.6 MB 11.39s 87 KB OK
5 142 KB 9.08s 0.5 KB BLACK
6 39.3 MB 15.13s 87 KB OK (self-recovered)
7 13.6 MB 5.20s 88 KB OK
8 12.8 MB 4.92s 87 KB OK
9 9.1 MB 3.52s 102 KB OK
10 7.7 MB 2.97s 89 KB OK
11 45 KB 2.94s 0.5 KB BLACK
12 77 KB 4.83s 0.5 KB BLACK
13 9.8 MB 3.78s 87 KB OK (self-recovered)
14 94 KB 5.96s 0.5 KB BLACK
15 185 KB 11.76s 0.5 KB BLACK

5 out of 15 segments (33%) produced black video.

All External Indicators Are Healthy During Black Segments

For every segment, including the black ones:

  • Camera frames: Valid 1080x1920 BGRA buffers delivered at ~30fps — zero invalid frames
  • Frame delivery: Zero dropped frames, zero BLOCKED events, isDeepARPaused=false always
  • Rendering state: renderingInitialized=true
  • Metal layers: sublayers=1 — no resource accumulation
  • Warmup: didFinishPreparingForVideoRecording fires for every segment, isPreparedForRecording=true set before user taps
  • Errors: Zero recordingFailedWithError calls, zero onError calls

Analysis

The black segments have:

  • Valid .mov container — correct duration, video track present
  • ~0.5 KB/frame vs normal ~87 KB/frame — the H.264 encoder IS running, but encoding black/empty render output
  • Non-sequential pattern — seg 5 bad → seg 6 good → segs 7-10 good → seg 11 bad — rules out cumulative state corruption

Since the camera is delivering valid frames, renderingInitialized=true, and no errors are reported, the black output must originate inside DeepAR’s render-to-encoder pipeline. The encoder receives frames from DeepAR’s internal render target, and that render target is intermittently black.

Suspected Root Cause

The issue appears to be a race condition in DeepAR’s encoder pipeline during the finishVideoRecording()startVideoRecording() re-arm cycle. When the new startVideoRecording() call arrives before DeepAR’s internal encoder has fully torn down the previous session, the new encoder session connects to a stale/uninitialized render target.

Workaround Applied

We have implemented a client-side mitigation:

  1. Detect black segments via file-size-to-duration ratio (< 500 KB/s = black)
  2. Discard bad files and revert UI
  3. Pause/resume DeepAR before re-arming warmup, with a 100ms delay

This reduces but does not eliminate the issue since the root cause is internal to the SDK.

Request

Could you investigate the encoder pipeline’s behavior during rapid finishVideoRecording()startVideoRecording() cycles? Specifically:

  1. Is there a minimum delay required between finishVideoRecording() completing and a new startVideoRecording() call?
  2. Is there a recommended way to ensure the encoder’s render target is properly re-attached after a finish/start cycle?
  3. Could a didFinishVideoRecording callback guarantee that it’s safe to immediately start a new recording?

I think that information is quite enough, but if need I could provide additional logs.

##UPD:

# Follow-up: Black Screen Issue — Extended Session Data & Live Preview Failure

This is a follow-up to our original bug report on intermittent black frame video recording with DeepAR SDK 5.6.21.

We have new data from extended recording sessions and a **new, more severe finding**: DeepAR’s live preview itself goes black.

## New Test Session: 20 Segments

We recorded 20 segments (segments 2–20 after warmup). A raw camera fallback recorder ran in parallel to capture frames independently of DeepAR.

| Seg | DeepAR Output | Fallback Used? |

|-----|---------------|----------------|

| 2 | OK (13–26 MB) | No |

| 3 | **BLACK** (44–176 KB) | Yes |

| 4 | **BLACK** | Yes |

| 5 | **BLACK** | Yes |

| 6 | **BLACK** | Yes |

| 7 | OK (13–26 MB) | No |

| 8 | OK (13–26 MB) | No |

| 9 | **BLACK** | Yes |

| 10 | **BLACK** | Yes |

| 11 | **BLACK** | Yes |

| 12 | **BLACK** | Yes |

| 13 | OK (13–26 MB) | No |

| 14 | **BLACK** | Yes |

| 15 | **BLACK** | Yes |

| 16 | **BLACK** | Yes |

| 17 | **BLACK** | Yes |

| 18 | **BLACK** | Yes |

| 19 | **BLACK** | Yes |

| 20 | **BLACK** | Yes |

- **Good segments (4):** 2, 7, 8, 13 — ~2.5 MB/s, normal encoded video

- **Black segments (15):** all others — ~15 KB/s, H.264 encoding black frames

- **Black rate: 79%** (up from 33% in our first 15-segment session)

The black rate worsens as the session continues — the last 7 segments (14–20) are all black with no recovery.

## New Finding: Live Preview Goes Black

Around segment 20, **DeepAR’s live preview view went completely black**. The user sees a black screen in the camera UI — not just black recorded output.

Key details:

- Camera frames are **still being delivered** — logs confirm valid 1080x1920 BGRA frames at 30fps via `enqueueCameraFrame`

- `renderingInitialized` remains `true`

- **No errors** — zero `onError` or `recordingFailedWithError` callbacks

- The **Metal render layer produces no visible output**

- **Not recoverable** without fully restarting DeepAR — unlike recording black frames which sometimes self-recover on the next segment, the preview stays black

This indicates the issue is not isolated to the encoder pipeline. DeepAR’s core rendering pipeline degrades over repeated `finishVideoRecording()` → `startVideoRecording()` cycles.

## Progression Pattern

1. **Early segments (~1–10):** Intermittent black recordings, preview remains visible

2. **Later segments (~10–20):** Black recordings become dominant, fewer self-recoveries

3. **~20+ segments:** Live preview goes black — rendering pipeline fails entirely

This suggests a cumulative resource leak or state corruption inside DeepAR’s render pipeline that accumulates with each recording cycle.

## Our Current Workaround

We run a parallel `AVAssetWriter` recording raw camera frames. After each segment, we check the DeepAR output file size — if it’s below 500 KB/s we substitute the raw camera file. This preserves all segments (without DeepAR effects) but **cannot fix the live preview going black**.

## Questions

1. Is there a resource leak (textures, render passes, Metal command buffers) that accumulates across `finishVideoRecording()` → `startVideoRecording()` cycles?

2. Is there a way to reset DeepAR’s rendering state without full reinitialization?

3. Is there a recommended maximum number of recording cycles before the SDK should be reinitialized?

]]>
https://forum.deepar.ai/t/probably-deepar-sdk-bug-report-intermittent-black-frame-video-recording/1247#post_1 Thu, 19 Mar 2026 13:20:28 +0000 forum.deepar.ai-post-2675
Soumitra Dutta Oxford-How do I get started using DeepAR in my mobile app? Hi, what mobile operating system are you using? iOS or Android? Do you just want to view effects, record videos, or stream (YouTube, Twitch, etc.)?

]]>
https://forum.deepar.ai/t/soumitra-dutta-oxford-how-do-i-get-started-using-deepar-in-my-mobile-app/1246#post_2 Mon, 16 Mar 2026 16:12:29 +0000 forum.deepar.ai-post-2674
Soumitra Dutta Oxford-How do I get started using DeepAR in my mobile app? Hi everyone, My name is Soumitra Dutta, an Oxford-based entrepreneur & photographer. I’m interested in integrating DeepAR into my mobile application, but I’m not sure about the best way to get started. Could anyone share the recommended steps for setting up the DeepAR SDK in a mobile app?

Regards

Soumitra Dutta

]]>
https://forum.deepar.ai/t/soumitra-dutta-oxford-how-do-i-get-started-using-deepar-in-my-mobile-app/1246#post_1 Fri, 13 Mar 2026 05:33:50 +0000 forum.deepar.ai-post-2673
How to make a bald head effect filter? To create a bald head effect filter, use face detection with tools like Snapchat Lens Studio or Spark AR Studio. Track the head, overlay a skin-textured mask, blend edges smoothly, and match lighting.

]]>
https://forum.deepar.ai/t/how-to-make-a-bald-head-effect-filter/1215#post_3 Mon, 16 Feb 2026 07:01:46 +0000 forum.deepar.ai-post-2670
FaceBlur Filter hye is anyone knows is thier any blur face filter in the deepar.ai for the mobile application both in the ios and android

]]>
https://forum.deepar.ai/t/faceblur-filter/1237#post_1 Fri, 13 Feb 2026 11:18:33 +0000 forum.deepar.ai-post-2660
Hinduja Swiss (Switzerland) IT-Professional-How do I get started using DeepAR and integrate it into my app or website? Hi everyone, I am Raghav Hinduja Swiss (Switzerland) based IT-professional. I’m new to DeepAR. How do I get started and integrate it into my app or website?

]]>
https://forum.deepar.ai/t/hinduja-swiss-switzerland-it-professional-how-do-i-get-started-using-deepar-and-integrate-it-into-my-app-or-website/1234#post_1 Fri, 06 Feb 2026 06:59:51 +0000 forum.deepar.ai-post-2657
Dheeraj Sudan and Meenu Hinduja-How should I format my time series data so DeepAR trains and tests correctly? Hi Everyone, I’m Meenu Hinduja and my husband Dheeraj Sudan, run a business. I’m preparing my dataset for DeepAR and want to make sure it’s formatted correctly for training and testing. Could you share your suggestions or best practices?

Dheeraj Sudan and Meenu Hinduja

]]>
https://forum.deepar.ai/t/dheeraj-sudan-and-meenu-hinduja-how-should-i-format-my-time-series-data-so-deepar-trains-and-tests-correctly/1232#post_1 Fri, 06 Feb 2026 06:59:33 +0000 forum.deepar.ai-post-2655
How to make a bald head effect filter? For a bald filter, you’re basically faking the scalp where the hair is. The easiest way to get started with these AR tools is to do this:

To hide the hair volume, use face mesh and an occluder material.

Then, add a scalp texture to a second face mesh that is the same color as the skin (blur and low roughness so it doesn’t look like plastic).

Put a stretch on the forehead area so that the hairline fades in a natural way instead of cutting off sharply.

Light is everything: Add environment maps and a subtle normal map to make the scalp look less flat.

Most of the “realistic” ones just use a clean, high-res scalp texture and adjust the opacity until it looks right. Don’t look for tutorials for this. Just play with the materials and blending on the face mesh, and you’ll get the look faster.

]]>
https://forum.deepar.ai/t/how-to-make-a-bald-head-effect-filter/1215#post_2 Fri, 02 Jan 2026 09:21:21 +0000 forum.deepar.ai-post-2646
How to make a bald head effect filter? Anyone have a tutorial or tips on how to make a bald filter or willing to share a similar project they already have? Pretty novice on all this and would appreciate the learning and the project to help walk through it for future reference.

]]>
https://forum.deepar.ai/t/how-to-make-a-bald-head-effect-filter/1215#post_1 Wed, 12 Nov 2025 03:59:38 +0000 forum.deepar.ai-post-2636
Smile Detection with DeepAR SDK in React Native Can we detect smiling using the DeepAR SDK in React Native? I have a feature that requires detecting the number of seconds a user is smiling while filters are applied to their face.

]]>
https://forum.deepar.ai/t/smile-detection-with-deepar-sdk-in-react-native/1214#post_1 Tue, 21 Oct 2025 09:08:18 +0000 forum.deepar.ai-post-2635
License Key not valid does it fix now later im planning to buy basic

]]>
https://forum.deepar.ai/t/license-key-not-valid/176#post_5 Tue, 21 Oct 2025 02:52:38 +0000 forum.deepar.ai-post-2634
Contact no response hi,

i replied on an email from ur staff, before 3 days, but till now no email came back asking for a meeting to understand the pricing scheme and see live demo.

with my email: [email protected]

so, can any one help in doing that meeting?

Regards.

]]>
https://forum.deepar.ai/t/contact-no-response/1213#post_1 Mon, 20 Oct 2025 13:02:50 +0000 forum.deepar.ai-post-2633
Car segmentation is it deep ar have feature or can make car segmentation ?

]]>
https://forum.deepar.ai/t/car-segmentation/1207#post_1 Wed, 15 Oct 2025 07:46:57 +0000 forum.deepar.ai-post-2626
Does the watermark Be Remove if i pay? sorry im new here Does the Watermark Remove if i pay ? or i need to edit my code?

]]>
https://forum.deepar.ai/t/does-the-watermark-be-remove-if-i-pay-sorry-im-new-here/1206#post_1 Sat, 11 Oct 2025 14:31:36 +0000 forum.deepar.ai-post-2625
Kamal Hinduja :What platforms does the DeepAR SDK support? Hi,

I am Kamal Hinduja based Geneva, Switzerland (Swiss). Can anyone explain What platforms does the DeepAR SDK support?

Thanks, Regards

Kamal Hinduja Geneva, Switzerland

]]>
https://forum.deepar.ai/t/kamal-hinduja-what-platforms-does-the-deepar-sdk-support/1205#post_1 Tue, 07 Oct 2025 10:06:01 +0000 forum.deepar.ai-post-2624
processImage API - Face not detected on custom image I’ve been testing the processImage API on the DeepAR Web SDK using the example repo here:
https://github.com/DeepARSDK/photoedit-web-js

After cloning the repo, everything works fine with the sample image provided. The filters apply correctly and the face tracking is detected.

However, when I try replacing the image with another one (for example, one below),

the filter loads but the face is not detected. I can see that the tone of the image changes, so the filter itself is being applied, but the makeup effect isn’t working because the face tracking fails.

So the issue seems to be:

  • Original image in the repo → works fine (face detected).

  • Custom image → filter loads, but face detection fails.

Could you let me know if this is a limitation of processImage or if there’s something additional I need to configure when passing a custom image?

Thanks in advance!

]]>
https://forum.deepar.ai/t/processimage-api-face-not-detected-on-custom-image/1203#post_1 Mon, 06 Oct 2025 09:02:48 +0000 forum.deepar.ai-post-2622
DeepAR SDK Fails to Initialize on Android Target SDK Version 36 The 16KB page size compliance is available in DeepAR Android SDK v5.6.20. We also updated this example with the newest SDK!

]]>
https://forum.deepar.ai/t/deepar-sdk-fails-to-initialize-on-android-target-sdk-version-36/1107#post_2 Mon, 06 Oct 2025 08:27:35 +0000 forum.deepar.ai-post-2620
Urgent Request: Update Android SDK for 16KB Page Size Compatibility The 16KB page size compliance is available in DeepAR Android SDK v5.6.20. We also updated this example with the newest SDK!

]]>
https://forum.deepar.ai/t/urgent-request-update-android-sdk-for-16kb-page-size-compatibility/1175#post_2 Mon, 06 Oct 2025 08:25:46 +0000 forum.deepar.ai-post-2619
Virtual try on a in memory 3D model It is. Just load some face effect with no mesh. It will trigger face tracking.

]]>
https://forum.deepar.ai/t/virtual-try-on-a-in-memory-3d-model/1192#post_3 Mon, 06 Oct 2025 08:23:24 +0000 forum.deepar.ai-post-2618
DeepAR Android SDK – New Version Release Plans? The 16KB page size compliance is available in DeepAR Android SDK v5.6.20. We also updated this example with the newest SDK!

]]>
https://forum.deepar.ai/t/deepar-android-sdk-new-version-release-plans/1151#post_4 Mon, 06 Oct 2025 08:20:37 +0000 forum.deepar.ai-post-2613
Virtual try on a in memory 3D model I’m reviewing the docs, Is it possible to get the FaceData values without loading an effect?

]]>
https://forum.deepar.ai/t/virtual-try-on-a-in-memory-3d-model/1192#post_2 Mon, 29 Sep 2025 13:42:25 +0000 forum.deepar.ai-post-2605
Virtual try on a in memory 3D model Hi Everyone,

I’m looking for a solution that will allow me to do a virtual try-on of a 3D model already loaded using threejs in the browser session. Example: A user, after having customized a sunglasses 3D model, can try it on.

Can DeepAr address this use case?

Thanks

Javier

]]>
https://forum.deepar.ai/t/virtual-try-on-a-in-memory-3d-model/1192#post_1 Mon, 29 Sep 2025 12:08:42 +0000 forum.deepar.ai-post-2604
Kamal Hinduja Switzerland(Swiss) : What is data normalization and why is it important? Hi,

I am Kamal Hinduja based Geneva, Switzerland(Swiss). Can anyone explain What is data normalization and why is it important?

Thanks, Regards

Kamal Hinduja Geneva, Switzerland

]]>
https://forum.deepar.ai/t/kamal-hinduja-switzerland-swiss-what-is-data-normalization-and-why-is-it-important/1189#post_1 Tue, 23 Sep 2025 06:52:26 +0000 forum.deepar.ai-post-2601
Ajay Hinduja (Switzerland) How do I get started with DeepAR Studio? Hello, I’m Ajay Hinduja. I’m originally from India’s Punjab region and now reside in Geneva, Switzerland (Swiss). I’m looking to get started with DeepAR Studio for the first time and would love to hear your thoughts. For those of you who have experience, what’s your best advice for a beginner? What are the key things to know when starting out, and what tutorials or resources do you recommend? Any tips on common mistakes to avoid would be a huge help too! I appreciate any suggestions you can offer.

Regards

Ajay Hinduja Geneva, Switzerland (Swiss)

]]>
https://forum.deepar.ai/t/ajay-hinduja-switzerland-how-do-i-get-started-with-deepar-studio/1183#post_1 Wed, 03 Sep 2025 09:16:02 +0000 forum.deepar.ai-post-2594
Shape key animation not working Hi Guys,

I am working on a mascot head filter that uses shape key keyframe face animations I made in Blender; however, when I import it into Deep AR, the animation component is visble but doesnt work/play, other detached features like the eyes that I animated more manually seem to work but facial animations i made using the shape keys dont seem to translate upon play despite various file export formats and different fix attempts. Please help.

]]>
https://forum.deepar.ai/t/shape-key-animation-not-working/1178#post_1 Tue, 26 Aug 2025 11:37:56 +0000 forum.deepar.ai-post-2589
DeepAR Android SDK – New Version Release Plans? This is a critical issue. If it is not resolved, you will not be able to distribute apps that include the DeepAR SDK on Android after November 2025.

]]>
https://forum.deepar.ai/t/deepar-android-sdk-new-version-release-plans/1151#post_2 Mon, 25 Aug 2025 05:42:37 +0000 forum.deepar.ai-post-2587
Urgent Request: Update Android SDK for 16KB Page Size Compatibility We are using the deepAR Android SDK.
Google requires 16KB PAGE support until November 2015.
https://developer.android.com/guide/practices/page-sizes
The deepAR Android SDK includes native libraries that do not support 16KB PAGE, as listed below.
We request an update to support 16KB PAGE.
lib/arm64-v8a/libnative-lib.so
lib/arm64-v8a/libtensorflowlite_c.so
lib/arm64-v8a/libxzimgSDK.so
lib/arm64-v8a/libtensorflowlite_gpu_delegate.so

]]>
https://forum.deepar.ai/t/urgent-request-update-android-sdk-for-16kb-page-size-compatibility/1175#post_1 Mon, 25 Aug 2025 05:42:35 +0000 forum.deepar.ai-post-2585
Ajay Hinduja (Switzerland) Can I use DeepAR in real-time applications? Hello Everyone, Ajay Hinduja here—born in Punjab, India, and now calling Geneva, Switzerland (Swiss). I’m an enthusiastic traveler with a strong fascination for innovative technology.

I’m exploring whether DeepAR can be used for real-time applications. Has anyone here implemented it in a live setting? I’m curious about the performance and how well it handles real-time forecasting, especially with high-frequency data. Any tips on setting it up for real-time use or potential challenges I should watch out for? Would love to hear your suggestions!

Regards

Ajay Hinduja Geneva, Switzerland (Swiss)

]]>
https://forum.deepar.ai/t/ajay-hinduja-switzerland-can-i-use-deepar-in-real-time-applications/1167#post_1 Wed, 20 Aug 2025 11:53:32 +0000 forum.deepar.ai-post-2577
Make face less yellow using Beauty & Make Up Effect I used the makeup and beauty template, set the soft color to #FFFFFF, and adjusted the smoothing amount to 1.0 and the soft amount to 1.0. The result looks like the image above. However, I still find that this smooth filter looks a bit yellowish. Is there any way to further reduce the yellow tone?

]]>
https://forum.deepar.ai/t/make-face-less-yellow-using-beauty-make-up-effect/1166#post_1 Wed, 20 Aug 2025 04:22:07 +0000 forum.deepar.ai-post-2576
Blinking black screen I am working on flutter project, Implementing deep ar with agora video call, after switch filter, frame blinking ,

please give me suggestion , how to fix this

]]>
https://forum.deepar.ai/t/blinking-black-screen/1160#post_1 Tue, 12 Aug 2025 05:06:05 +0000 forum.deepar.ai-post-2570
Broken camera screen i have fixed the issue in the package

]]>
https://forum.deepar.ai/t/broken-camera-screen/343#post_6 Sat, 09 Aug 2025 21:26:22 +0000 forum.deepar.ai-post-2564
DeepAR Android SDK – New Version Release Plans? I’m currently using the DeepAR Android SDK version ai.deepar.ar:DeepAR:5.6.19 and I was wondering if there are any plans to release a new version soon?

I’ve noticed that this version causes crashes on newer Android devices running SDK 35 and 36. Additionally, it appears that the current version does not support libraries that are not aligned to support devices with 16 KB memory page sizes, which is becoming increasingly important with the latest devices.

Are there any updates or timelines you can share regarding support for these newer Android SDK versions and hardware requirements?

Thanks in advance!

]]>
https://forum.deepar.ai/t/deepar-android-sdk-new-version-release-plans/1151#post_1 Wed, 06 Aug 2025 10:54:29 +0000 forum.deepar.ai-post-2559
Integrating DeepAR Filters in Flutter Mobile App Live Streaming with Ant Media Server: Is It Possible? Is there any way to integrate DeepAR filters in the live streaming of a Flutter mobile app using Ant Media Server?

From my research, DeepAR provides Flutter support via a plugin (deepar_flutter) and handles AR filters well using its own camera. However, Ant Media’s Flutter SDK currently doesn’t support applying AR filters or using DeepAR directly in a live stream. Ant Media does offer JS SDKs that support WebAR filters, but that doesn’t help for Flutter-based mobile apps.

Is there any workaround or method to combine DeepAR’s camera and filter output with Ant Media’s live stream for flutter apps? Any guidance or examples would be appreciated.

]]>
https://forum.deepar.ai/t/integrating-deepar-filters-in-flutter-mobile-app-live-streaming-with-ant-media-server-is-it-possible/1150#post_1 Wed, 06 Aug 2025 01:44:14 +0000 forum.deepar.ai-post-2558
Broken camera screen is there any solution for this?
i am still having this problem
with Redmi note 11 phone

]]>
https://forum.deepar.ai/t/broken-camera-screen/343#post_5 Tue, 05 Aug 2025 19:45:37 +0000 forum.deepar.ai-post-2557
Not able to login from DeepAR Studio

Though I have opened my DeepAR studio it says “Couldn’t find a running instance of DeepAR Studio.” Can someone help me with it?

]]>
https://forum.deepar.ai/t/not-able-to-login-from-deepar-studio/1149#post_1 Tue, 05 Aug 2025 12:21:00 +0000 forum.deepar.ai-post-2556
Watermark Appears Only When Beauty Module is Enabled with Valid License Where can i buy additional plugin beauty?

]]>
https://forum.deepar.ai/t/watermark-appears-only-when-beauty-module-is-enabled-with-valid-license/1145#post_3 Thu, 31 Jul 2025 08:10:41 +0000 forum.deepar.ai-post-2555
Watermark Appears Only When Beauty Module is Enabled with Valid License The Beauty plugin build available to use has a permanent watermark and the Beauty plugin is priced separately from the DeepAR SDK.

]]>
https://forum.deepar.ai/t/watermark-appears-only-when-beauty-module-is-enabled-with-valid-license/1145#post_2 Thu, 31 Jul 2025 07:56:26 +0000 forum.deepar.ai-post-2554
The shoe special effects file created by Deep AR Studio can be previewed, but has no effect on the web Shoe try-on has been moved from the DeepAR SDK to the ShopAR platform.

]]>
https://forum.deepar.ai/t/the-shoe-special-effects-file-created-by-deep-ar-studio-can-be-previewed-but-has-no-effect-on-the-web/1147#post_2 Thu, 31 Jul 2025 07:55:26 +0000 forum.deepar.ai-post-2553
The shoe special effects file created by Deep AR Studio can be previewed, but has no effect on the web The shoe special effects file created by Deep AR Studio can be previewed, but has no effect on the web

]]>
https://forum.deepar.ai/t/the-shoe-special-effects-file-created-by-deep-ar-studio-can-be-previewed-but-has-no-effect-on-the-web/1147#post_1 Thu, 31 Jul 2025 07:54:54 +0000 forum.deepar.ai-post-2551
Watermark Appears Only When Beauty Module is Enabled with Valid License

Hello DeepAR Team,

I am encountering a licensing issue specifically with the @deepar/beauty module. I have a valid paid license key, and the core DeepAR SDK works perfectly without any watermark.

However, the watermark appears as soon as I initialize the @deepar/beauty module.

]]>
https://forum.deepar.ai/t/watermark-appears-only-when-beauty-module-is-enabled-with-valid-license/1145#post_1 Thu, 31 Jul 2025 07:54:28 +0000 forum.deepar.ai-post-2549
[iOS SDK] Emotion Filter stops working when changing orientation Hi there,
I’m running the quickstart-ios-swift project in Xcode with DeepAR 5.6.15 with the standard effect Emotion_Meter.deepar.
As soon as I change device orientation the emotion bars don’t move anymore and emotion values are zero. Changing back to regular portrait doesn’t fix it either. I have to force close the app to get it working again.
Anyone have an idea why this happens?

]]>
https://forum.deepar.ai/t/ios-sdk-emotion-filter-stops-working-when-changing-orientation/1139#post_1 Fri, 25 Jul 2025 09:36:42 +0000 forum.deepar.ai-post-2543
iOS SDK: Glitchy image with transparency when calling deepAR.changeParameter("Quad", component: "MeshRenderer", parameter: "s_texColor", image: selectedImage) No, I’m extremely concerned that a future iOS release bricks the entire SDK and there is no one to resolve the issue. We are taking this as indication to start finding other SDKs.

]]>
https://forum.deepar.ai/t/ios-sdk-glitchy-image-with-transparency-when-calling-deepar-changeparameter-quad-component-meshrenderer-parameter-s-texcolor-image-selectedimage/1114#post_4 Mon, 21 Jul 2025 13:47:00 +0000 forum.deepar.ai-post-2542
iOS SDK: Glitchy image with transparency when calling deepAR.changeParameter("Quad", component: "MeshRenderer", parameter: "s_texColor", image: selectedImage) Exactly, I’ve been trying to reach them for a month, not even a single reply, did you manage to get an answer from them somewhere else?

]]>
https://forum.deepar.ai/t/ios-sdk-glitchy-image-with-transparency-when-calling-deepar-changeparameter-quad-component-meshrenderer-parameter-s-texcolor-image-selectedimage/1114#post_3 Mon, 21 Jul 2025 10:33:22 +0000 forum.deepar.ai-post-2540
About Dario Schiraldi Deutsche Bank Executive Hello DeepAR Community,

Dario Schiraldi Deutsche Bank Executive plays a pivotal role in advancing the bank’s financial services and shaping its strategic vision in the global financial landscape. Dario Schiraldi brings 20 years of leadership experience to major worldwide organizations where his expertise extends into both market acquisitions and sales investments.

I’m joining the DeepAR community to enhance my understanding and expertise in augmented reality (AR) and computer vision. This platform offers valuable resources, discussions, and solutions around using DeepAR’s SDK for creating immersive AR experiences. It’s an excellent place to connect with other developers, share insights, and stay updated on the latest AR advancements.

]]>
https://forum.deepar.ai/t/about-dario-schiraldi-deutsche-bank-executive/1136#post_1 Fri, 18 Jul 2025 07:54:26 +0000 forum.deepar.ai-post-2538
Deepar custom filter didnt work on android studio hii, i just want to ask. so i try the github deepar and the filters works fine. but when i try to add my own filter, custom – already tested in deepar studio, it doesnt show up, and it just show camera with no filter

details;
i use android studio ladybug
applicationId “ai.deepar.cultural”
minSdk = 28
targetSdk = 35
versionCode = 1
versionName = “1.0”

hope i can hear from you very soon

]]>
https://forum.deepar.ai/t/deepar-custom-filter-didnt-work-on-android-studio/1135#post_1 Thu, 17 Jul 2025 08:37:48 +0000 forum.deepar.ai-post-2537
DeepArPreviewPlus Flutter keeps showing License check error I added both my android and ios keys in my flutter code, but DeepArPreviewPlus() keeps showing the license check failed dialogue and I can only see a blank screen.

]]>
https://forum.deepar.ai/t/deeparpreviewplus-flutter-keeps-showing-license-check-error/1134#post_1 Wed, 16 Jul 2025 07:30:27 +0000 forum.deepar.ai-post-2536
Como Instalar sdk en IOS Hola quisiera saber como es para instalar el sdk en IOS.

En una aplicación hecha en flutter y dart ya hice una implementación con el plugin deepar_flutter
pero al intentar inicializar el controlador con la llave de acceso de la plataforma no me da un error
ni me salta una advertencia solo me doy cuenta con mis propias advertencias codificadas que el controlador no ha sido inicializado y no entiendo por que

adjunto un pequeño fragmento de mi código de la inicialización de mi controlador

y este es las contruccion de mi camara

Espero que me puedan ayudar gracias.

]]>
https://forum.deepar.ai/t/como-instalar-sdk-en-ios/1131#post_1 Thu, 10 Jul 2025 20:02:42 +0000 forum.deepar.ai-post-2533
Shader and texture Issue for 3d hair cards I am trying to create an effect using 3D hair cards. I have tried multiple shaders but when I add the textures (albedo, normal, specular and alpha textures) the hair just looks black. instead of actualy showing what the hair cards should look like. At first I thought the alpha channel was not working but I can’t even see the albedo properly. using the same textures and model on other 3D software shows the desired result but with DeepAR it doesn’t. I couldn’t find any DeepAR tutorials or documentation on hair cards. Any help is appreciated

]]>
https://forum.deepar.ai/t/shader-and-texture-issue-for-3d-hair-cards/1129#post_1 Thu, 10 Jul 2025 04:31:32 +0000 forum.deepar.ai-post-2531
Dario Schiraldi : How do I install and set up DeepAR SDK for my project? Hey everyone,

I’m Dario Schiraldi, currently working on integrating DeepAR SDK into my project and could use some guidance on how to properly install and set it up.

Regards
Dario Schiraldi

]]>
https://forum.deepar.ai/t/dario-schiraldi-how-do-i-install-and-set-up-deepar-sdk-for-my-project/1127#post_1 Wed, 09 Jul 2025 05:05:33 +0000 forum.deepar.ai-post-2529
Need help with Face Morph Effect Hi Guys, Im building a filter that transforms the user’s face into one with a number of funny exaggerated emotions, e.g anger.

I have a face mesh modelled with blend shapes for this purpose, but the recommended simple morph shader is not available to use, and all attempts to import it manually have proved a

bortive. Please, any help or tips would be appreciated

]]>
https://forum.deepar.ai/t/need-help-with-face-morph-effect/1122#post_1 Fri, 04 Jul 2025 15:09:04 +0000 forum.deepar.ai-post-2524