2

I am trying to capture video using a custom app on windows phone 8.

I am following the guidelines as per the link here.

I am clueless on how to set the resolutoin for the captured video. Currently it is being recorded at a resolution of 640x480 by default.

Amit Singh
  • 2,698
  • 21
  • 49
Vishal
  • 3,178
  • 2
  • 34
  • 47

1 Answers1

4

You are using the VideoCaptureDevice class which is the Windows Phone 7.5 API for recording video. That API by design is limited to 640*480.

If you want more control over the recorded video, you should use the new Windows Phone 8 API: AudioVideoCaptureDevice which has a SetCaptureResolutionAsync method. Of course, it will require a Windows Phone 8 device.

Olivier Payen
  • 15,198
  • 7
  • 41
  • 70