通过音频视频捕获设备创建缩略图

本文关键字:创建 略图 音频视频 | 更新日期: 2023-09-27 18:34:14

这要么非常复杂,要么我真的很糟糕!!

我正在使用AudioVideoCaptureDevice,我想创建视频的图像缩略图并将其保存到独立存储中。

到目前为止,我拥有以下内容:

    private void SaveThumbnail()
    {
        var w = (int)_videoCaptureDevice.PreviewResolution.Width;
        var h = (int)_videoCaptureDevice.PreviewResolution.Height;
        var argbPx = new int[w * h];
        Deployment.Current.Dispatcher.BeginInvoke(() => _videoCaptureDevice.GetPreviewBufferArgb(argbPx));
        var wb = new WriteableBitmap(w, h);
        argbPx.CopyTo(wb.Pixels, 0);
        wb.Invalidate();
        using (var isoStore = IsolatedStorageFile.GetUserStoreForApplication())
        {
            var fileName = _isoVideoFileName + ".jpg";
            if (isoStore.FileExists(fileName))
                isoStore.DeleteFile(fileName);
            var file = isoStore.CreateFile(fileName);
            wb.SaveJpeg(file, w, h, 0, 20);
            file.Close();
        }
    }

因此,GetPreviewBufferArgb() 方法用图像数据填充我的 int 数组(至少如文档所述)。我应该如何继续将这些像素保存到隔离存储中,以便以后可以加载它们?

上面的代码似乎不起作用,因为当我从隔离存储打开图像时,它没有打开。

更新:现在我可以保存一些东西 - 不幸的是图像总是黑色的(不 - 我没有在模拟器上测试应用程序)!!

通过音频视频捕获设备创建缩略图

让它工作 - 虽然有点连线.. 似乎整个过程应该在 UI 线程中完成。

        private void SaveThumbnail()
        {
            Deployment.Current.Dispatcher.BeginInvoke(() =>
            {
                var w = (int)_videoCaptureDevice.PreviewResolution.Width;
                var h = (int)_videoCaptureDevice.PreviewResolution.Height;
                var argbPx = new Int32[w * h];
                _videoCaptureDevice.GetPreviewBufferArgb(argbPx);
                var wb = new WriteableBitmap(w, h);
                argbPx.CopyTo(wb.Pixels, 0);
                wb.Invalidate();
                using (var isoStore = IsolatedStorageFile.GetUserStoreForApplication())
                {
                    var fileName = _isoVideoFileName + ".jpg";
                    if (isoStore.FileExists(fileName))
                        isoStore.DeleteFile(fileName);
                    var file = isoStore.CreateFile(fileName);
                    wb.SaveJpeg(file, w, h, 0, 20);
                    file.Close();
                }
            });
        }