Skip to content

Commit

Permalink
Merge pull request #54 from reiji012/fix_ios_publish_rtmp
Browse files Browse the repository at this point in the history
to_false_focus_exposure
  • Loading branch information
pinkfish committed May 12, 2021
2 parents fcd9e01 + 6d7c166 commit a4b4f35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/Classes/FlutterRTMPStreaming.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public class FlutterRTMPStreaming : NSObject {
rtmpStream = RTMPStream(connection: rtmpConnection)
rtmpStream.captureSettings = [
.sessionPreset: AVCaptureSession.Preset.hd1280x720,
.continuousAutofocus: true,
.continuousExposure: true
.continuousAutofocus: false,
.continuousExposure: false
]
rtmpConnection.addEventListener(.rtmpStatus, selector:#selector(rtmpStatusHandler), observer: self)
rtmpConnection.addEventListener(.ioError, selector: #selector(rtmpErrorHandler), observer: self)
Expand Down

0 comments on commit a4b4f35

Please sign in to comment.