Refactor VideoCaptureHandler
This commit is contained in:
parent
d506c9860d
commit
e347047275
|
@ -13,15 +13,12 @@ public class VideoCaptureHandler : MonoBehaviour
|
||||||
{
|
{
|
||||||
private VideoCapture videoCapture = null;
|
private VideoCapture videoCapture = null;
|
||||||
|
|
||||||
const String k_freeSpace = "System.FreeSpace";
|
|
||||||
const String k_totalSpace = "System.Capacity";
|
|
||||||
|
|
||||||
#if WINDOWS_UWP && !UNITY_EDITOR
|
#if WINDOWS_UWP && !UNITY_EDITOR
|
||||||
private const UInt64 minAvailableSpace = 31UL * 1024 * 1024 * 1024; // 31 GB
|
private const string freeSpace = "System.FreeSpace";
|
||||||
|
private const UInt64 minAvailableSpace = 5UL * 1024 * 1024 * 1024; // 5GB
|
||||||
|
|
||||||
private IEnumerator CheckAvailableStorageSpace()
|
private IEnumerator CheckAvailableStorageSpace()
|
||||||
{
|
{
|
||||||
Debug.Log("Checking available storage space");
|
|
||||||
while (videoCapture != null && videoCapture.IsRecording)
|
while (videoCapture != null && videoCapture.IsRecording)
|
||||||
{
|
{
|
||||||
yield return CheckSpaceAndHandleRecording();
|
yield return CheckSpaceAndHandleRecording();
|
||||||
|
@ -33,21 +30,11 @@ public class VideoCaptureHandler : MonoBehaviour
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// StorageFolder persistentDataFolder = await StorageFolder.GetFolderFromPathAsync(Application.persistentDataPath);
|
|
||||||
Debug.Log("Getting storage space");
|
|
||||||
// Debug.Log("Persistent Data Path: " + persistentDataFolder.Path);
|
|
||||||
|
|
||||||
StorageFolder folder = ApplicationData.Current.TemporaryFolder;
|
StorageFolder folder = ApplicationData.Current.TemporaryFolder;
|
||||||
var props = await folder.Properties.RetrievePropertiesAsync(new string[] { k_freeSpace, k_totalSpace });
|
var props = await folder.Properties.RetrievePropertiesAsync(new string[] { freeSpace });
|
||||||
Debug.Log("FreeSpace: " + (UInt64) props[k_freeSpace]);
|
UInt64 availableSpace = (UInt64) props[freeSpace];
|
||||||
Debug.Log("Capacity: " + (UInt64) props[k_totalSpace]);
|
|
||||||
UInt64 freeSpace = (UInt64) props[k_freeSpace];
|
|
||||||
|
|
||||||
// var retrievedProperties = await persistentDataFolder.Properties.RetrievePropertiesAsync(new string[] { "System.FreeSpace" });
|
if (availableSpace < minAvailableSpace)
|
||||||
// var freeSpace = (UInt64)retrievedProperties["System.FreeSpace"];
|
|
||||||
// Debug.Log("Free Space: " + freeSpace);
|
|
||||||
|
|
||||||
if (freeSpace < minAvailableSpace)
|
|
||||||
{
|
{
|
||||||
Debug.LogWarning("Not enough storage space to continue recording. Saving video.");
|
Debug.LogWarning("Not enough storage space to continue recording. Saving video.");
|
||||||
videoCapture.StopRecordingAsync(OnStoppedRecordingVideo);
|
videoCapture.StopRecordingAsync(OnStoppedRecordingVideo);
|
||||||
|
|
Loading…
Reference in New Issue