MediaReader
MediaReader copied to clipboard
Reads audio/video data from files, cameras/microphones, and generic media sources
MediaSample2D does but it looks like processing audio is not possible
I try to install MediaReader to my UWP project, but I can reference the MediaReader namespace by `using MediaReader;` Is anyone facing the same problem?
the home page writes: var capture = new MediaCapture(); await _capture.InitializeAsync(settings); but most probably this should be var capture = new MediaCapture(); await capture.InitializeAsync(settings); that is skip the _
Hi. I tried to install with nuget and got this error VS2015 comunity, win10 > Error Could not install package 'MMaitre.MediaCaptureReader 2.1.6'. You are trying to install this package into...
Hi, Thank you for the package!, I tried to read from IMediaSource but the program fails when reading the videostream reader.VideoStream.ReadAsync(), it crushes even when I tried to encode the...
Could you please refresh NuGet on nuget.org? The latest available version is 2.1.6 which seems to lack UWP support.
Hello, Matthieu. Hope you are doing well. My team and I are trying to extract a picture from an IMediaSource object. For context, we are trying to extract a frame...
I can´t use it on ACTI ACM-1011 Ip camera. This camera uses the browser and operates using url commands. But in VLC i can entry the url and record video...
Hi there, First thing amazing job you've done with this library. Been playing around with it and taught me so many things regarding WRL/WinRT and the whole video pipeline.In your...
I'm trying to capture an image from a running camera preview. ``` public async Task InitializeCamera() { var cameraID = await GetCameraID(Windows.Devices.Enumeration.Panel.Back); var settings = new MediaCaptureInitializationSettings { StreamingCaptureMode =...