Search Unity

Bug: Video Recording Jitter on iPhone 6s with iOS 10

Discussion in 'Unity Everyplay' started by DerrickBarra, Sep 27, 2017.

  1. DerrickBarra

    DerrickBarra

    Joined:
    Nov 19, 2013
    Posts:
    210
    Hi, we're testing Everyplay with our iPhone 6s running iOS 10 (updating to iOS 11 soon), and we noticed that the video recording with Everyplay is jittery upon playback. You can see this in the video recorded by Everyplay at the following link.

    Is this a known issue? Does it have an easy fix on my end or is this something we'll have to wait for a patch release for?
     
  2. Nkon

    Nkon

    Unity Technologies

    Joined:
    Jun 12, 2017
    Posts:
    65
    Hi there,

    looks like you're using Vuforia, am I right?

    Currently Everyplay has an issue with Vuforia and the Metal API which results in jittery video playback. This affects only Metal, so if changing to GLES is possible for you it would fix the problem.

    Another workaround is to use this:
    Code (CSharp):
    1. Application.targetFrameRate = 30;
    2. Everyplay.SetTargetFPS(30);
    That will cap the FPS to 30, but it has mitigated the issue at least on our tests.

    Cheers,
    Niko
     
  3. DerrickBarra

    DerrickBarra

    Joined:
    Nov 19, 2013
    Posts:
    210
    Thanks for the fix!