Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>A possibility of what is happening here is actually temporary files being saved. You mention that compressing the video seems to trigger this increase in space. </p> <p>There's two ways that you could confirm this by one of two methods. By restarting the device you're testing on. Temporary items will get cleared away by the system either when additional space is required, or when the system shuts down. </p> <p>The other method (and probably more informative) is to investigate the Application through the Xcode organiser. You can do this by selecting the Application on the device and browsing the Applications directory structure. Each application gets 3 directories, /Documents, /Library and /tmp. </p> <p>For intensive operations, that may require the use of a lot of memory, certain libraries will save completed data out to disk, in order to free up memory. Once the operation is completed it will then pass you back a block of data that either references the data in the temporary file, or has the completed data loaded back into memory. This process is completely transparent to the user and developer, and takes advantage of the large amount of flash memory, rather than relying completely on the comparatively limited RAM.</p> <p>In the event that it is not a temporary file, but rather something sitting within the Documents folder of the Application (or even the library), it could be useful to download it to your computer and attempt to investigate its contents, as it may give you some clues as to what is happening.</p> <p>Hope this helps</p> <p>Edited a point for clarity</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload