mrousavy / react-native-vision-camera

๐Ÿ“ธ A powerful, high-performance React Native Camera library.
https://react-native-vision-camera.com
MIT License
7.07k stars 1.04k forks source link

๐Ÿ› Recording video duration incorrect #2497

Open JaxonLee0710 opened 6 months ago

JaxonLee0710 commented 6 months ago

What's happening?

I wanted video recording app with pause/resume. Of course video recording is perfect. But there is some issue on video recording duration. For example, start record pause record after 1 second. resume record after 5 seconds. stop record after 2 seconds. Expected video duration is 3 seonds. But onRecordingFinished callback return video object with 8 seconds duration.

Reproduceable Code

const recordTest = async () => {
   console.log(cameraDevice);
   // Start
   let timeRecord = moment().unix();
   await _camera.current.startRecording({
      onRecordingError: () => {},
      onRecordingFinished: video => {
         console.log(video);
      },
   });
   console.log(`start record ${moment().unix() - timeRecord}s`);
   await timeout(1000);
   // Pause
   await _camera.current.pauseRecording();
   console.log(`pause record ${moment().unix() - timeRecord}s`);
   await timeout(5000);
   // Resume
   await _camera.current.resumeRecording();
   console.log(`resume record ${moment().unix() - timeRecord}s`);
   await timeout(2000);
   // Stop
   const video = await _camera.current.stopRecording();
   console.log(`finish record ${moment().unix() - timeRecord}s`);
};

Relevant log output

LOG  start record 0s
 LOG  pause record 1s
 LOG  resum record 7s
 LOG  {"duration": 8.74, "height": 960, "path": "/data/user/0/com.testvisioncamera.dev/cache/mrousavy3304552134792529569.mov", "width": 1280}
 LOG  finish record 10s

Camera Device

{ 
    "formats": [] //36,hardwareLevel:
    'hardwareLevel':limited',
    hasFlash: false
    hasTorch: false
    id:'0'
    isMultiCam: false
    maxExposure:9
    maxZoom: 10
    minExposure:-9
    minFocusDistance: NaN
    minZoom: 1
    name:'BACK (0)'
    neutralZoom: 1
    physicalDevices: (1) ['telephoto-camera']
    position: 'back'
    sensorOrientation: 'landscape-right'
    supportsFocus: true
    supportsLowLightBoost: false
}

Device

AVD emulator(api 33)

VisionCamera Version

3.8.2

Can you reproduce this issue in the VisionCamera Example app?

Yes, I can reproduce the same issue in the Example app here

Additional information

mrousavy commented 6 months ago

Hey! Thanks for the issue report.

You didn't put the native adb / Xcode logs in here so it's impossible for me to figure out when exactly the start/stop happened. I need those logs. Maybe I need to do some timestamp correction, but not sure how that'd work on Android. Can you also test on iOS please?

Also, unrelated but why is minFocusDistance NaN ๐Ÿคจ

JaxonLee0710 commented 6 months ago

Thanks @mrousavy .

This is my adb logcat. I can't test on IOS, but I think that's same.

