ISBX / apprtc-ios

A native iOS video chat app based on WebRTC
BSD 3-Clause "New" or "Revised" License
1.35k stars 413 forks source link

how to set video size #80

Open yongFine opened 7 years ago

yongFine commented 7 years ago

the video size is 640*480 how to change

EbramTawfik commented 7 years ago

(RTCMediaConstraints )defaultMediaStreamConstraints { RTCPair minWidth = [[RTCPair alloc] initWithKey:@"minWidth" value:@"640"]; RTCPair minHeight = [[RTCPair alloc] initWithKey:@"minHeight" value:@"480"]; NSArray mandatory = @[ minWidth ,minHeight];

RTCMediaConstraints *constraints = [[RTCMediaConstraints alloc] initWithMandatoryConstraints:mandatory optionalConstraints:nil]; return constraints; }