Results 31 comments of Lei Wang

Sign in here to say thank you! Your work is much appreciated.

Demo has [this](https://github.com/CrazyOrr/FFmpegRecorder/blob/master/app/src/main/java/com/github/crazyorr/ffmpegrecorder/FFmpegRecordActivity.java#L725-L733) and [this](https://github.com/CrazyOrr/FFmpegRecorder/blob/master/app/src/main/java/com/github/crazyorr/ffmpegrecorder/FFmpegRecordActivity.java#L760-L761).

FIrst, you need to find out how to do this using FFmpeg command line tools like [this](https://superuser.com/questions/777938/ffmpeg-convert-a-video-to-a-timelapse). Then, you can try using `FFmpegFrameFilter` like [this](https://github.com/CrazyOrr/FFmpegRecorder/blob/master/app/src/main/java/com/github/crazyorr/ffmpegrecorder/FFmpegRecordActivity.java#L725-L779) to pass in the same...

Confirmed this bug. You can use ffmpeg 3.2.1-1.3 with javacv 1.3 for the moment.

Try [this](https://github.com/CrazyOrr/FFmpegRecorder/issues/8#issuecomment-261923515).

Try the latest version of JavaCV and ffmpeg, with 64-bit support, has this issue fixed already: ```gradle dependencies { ... def javacvVersion = '1.4.2' def ffmpegVersion = '4.0.1' compile(group: 'org.bytedeco',...

Try to use `AudioRecord#setPositionNotificationPeriod/setNotificationMarkerPosition` with `AudioRecord#setRecordPositionUpdateListener` to precisely record audio.

By the time you can "hit the resume button", all the heavy lifting initializing work should have been done. As you can see in the `resumeRecording` method, nothing should block....

You can make the preview TextureView fullscreen as long as you can find a supported preview size of the camera which has matching width-height ratio, otherwise the preview will be...

Not enough info, is there any error outputed in logcat?