Ejemplo n.º 1
0
 /// <summary>
 /// Create an IFrameSource from a source object. Currently supports Windows.Storage.StorageFile
 /// and Windows.Media.Capture.MediaCapture source objects.
 /// </summary>
 /// <param name="source"></param>
 /// <returns></returns>
 public static async Task <IFrameSource> CreateFrameSourceAsync(object source)
 {
     if (source is Windows.Storage.StorageFile)
     {
         var sourceFile = source as Windows.Storage.StorageFile;
         if (sourceFile.ContentType.StartsWith("image"))
         {
             return(await ImageFileFrameSource.CreateFromStorageFileAsyncTask(sourceFile));
         }
         else if (sourceFile.ContentType.StartsWith("video"))
         {
             return(await MediaPlayerFrameSource.CreateFromStorageFileAsyncTask(sourceFile));
         }
         else
         {
             throw new ArgumentException("Invalid file type received: " + sourceFile.ContentType);
         }
     }
     else if (source is Windows.Media.Capture.MediaCapture)
     {
         return(await FrameReaderFrameSource.CreateFromMediaCaptureAsync(source as Windows.Media.Capture.MediaCapture));
     }
     else
     {
         throw new ArgumentException();
     }
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Static factory method
        /// </summary>
        /// <param name="mediaCapture"></param>
        /// <returns></returns>
        public static async Task <FrameReaderFrameSource> CreateFromMediaCaptureAsync(MediaCapture mediaCapture)
        {
            var result = new FrameReaderFrameSource();

            result.m_mediaCapture = mediaCapture;
            await result.InitializeMediaFrameSourceAsync();

            await result.InitializeFrameReaderAsync();

            return(result);
        }