rFlex / SCRecorder

iOS camera engine with Vine-like tap to record, animatable filters, slow motion, segments editing
Apache License 2.0
3.06k stars 583 forks source link

_movieOutput not initializated. #352

Closed NelepovDmitry closed 8 years ago

NelepovDmitry commented 8 years ago

_movieOutput has init only if fastRecordMethodEnabled if (self.fastRecordMethodEnabled) { if (_movieOutput == nil) { _movieOutput = [AVCaptureMovieFileOutput new]; } } else { //Here nothing }

But in record method

So, never begin record in standart init SCRecord like

later by button try record, and nothing happen.

Version Installing SCRecorder (2.7.0)

Example taken from https://github.com/rFlex/SCRecorder/blob/master/Examples/ObjC/Sources/SCAudioRecordViewController.m

NelepovDmitry commented 8 years ago

Also never called delegate

I download example app, run it, and audio recorded, but delegate not work

NelepovDmitry commented 8 years ago

Here not here, it's just in example, need to use delegate method: