08/12/2014 by Nitesh

Display Live Preview of your Webcam Stream in Windows Store App

Friends, In this post, we will see how simple it is to stream a live preview from your webcam on a small screen in your Windows store App. You can use it to display user’s picture in the side of a screen or also can show what the camera is focusing on at a given…

Continue Reading »

05/12/2014 by Nitesh

How To Get Access to Front & Back Camera in Windows 8.1 Store App

Friends, In this post, we will see how can we get access specifically to Front camera/Back camera in our Windows 8/8.1 Store App. To get the access, we will use DeviceInformation class defined in Windows.Devices.Enumeration namespace. Below is the code snippet for the same – DeviceInformationCollection webcamList = await DeviceInformation.FindAllAsync(DeviceClass.VideoCapture); DeviceInformation frontWebcam = (from webcam…

Continue Reading »