burniejm
burniejm
``` AVCaptureDeviceInput *videoDeviceInput = [AVCaptureDeviceInput deviceInputWithDevice:videoDevice error:nil]; [_captureSession addInput:videoDeviceInput]; movieFileOutput = [[AVCaptureMovieFileOutput alloc] init]; [_captureSession addOutput:movieFileOutput]; // Create output multipeerVideoOutput = [[AVCaptureMultipeerVideoDataOutput alloc] initWithDisplayName:[[UIDevice currentDevice] name]]; [_captureSession addOutput:multipeerVideoOutput]; [_captureSession commitConfiguration];...
My javaFX app uses this library to capture video from a webcam on windows and mac. It has worked great on both platforms up until now. I am testing on...