02-02 10:39:34.870   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:34.874  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:34.875   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:34.880   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:34.889   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:34.892   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:34.915   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:34.919   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:34.952   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:34.961   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:34.978   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:34.978   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:34.979   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:34.983   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:34.987  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:34.996   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:34.996   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.004   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.010   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.012   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.014   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.017  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:35.017   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.021   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.021   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.025   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.027   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.027   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.072   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.125   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.147   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.148   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.154  3469  7142 D TrafficStats: tagSocket(216) with statsTag=0x90000, statsUid=-1
02-02 10:39:35.156   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.163   376  7143 I resolv  : GetAddrInfoHandler::run: {101 262245 101 983141 10175 0}
02-02 10:39:35.167   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.171   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.171   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.175   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.176   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.181   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.188   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.190   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.192   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.195   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.195  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:35.196   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.198   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.199   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.201   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.203   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.207   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.271   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.273  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:35.306   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.310   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.312   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.336   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.340   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.343   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.344  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:35.346   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.349   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.351   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.359   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.360   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.364   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.364   421  6708 W AudioFlinger: RecordThread: buffer overflow
02-02 10:39:35.365   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.367   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.368   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.371   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.399   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.426   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.497   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.498   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.511   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.516   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.519   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.523   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.527   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.528   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.531   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.531  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:35.532   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.536   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.538  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:35.539   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.540   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.541   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.543   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.570   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.570   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.571   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.606   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.680  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:35.683   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.684   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.692   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.693   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.697   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.699   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.704  3469  3955 D EGL_emulation: app_time_stats: avg=96.07ms min=38.32ms max=186.42ms count=11
02-02 10:39:35.708  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:35.710   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.711   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.728   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.729   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.763   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.763   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.763   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.800  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:35.841   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.868   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.869   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.872   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.874   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.876   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:35.880   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.886  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:35.887   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.890   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.892   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.906   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:35.965   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.028   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.030  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.031   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.040   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.042   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.045  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.048   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.056   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.056   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.059   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.060   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.061   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.064   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.064   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.067   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.092   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.094   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.095   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.151   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.177  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.178   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.180   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.184   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.185   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.188   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.195  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.198   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.200   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.206   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.211   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.239   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.240   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.240   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.242   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.267   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.268   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.292  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.316   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.318   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.318   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.321   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.322   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.325   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.329  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.332   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.335   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.347   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.356   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.435  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.464   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.465   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.468   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.471   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.475   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.476   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.477  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.480   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.483   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.487   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.491   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.494   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.494   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.521   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.545  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.547   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.598   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.602   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.604   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.612  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.612   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.613   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.618   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.628   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.679   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.683   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.683   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.706   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.727  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.729  3469  3955 D EGL_emulation: app_time_stats: avg=72.94ms min=4.63ms max=147.94ms count=14
02-02 10:39:36.733   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.735   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.739   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.744  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.745   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.747   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.748   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.751   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.759   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.766   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.812   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.872   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.888   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.896  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.907   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.908   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.909   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.912   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.917   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:36.918  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:36.925   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.933   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.963   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.984   486  2298 D BufferPoolAccessor2.0: evictor expired: 1, evicted: 0
02-02 10:39:36.986   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:36.986   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.040   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.047   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.068   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.073  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:37.083   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.085  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:37.091   425   527 W TransactionTracing: Could not find layer id -1
02-02 10:39:37.091   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.092   425   527 W TransactionTracing: Could not find layer id -1
02-02 10:39:37.099   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.111   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.123   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.130   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.134   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.136  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:37.143   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.147   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.293   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.296   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.301  3469  7144 D TrafficStats: tagSocket(216) with statsTag=0x90000, statsUid=-1
02-02 10:39:37.302   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.307  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:37.316   376  7145 I resolv  : GetAddrInfoHandler::run: {101 262245 101 983141 10175 0}
02-02 10:39:37.317   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.324   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.327   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.328   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.330   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.330   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.333   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.334   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.335   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.338   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.339   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.341   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.343   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.345   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.346   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.391   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.438   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.438   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.443   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.444  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:37.447   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.449   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.457   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.460   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.463  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:37.464   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.466   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.470   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.470   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.473   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.474   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.476   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.479   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.481   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.482   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.499  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:37.502   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.503   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.554   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.557   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.616  3469  3469 D CameraView: Finding view 2417...
02-02 10:39:37.617   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.617  3469  3469 D CameraView: Found view 2417!
02-02 10:39:37.620  3469  3596 I RecordingSession: Resuming Recording Session..
02-02 10:39:37.627   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.632   486  7112 I MediaCodecSource: MediaCodecSource (audio) resuming
02-02 10:39:37.641   486  7113 D CCodec  : ISConfig timeOffset -4796753us
02-02 10:39:37.648   486  7113 D CCodecConfig: no c2 equivalents for time-offset-us
02-02 10:39:37.649   486  7113 D CCodecConfig: no recognized params in: Dict {
02-02 10:39:37.649   486  7113 D CCodecConfig: }
02-02 10:39:37.650   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.704   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.734   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.741   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.745   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.749   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.752   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.752  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:37.757  3469  3955 D EGL_emulation: app_time_stats: avg=93.13ms min=8.39ms max=256.94ms count=11
02-02 10:39:37.760   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.765  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:37.767   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.767   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.769   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.770   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.775   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.776   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.778   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.780   491   491 D BufferPoolAccessor2.0: bufferpool2 0x75dd31459098 : 0(0 size) total buffers - 0(0 size) used buffers - 21/25 (recycle/alloc) - 6/25 (fetch/transfer) 
02-02 10:39:37.781   491   491 D BufferPoolAccessor2.0: bufferpool2 0x75dd3145cf08 : 0(0 size) total buffers - 0(0 size) used buffers - 4/6 (recycle/alloc) - 2/6 (fetch/transfer)    
02-02 10:39:37.781   491   491 D BufferPoolAccessor2.0: bufferpool2 0x75dd3145ccb8 : 0(0 size) total buffers - 0(0 size) used buffers - 5/7 (recycle/alloc) - 2/7 (fetch/transfer)    
02-02 10:39:37.781   491   491 D BufferPoolAccessor2.0: bufferpool2 0x75dd3145b598 : 1(1843200 size) total buffers - 0(0 size) used buffers - 3/4 (recycle/alloc) - 1/4 (fetch/transfer)
02-02 10:39:37.781   491   491 D BufferPoolAccessor2.0: bufferpool2 0x75dd31465778 : 0(0 size) total buffers - 0(0 size) used buffers - 0/0 (recycle/alloc) - 0/0 (fetch/transfer)
02-02 10:39:37.805   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.805   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.805   486  7120 D BufferPoolAccessor2.0: bufferpool2 0x764b5e62e748 : 5(10240 size) total buffers - 4(8192 size) used buffers - 1/6 (recycle/alloc) - 1/3 (fetch/transfer)
02-02 10:39:37.807   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.807   491  7121 I C2SoftAacEnc: Correcting overlapping timestamp: last frame ended at 22254us but current frame is starting at -1212412us. Using the last frame's end timestamp
02-02 10:39:37.807   486  6061 D BufferPoolAccessor2.0: bufferpool2 0x764b5e629d48 : 4(32768 size) total buffers - 4(32768 size) used buffers - 18/28 (recycle/alloc) - 10/27 (fetch/transfer)
02-02 10:39:37.807   486  6061 D BufferPoolAccessor2.0: bufferpool2 0x764b5e625a38 : 4(25165824 size) total buffers - 4(25165824 size) used buffers - 12/18 (recycle/alloc) - 6/18 (fetch/transfer)
02-02 10:39:37.808   486  6061 D BufferPoolAccessor2.0: bufferpool2 0x764b5e626818 : 4(8192 size) total buffers - 4(8192 size) used buffers - 14/19 (recycle/alloc) - 5/28 (fetch/transfer)
02-02 10:39:37.894   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.901   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.912   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.922   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.932   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.933  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:37.936   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.938   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:37.940   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:37.999   491   825 D BufferPoolAccessor2.0: evictor expired: 3, evicted: 1
02-02 10:39:38.012  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:38.018   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.055   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.118   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.124   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.124   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.128   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.131   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.132   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.135  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:38.136   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.138   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.139   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.143   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.143   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.144   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.146   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.148   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.151   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.152   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.153   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.155   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.158   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.158   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.159   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.160   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.163   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.164   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.166   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.232   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.232   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.272   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.275   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.278  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:38.280   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.282   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.283   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.286   486  7112 I MediaCodecSource: MediaCodecSource (video) resuming
02-02 10:39:38.287   486  7113 D CCodecConfig: c2 config diff is   c2::u32 coding.request-sync-frame.value = 1
02-02 10:39:38.290   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.292   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.293   486  7113 D CCodec  : ISConfig resume at 1607628351us
02-02 10:39:38.294   486  7113 D CCodecConfig: no recognized params in: Dict {
02-02 10:39:38.294   486  7113 D CCodecConfig: }
02-02 10:39:38.298  3469  6241 I ReactNativeJS: '[2024-02-02 @ 10:39:38.297] Log :  ', 'resume record 7s'
02-02 10:39:38.307   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.307   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.309   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.309   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.313   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.316   486  7126 I MPEG4Writer: setStartTimestampUs: 20803
02-02 10:39:38.316   486  7126 I MPEG4Writer: Earliest track starting time: 20803
02-02 10:39:38.318   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.325   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.325  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:38.329   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.330   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.398   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.510   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.535   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.537   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.548   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.550   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.557   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.562   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.563   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.569   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.570   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.574   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.577   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.582   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.585   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.592   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.594   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.594   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.597   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.601   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.603   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.604   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.607   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.612   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.615   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.616  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:38.617   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.619   486  7114 D CCodecBuffers: [c2.android.avc.encoder#277:Output[N]] popFromStashAndRegister: at 1168519us, output format changed to AMessage(what = 0x00000000) = {02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t bitrate = 12000000
02-02 10:39:38.619   486  7114 D CCodecBuffers:   Rect crop(0, 0, 959, 1279)
02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t color-standard = 1
02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t color-range = 2
02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t color-transfer = 3
02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t frame-rate = 30
02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t height = 1280
02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t intra-refresh-period = 0
02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t level = 4096
02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t max-bitrate = 12000000
02-02 10:39:38.619   486  7114 D CCodecBuffers:   string mime = "video/avc"
02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t profile = 65536
02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t video-qp-average = 0
02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t width = 960
02-02 10:39:38.619   486  7114 D CCodecBuffers:   Buffer csd-0 = {
02-02 10:39:38.619   486  7114 D CCodecBuffers:     00000000:  00 00 00 01 67 42 c0 29  8d 68 0f 00 a1 a4 20 20  ....gB.).h....
02-02 10:39:38.619   486  7114 D CCodecBuffers:     00000010:  20 20 f0 88 46 a0 00 00  00 01 68 ce 01 a8 35 c8    ..F.....h...5.
02-02 10:39:38.619   486  7114 D CCodecBuffers:   }
02-02 10:39:38.619   486  7114 D CCodecBuffers:   int32_t android._dataspace = 281083904
02-02 10:39:38.619   486  7114 D CCodecBuffers:   Buffer csd-1 = {
02-02 10:39:38.619   486  7114 D CCodecBuffers:     00000000:  00 00 00 01 68 ce 01 a8  35 c8                    ....h...5.
02-02 10:39:38.619   486  7114 D CCodecBuffers:   }
02-02 10:39:38.619   486  7114 D CCodecBuffers: }
02-02 10:39:38.623   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.626   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.629   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.630   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.632   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.635   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.636   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.639   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.641  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:38.642   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.649   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.659   486  7112 W Utils   : Inconsisted profile/level found in SPS: 42,ffffffc0,29 vs ce,1,a8
02-02 10:39:38.660   486  7124 I MPEG4Writer: setStartTimestampUs: 1168519
02-02 10:39:38.665   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.665   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.725   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.725   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.726   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.748   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.749   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.750  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:38.756   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.757   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.760   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.761   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.767   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.771   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.774  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:38.775   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.814   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.816   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.817   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:38.831  3469  3955 D EGL_emulation: app_time_stats: avg=107.28ms min=12.17ms max=301.11ms count=10
02-02 10:39:38.832   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.873   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.876   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.940   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.997   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:38.999   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.001   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.028   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.032   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.057  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:39.072   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.094   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.100   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.101   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.105  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:39.111   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.115   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.119   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.123   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.126   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.128  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:39.128   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.137   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.142   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.144   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.146   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.148   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.149   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.151   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.153   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.155   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.184   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.222   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.261   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.314   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.382   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.384  3469  7158 D TrafficStats: tagSocket(147) with statsTag=0x90000, statsUid=-1
02-02 10:39:39.391   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.394   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.396   376  7159 I resolv  : GetAddrInfoHandler::run: {101 262245 101 983141 10175 0}
02-02 10:39:39.397  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:39.397   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.404   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.408   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.415   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.416   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.416   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.419   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.450   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.547   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.560  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:39.569   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.578   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.621   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.627   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.670   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.679   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.681   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.682   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.692   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.700   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.702   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.703   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.707   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.715   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.717   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.721   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.724   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.726   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.727   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.730   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.730   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.733   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.736   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.739   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.741   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.744   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.744   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.753   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.757   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.763   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.764   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.765   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.769   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.769   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.769   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.773   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.776   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.779  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:39.779   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.783   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.786   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.787   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.813   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.814   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.853   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.925   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.939  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:39.951  3469  3955 D EGL_emulation: app_time_stats: avg=141.12ms min=4.44ms max=278.88ms count=7
02-02 10:39:39.961   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.967   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.967   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.974   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.974   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.976   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.980   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.981   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.984   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.986   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:39.988   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:39.992   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.019   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.046  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:40.099   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.100   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.102   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.103   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.107   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.111   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.113   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.115   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.119   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.120   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.123   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.125   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.128   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.129   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.130   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.132   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.135   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.138   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.143   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.196   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.283   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.329   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.354  3469  3469 D CameraView: Finding view 2417...
02-02 10:39:40.354  3469  3469 D CameraView: Found view 2417!
02-02 10:39:40.355  3469  3596 I RecordingSession: Stopping RecordingSession..
02-02 10:39:40.357  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:40.360   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.365   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.367   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.370   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.370   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.375   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.376   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.376   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.379   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.380   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.383   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.384   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.387   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.388   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.389   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.394   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.396   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.399  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:40.400   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.408   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.410   421  6708 W AudioFlinger: RecordThread: buffer overflow
02-02 10:39:40.410   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.417   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.417   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.420   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.420   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.447   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.485   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.557   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.563   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.622   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.640   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.664   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.664   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.670   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.670  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:40.671   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.671   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.676   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.681   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.683   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.686   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.686   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.687   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.692   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.696   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.698   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.701   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.702  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:40.708   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.716   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.717   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.720   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.720   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.720   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.774   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.796   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.799   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.801   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.810   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.811   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.814   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.816   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.819   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.822   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.823   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.826   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.827   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.830   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.831   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.831   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.833   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.834   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.839   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.840   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.843   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.843  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:40.865   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.866   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.867   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.871   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.900   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.900   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.917   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.919   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.931   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.934   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.942   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.948   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.982   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:40.982   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:40.985   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.023   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.025  3469  3955 D EGL_emulation: app_time_stats: avg=168.28ms min=9.62ms max=354.60ms count=6
02-02 10:39:41.035   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.037  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:41.043   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.081   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.083   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.098   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.124   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.125   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.127   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.168   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.171   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.174   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.177  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:41.178   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.179   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.182   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.184   486  7119 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.194   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.202  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:41.209   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.211   486  7113 D CCodec  : ISConfig stop at 1610366696us delayUs=-826894us
02-02 10:39:41.212   486  7113 D CCodecConfig: no c2 equivalents for stop-time-us
02-02 10:39:41.213   486  7113 D CCodecConfig: no recognized params in: Dict {
02-02 10:39:41.213   486  7113 D CCodecConfig: }
02-02 10:39:41.214   486  2621 D MPEG4Writer: reset()
02-02 10:39:41.214   486  2621 D MPEG4Writer: Video track stopping. Stop source
02-02 10:39:41.215   486  2621 D MPEG4Writer: Video track source stopping
02-02 10:39:41.215   486  7112 I MediaCodecSource: puller (audio) reached EOS
02-02 10:39:41.226   486  7126 V MediaWriter: Track event err/info msg:101, trackId:2, type:1000,val:-1011
02-02 10:39:41.226   486  7126 I MPEG4Writer: Received total/0-length (19/0) buffers and encoded 18 frames. - Audio
02-02 10:39:41.226   486  7126 I MPEG4Writer: Audio track drift time: 0 us
02-02 10:39:41.227  3469  3469 I RecordingSession: MediaRecorder Info: 536871912 (-1011)
02-02 10:39:41.230   486  7120 D CCodecBufferChannel: [c2.android.aac.encoder#356] MediaCodec discarded an unknown buffer
02-02 10:39:41.230   486  7120 D CCodecBufferChannel: [c2.android.aac.encoder#356] MediaCodec discarded an unknown buffer
02-02 10:39:41.230   486  7120 D CCodecBufferChannel: [c2.android.aac.encoder#356] MediaCodec discarded an unknown buffer
02-02 10:39:41.230   486  7120 D CCodecBufferChannel: [c2.android.aac.encoder#356] MediaCodec discarded an unknown buffer
02-02 10:39:41.230   486  7120 D CCodecBufferChannel: [c2.android.aac.encoder#356] MediaCodec discarded an unknown buffer
02-02 10:39:41.230   486  7120 D CCodecBufferChannel: [c2.android.aac.encoder#356] MediaCodec discarded an unknown buffer
02-02 10:39:41.233   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.238   491   899 I hw-BpHwBinder: onLastStrongRef automatically unlinking death recipients
02-02 10:39:41.238   486  7120 I hw-BpHwBinder: onLastStrongRef automatically unlinking death recipients
02-02 10:39:41.243   486  7112 I MediaCodecSource: encoder (audio) stopped
02-02 10:39:41.245  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:41.247  3469  3955 W GraphicBufferSource: onFrameAvailable: EOS is sent, ignoring frame
02-02 10:39:41.252   383   383 E android.hardware.audio@7.1-impl.ranchu: device/generic/goldfish/audio/stream_in.cpp:updateSinkMetadata:364 failure: Result::NOT_SUPPORTED
02-02 10:39:41.255   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.260   486  7112 I MediaCodecSource: source (audio) stopped
02-02 10:39:41.262   486  7112 I MediaCodecSource: encoder (video) stopping
02-02 10:39:41.265  3469  5112 E GraphicBufferSource: EOS was already signaled
02-02 10:39:41.296   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.335   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.458   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.465   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.474   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.482   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.482   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.483  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:41.484  3469  3955 W GraphicBufferSource: onFrameAvailable: EOS is sent, ignoring frame
02-02 10:39:41.491   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.495   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.500  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:41.501  3469  7179 D TrafficStats: tagSocket(291) with statsTag=0x90000, statsUid=-1
02-02 10:39:41.502   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.511   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.513   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.516   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.520   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.572   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.574  3469  3955 W GraphicBufferSource: onFrameAvailable: EOS is sent, ignoring frame
02-02 10:39:41.613   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.660   376  7183 I resolv  : GetAddrInfoHandler::run: {101 262245 101 983141 10175 0}
02-02 10:39:41.669   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.685   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.712  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:41.738   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.802   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.806   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.812   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.818   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.827   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.828  3469  3955 W GraphicBufferSource: onFrameAvailable: EOS is sent, ignoring frame
02-02 10:39:41.836   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.841  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:41.844  3469  3955 W GraphicBufferSource: onFrameAvailable: EOS is sent, ignoring frame
02-02 10:39:41.848   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.851   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.853  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:41.854   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.854  3469  3955 W GraphicBufferSource: onFrameAvailable: EOS is sent, ignoring frame
02-02 10:39:41.883   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.883   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.968   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.975   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.982   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.984   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:41.987   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:41.991   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.093  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:42.134   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.147   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.156   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.168   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.173   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.176   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.179   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.183   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.187   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.190   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.191   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.197   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.199  3469  3955 W GraphicBufferSource: onFrameAvailable: EOS is sent, ignoring frame
02-02 10:39:42.200  3469  3955 D EGL_emulation: app_time_stats: avg=111.93ms min=7.19ms max=343.91ms count=10
02-02 10:39:42.202   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.204   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.204   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.206   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.232   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.266   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.279   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.286   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.272   486  7112 D MediaCodecSource: source (video) stopping stalled
02-02 10:39:42.292   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.296   486  7124 V MediaWriter: Track event err/info msg:101, trackId:1, type:1000,val:-1011
02-02 10:39:42.297   486  7124 I MPEG4Writer: Received total/0-length (17/0) buffers and encoded 13 frames. - Video
02-02 10:39:42.305   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.307   486  7113 D CCodecBufferChannel: [c2.android.avc.encoder#277] MediaCodec discarded an unknown buffer
02-02 10:39:42.311   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.314   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.319   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.325   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.329   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.333   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.337   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.343  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:42.344  3469  3955 W GraphicBufferSource: onFrameAvailable: EOS is sent, ignoring frame
02-02 10:39:42.453  3469  3492 W cialrapture.dev: Long monitor contention with owner main (3469) at android.os.Message android.os.MessageQueue.next()(MessageQueue.java:364) waiters=0 in boolean android.os.MessageQueue.enqueueMessage(android.os.Message, long) for 152ms
02-02 10:39:42.470  3469  3469 I RecordingSession: MediaRecorder Info: 268436456 (-1011)
02-02 10:39:42.471   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.486  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:42.486   486  7114 I hw-BpHwBinder: onLastStrongRef automatically unlinking death recipients
02-02 10:39:42.487   491  1172 I hw-BpHwBinder: onLastStrongRef automatically unlinking death recipients
02-02 10:39:42.489   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.496   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.498  3469  3955 W GraphicBufferSource: onFrameAvailable: EOS is sent, ignoring frame
02-02 10:39:42.501   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.502   486  7112 I MediaCodecSource: encoder (video) stopped
02-02 10:39:42.503   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.503   486  7112 I MediaCodecSource: source (video) stopped
02-02 10:39:42.504   486  2621 D MPEG4Writer: Video track source stopped
02-02 10:39:42.507   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.508   486  2621 D MPEG4Writer: Video track stopped. Status:0. Stop source
02-02 10:39:42.509   486  2621 D MPEG4Writer: Audio track stopping. Stop source
02-02 10:39:42.510   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.512   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.513   486  2621 D MPEG4Writer: Audio track source stopping
02-02 10:39:42.513   486  7112 I MediaCodecSource: encoder (audio) stopping
02-02 10:39:42.515   486  7112 I MediaCodecSource: encoder (audio) already stopped
02-02 10:39:42.515   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.515   486  2621 D MPEG4Writer: Audio track source stopped
02-02 10:39:42.515   486  2621 D MPEG4Writer: Audio track stopped. Status:0. Stop source
02-02 10:39:42.516   486  2621 D MPEG4Writer: Duration from tracks range is [417947, 3470039] us
02-02 10:39:42.517   486  7122 D MPEG4Writer: 0 chunks are written in the last batch
02-02 10:39:42.519  3469  3955 I VideoPipeline: Rendering to RecordingSession..
02-02 10:39:42.521   383  6717 W android.hardware.audio@7.1-impl.ranchu: TinyalsaSource::read:143 pcm_read was late delivering frames, inserting 15238 us of silence
02-02 10:39:42.523  3469  3955 W GraphicBufferSource: onFrameAvailable: EOS is sent, ignoring frame
02-02 10:39:42.525   486  2621 D MPEG4Writer: WriterThread stopped. Status:0
02-02 10:39:42.525   486  2621 I MPEG4Writer: Adjust the moov start time from 20803 us -> 20803 us
02-02 10:39:42.525   486  2621 I MPEG4Writer: MOOV atom was written to the file
02-02 10:39:42.526   486  2621 D MPEG4Writer: release()
02-02 10:39:42.526   486  2621 D MPEG4Writer: ftruncate mPreAllocateFileEndOffset:897715 mOffset:1521 mMdatEndOffset:869330 diff:28385
02-02 10:39:42.538   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.539   486  2621 D MPEG4Writer: final fsync() takes 12 ms, file size 869330
02-02 10:39:42.540   486  2621 D MPEG4Writer: MP4WtrCtrlHlpLooper stopped
02-02 10:39:42.542   486  2621 D MPEG4Writer: Top 5 write durations(microseconds): #1:396 #2:490 #3:496 #4:2386 #5:127907
02-02 10:39:42.542   486  2621 D MPEG4Writer: reset()
02-02 10:39:42.542   486  2621 D MPEG4Writer: Video track stopping. Stop source
02-02 10:39:42.543   486  2621 E MPEG4Writer: Stop() called but track is not started or stopped
02-02 10:39:42.544   486  2621 D MPEG4Writer: Audio track stopping. Stop source
02-02 10:39:42.545   486  2621 E MPEG4Writer: Stop() called but track is not started or stopped
02-02 10:39:42.549   486  2621 W StagefrightRecorder: stop while neither recording nor paused
02-02 10:39:42.553  3469  3596 I CameraSession: Updating Video Outputs...
02-02 10:39:42.554  3469  3596 I VideoPipeline: Removing FrameProcessor Output...
02-02 10:39:42.554  3469  3596 I VideoPipeline: Removing RecordingSession Output...
02-02 10:39:42.555  3469  3596 I OpenGLRenderer: Destroying OpenGL Surface...
02-02 10:39:42.556  3469  3596 E Surface : freeAllBuffers: 1 buffers were freed while being dequeued!
02-02 10:39:42.558  3469  6241 I ReactNativeJS: '[2024-02-02 @ 10:39:42.554] Log :  ', { height: 960,
02-02 10:39:42.558  3469  6241 I ReactNativeJS:   width: 1280,
02-02 10:39:42.558  3469  6241 I ReactNativeJS:   duration: 10.238,
02-02 10:39:42.558  3469  6241 I ReactNativeJS:   path: '/data/user/0/com.testvisioncamera.dev/cache/mrousavy4746462310022916651.mov' }
02-02 10:39:42.563  3469  3596 W GraphicBufferSource: released unpopulated slots: [13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63]
02-02 10:39:42.564   486  6707 W AudioSource: AudioRecord reported overrun!
02-02 10:39:42.566  3469  6241 I ReactNativeJS: '[2024-02-02 @ 10:39:42.564] Log :  ', 'finish record 11s' 
mrousavy commented 6 months ago
  1. Format your logs please. Three backticks (```)
  2. I can't test on IOS, but I think that's same.

    I doubt that. iOS is a completely different implementation in a completely different language and environment, it is not the same. If it's the same that'd honestly surprise me.

JaxonLee0710 commented 6 months ago

Video is correctly recorded, but only duration time(result of onFinishRecording callback) is problem. So I think that's not considered.

stevenkang12 commented 3 months ago

We're also running into the same issue. During the pause, the full video includes the pause time with a still frame. I also found that the audio that gets captured after resuming gets overlayed onto the pause time still frames.

lee-byeoksan commented 2 months ago

@stevenkang12 maybe related to #2790

mrousavy commented 1 month ago

Hey all!

I just spent a few days on thinking about a battleproof timestamp synchronization solution, and I came up with a great idea. I built a TrackTimeline helper class which represents a video or audio track - it can be started & stopped, paused & resumed, and even supports nesting pauses without issues.

This was really complex to built as I had to synchronize timestamps between capture sessions, and the entire thing is a producer model - a video buffer can come like a second or so later than the audio buffer, but I need to make sure the video track starts before the audio track starts, and ends after the audio track ends - that's a huge brainf*ck! ๐Ÿคฏ๐Ÿ˜…

There's also no helper APIs for this on iOS, and it looks like no other Camera framework (not even native Swift/ObjC iOS Camera libraries) support this - they all break when timestamps have a delay (e.g. video stabilization enabled) (or dont even support delays at all) ; so I had to build the thing myself.

Check out this PR and try if it fixes the issue for you; https://github.com/mrousavy/react-native-vision-camera/pull/2948

Thanks! โค๏ธ