【发布时间】:2016-07-30 08:17:36
【问题描述】:
我一直在尝试将视频发布到服务器:
_capturePreset = AVCaptureSessionPresetHigh;
[[self class] dimensionsForCapturePreset:_capturePreset
width:&_captureWidth
height:&_captureHeight];
_capture_queue = dispatch_queue_create("com.tokbox.OTVideoCapture",
DISPATCH_QUEUE_SERIAL);
_videoFrame = [[OTVideoFrame alloc] initWithFormat:[OTVideoFormat videoFormatNV12WithWidth:screenWidth
height:screenHeight]];
我想捕获与在设备上录制视频时相同的屏幕分辨率,但它始终返回 640*480。可以告诉如何设置从服务器录制和存档视频所需的分辨率吗?
【问题讨论】:
标签: ios video resolution opentok tokbox