Fixed
Status Update
Comments
yl...@gmail.com <yl...@gmail.com> #2
Same here. I have links in a local html file referencing file:///android_res/drawable/ and on all gradle build flavors using another applicationId (added suffix) the Webview only shows broken links.
This behaviour seems not to be connected solely to Android 5.0 since it occurs on Android 4.4.4 too (tested with current cyanogenmod 11 build).
This behaviour seems not to be connected solely to Android 5.0 since it occurs on Android 4.4.4 too (tested with current cyanogenmod 11 build).
wu...@google.com <wu...@google.com> #3
As a hotfix I added the following code to the gradle buildscript, which generates an additional R.java with changed java package for every flavor. I don't like this solution though.
android.applicationVariants.all{ variant ->
variant.javaCompile.doFirst{
copy {
from "${buildDir}/generated/source/r/${variant.dirName}/com/example/application/R.java"
into "${buildDir}/generated/source/r/${variant.dirName}/com/example/application/${variant.buildType.name }/"
}
File rFile = file("${buildDir}/generated/source/r/${variant.dirName}/com/example/application/${variant.buildType.name }/R.java")
String content = rFile.getText('UTF-8')
String newPackageName = "com.example.application.${variant.buildType.name }";
content = content.replaceAll(/com.example.application/, newPackageName)
rFile.write(content, 'UTF-8')
}
}
android.applicationVariants.all{ variant ->
variant.javaCompile.doFirst{
copy {
from "${buildDir}/generated/source/r/${variant.dirName}/com/example/application/R.java"
into "${buildDir}/generated/source/r/${variant.dirName}/com/example/application/${
}
File rFile = file("${buildDir}/generated/source/r/${variant.dirName}/com/example/application/${
String content = rFile.getText('UTF-8')
String newPackageName = "com.example.application.${
content = content.replaceAll(/com.example.application/, newPackageName)
rFile.write(content, 'UTF-8')
}
}
le...@google.com <le...@google.com> #4
I've recenly encountered this issue and I must say it's quite a nuisance. Searched half of the Internet just to find out that the problem lies in Gradle's applicationIdSuffix :). I think this bug should be reported to Android SDK Build Tools devs, because only they can do something about it.
yl...@gmail.com <yl...@gmail.com> #5
IMHO it's the case of Android platform problem. Resources are packed, WebView tries to load them from wrong place. It's not build tools that put them in wrong place.
And by the way it's very frustrating bug.
And by the way it's very frustrating bug.
le...@google.com <le...@google.com> #6
[Comment deleted]
yl...@gmail.com <yl...@gmail.com> #7
[Comment deleted]
le...@google.com <le...@google.com> #8
The applicationIdSuffix/packageName/etc seem to be a Gradle-specific concept that applies only at build time.
At runtime, the only way WebView has to identify your app is the actual package name of the APK, and that will be the full string with the suffix included. The package that was used at compile time when generating the R class is not stored in the APK, and there's not really any way for WebView to know what it was as far as I know.
At runtime, the only way WebView has to identify your app is the actual package name of the APK, and that will be the full string with the suffix included. The package that was used at compile time when generating the R class is not stored in the APK, and there's not really any way for WebView to know what it was as far as I know.
le...@google.com <le...@google.com> #9
[Comment deleted]
yl...@gmail.com <yl...@gmail.com> #10
Isn't the package name attribute in the root node of the AndroidManifest preserved when an app is packaged? That would be the correct package to use when loading the R class
le...@google.com <le...@google.com> #11
I don't think so. You could check what's actually in your packaged APK with "aapt dump xmltree <apkfilename> AndroidManifest.xml" - if it's not there, then WebView can't get to it at runtime either.
I haven't actually checked this as I don't have an android studio project handy currently (will try soon) but I suspect that Gradle passes the app name with the suffix appended to aapt with --package-name, which causes aapt to replace the name specified in your manifest with the one on the command line. The original name doesn't end up in the APK at all.
I haven't actually checked this as I don't have an android studio project handy currently (will try soon) but I suspect that Gradle passes the app name with the suffix appended to aapt with --package-name, which causes aapt to replace the name specified in your manifest with the one on the command line. The original name doesn't end up in the APK at all.
yl...@gmail.com <yl...@gmail.com> #12
OK, I tried this out in Gradle to check what the terms that it uses really correspond to when building a package, and also read the docs at http://tools.android.com/tech-docs/new-build-system/applicationid-vs-packagename
This has confirmed what I wrote in my previous comments, unfortunately. What Gradle calls the package name (the name of the package that your Java sources and R class are stored in) is *not* the APK's actual package name that gets set at build time, and is *not* stored anywhere at all or accessible at runtime whatsoever. The APK is solely identified by the application ID with the suffix added, and the original package name is overwritten in the manifest. Android itself does not have this concept of the package name and application ID being separate; it's just a build-time trick Gradle is doing for you.
So, unfortunately, it doesn't look like there is any way for WebView to reliably know where your R class is. We might be able to add an API for the app to specify this in a future version (though I'm not entirely sure how that would actually work; it'd probably have to be a static method on WebView?), but that won't help you for existing OS versions, we can't add new APIs retroactively.
I think your only short-term options are to not use applicationIdSuffix or to not use file:///android_res/ in WebView. You could instead use a different URL (one that isn't handled by WebView itself), intercept it with shouldInterceptRequest, and provide the data by reading it from your resources yourself. I understand that that's not very convenient, but it seems like the only actual option here that works right now.
One thing WebView could do which would work in *some* cases is to just try to strip off components from the package name if the R class isn't found, going up one package at a time until we find it. That would work if you've just added a suffix like ".debug" - we'd fail to find com.example.debug.R and then try com.example.R instead. That still wouldn't work for any case where the package name is totally different, though (which gradle permits you to do). I'll look into whether this is safe to do and if so we could maybe add this in a future webview update, but it still won't fix the problem for users of pre-Lollipop Android versions (who don't get WebView updates), or for users who just don't have the latest webview update installed, so you're going to have to work around this problem in your app anyway to continue supporting those devices. :/
This has confirmed what I wrote in my previous comments, unfortunately. What Gradle calls the package name (the name of the package that your Java sources and R class are stored in) is *not* the APK's actual package name that gets set at build time, and is *not* stored anywhere at all or accessible at runtime whatsoever. The APK is solely identified by the application ID with the suffix added, and the original package name is overwritten in the manifest. Android itself does not have this concept of the package name and application ID being separate; it's just a build-time trick Gradle is doing for you.
So, unfortunately, it doesn't look like there is any way for WebView to reliably know where your R class is. We might be able to add an API for the app to specify this in a future version (though I'm not entirely sure how that would actually work; it'd probably have to be a static method on WebView?), but that won't help you for existing OS versions, we can't add new APIs retroactively.
I think your only short-term options are to not use applicationIdSuffix or to not use file:///android_res/ in WebView. You could instead use a different URL (one that isn't handled by WebView itself), intercept it with shouldInterceptRequest, and provide the data by reading it from your resources yourself. I understand that that's not very convenient, but it seems like the only actual option here that works right now.
One thing WebView could do which would work in *some* cases is to just try to strip off components from the package name if the R class isn't found, going up one package at a time until we find it. That would work if you've just added a suffix like ".debug" - we'd fail to find com.example.debug.R and then try com.example.R instead. That still wouldn't work for any case where the package name is totally different, though (which gradle permits you to do). I'll look into whether this is safe to do and if so we could maybe add this in a future webview update, but it still won't fix the problem for users of pre-Lollipop Android versions (who don't get WebView updates), or for users who just don't have the latest webview update installed, so you're going to have to work around this problem in your app anyway to continue supporting those devices. :/
le...@google.com <le...@google.com> #13
I've filed http://crbug.com/599869 to track potentially handling the suffix case in the WebView code, but note that as I said, this will only fix it for users with the latest WebView on Android 5.0+ devices, and so you will need to still work around this in your application if you want it to work on any other devices.
yl...@gmail.com <yl...@gmail.com> #14
#11 thanks for explanation
I think the whole scheme file:///android_res/ ideally should be deprecated in favor to android.content.ContentResolver.SCHEME_ANDROID_RESOURCE, which allows specify package and resId and used everywhere in Android except WebView.
http://androidbook.blogspot.ru/2009/08/referring-to-android-resources-using.html
http://stackoverflow.com/a/4855376/1430070
What do you think?
I think the whole scheme file:///android_res/ ideally should be deprecated in favor to android.content.ContentResolver.SCHEME_ANDROID_RESOURCE, which allows specify package and resId and used everywhere in Android except WebView.
What do you think?
le...@google.com <le...@google.com> #15
Perhaps, but again, we can't add that for existing users without updatable WebView versions, so even if we did add it, it wouldn't really solve the problem for your apps since ~2/3 of the android device population doesn't get webview updates yet: http://developer.android.com/about/dashboards/index.html
ap...@google.com <ap...@google.com> #16
WebView 53 and onward will attempt to strip package name components from the app package name until it finds an R class, which will deal with the simplest cases here (applicationIdSuffix appending a suffix to the base name), but not other cases where the package name is unrelated to the R class name.
This won't fix it for users with pre-L android versions, or who don't upgrade to at least WebView 53 once it's released, though, so you will not be able to rely on this as a full workaround :/
This won't fix it for users with pre-L android versions, or who don't upgrade to at least WebView 53 once it's released, though, so you will not be able to rely on this as a full workaround :/
le...@google.com <le...@google.com> #17
Awesome! That updatable webview is one of the best thing you guys have done is the last couple of years!
na...@google.com <na...@google.com> #18
Well, this doesn't really solve your actual problem (for years yet), as I said, since there's still a significant population of pre-L devices that you probably want to keep supporting, and not all L+ devices will ever get upgraded to a sufficiently recent WebView, but yes, the fact that we can do this at all is useful :)
Description
CAMERAX VERSION 1.3.0-beta02
CAMERA APPLICATION NAME AND VERSION: (Settings > Apps > (app name) > version)
ANDROID OS BUILD NUMBER: 11 RKQ1.200826.002
DEVICE NAME: Xiaomi Poco X3 NFC also reproduced on Samsung Galaxy S23 Ultra 5G
DESCRIPTION: When trying to implement camerax with audio enabled and mirror mode on front, saved video shows incorrect duration also recorded audio plays in start than a frame freezes. But if we don't enable audio but set mirror mode on everything work as expected, but also if we set audio enabled and don't use mirror mode everything work as expected.
Attached is video recorded with ab
LIST ANY EXPERIMENTAL FEATURES: (As an example - @ExperimentalCamera2Interop)
STEPS TO REPRODUCE:
1. Set mirror mode on video capture builder using setMirrorMode(MIRROR_MODE_ON_FRONT_ONLY)
2. Set audio enabled using withAudioEnabled()
3. Record video using front camera and save it
OBSERVED RESULTS: Video is recorded incorrectly
EXPECTED RESULTS: Video is saved correctly
REPRODUCIBILITY: 10 of 10
ADDITIONAL INFORMATION:
CODE FRAGMENTS (this will help us troubleshoot your issues):
//This is used to initialize VideoCapture<Recorder>
videoCapture =
VideoCapture.Builder(recorder).setMirrorMode(MIRROR_MODE_ON_FRONT_ONLY).build()
//Here we initialize recording
currentRecording = videoCapture.output
.prepareRecording(requireContext(), fileOutputOptions)
.apply {
//Check for audio permissions
if (ActivityCompat.checkSelfPermission(
requireContext(),
Manifest.permission.RECORD_AUDIO
) != PackageManager.PERMISSION_GRANTED
) {
val permissionManager = PermissionManager.from(this@captureVideo)
permissionManager.request(Permission.RecordAudio).checkDetailedPermission {
print(it)
}
return
}
withAudioEnabled()
}
.start(ContextCompat.getMainExecutor(requireContext())) { recordEvent ->
}
LOGCAT :
2023-08-09 11:57:12.428 25354-25354 Recorder net.helloapp.hello D Transitioning Recorder internal state: IDLING --> PENDING_RECORDING
2023-08-09 11:57:12.428 25354-27088 Recorder net.helloapp.hello D Transitioning Recorder internal state: PENDING_RECORDING --> RECORDING
2023-08-09 11:57:12.429 25354-27088 Recorder net.helloapp.hello D Transitioning audio state: IDLING --> ENABLED
2023-08-09 11:57:12.429 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Start
2023-08-09 11:57:12.429 25354-27088 AudioEncoder net.helloapp.hello D Start on 56:06:30.839
2023-08-09 11:57:12.430 25354-27118 AudioSource net.helloapp.hello D Transitioning internal state: CONFIGURED --> STARTED
2023-08-09 11:57:12.431 25354-27110 Codec2Client net.helloapp.hello W query -- param skipped: index = 1342179345.
2023-08-09 11:57:12.431 25354-27110 Codec2Client net.helloapp.hello W query -- param skipped: index = 2415921170.
2023-08-09 11:57:12.432 25354-27110 FMQ net.helloapp.hello E grantorIdx must be less than 3
2023-08-09 11:57:12.432 25354-27110 FMQ net.helloapp.hello E grantorIdx must be less than 3
2023-08-09 11:57:12.432 25354-27110 CCodecBufferChannel net.helloapp.hello D [c2.android.aac.encoder#235] Created input block pool with allocatorID 16 => poolID 19 - OK (0)
2023-08-09 11:57:12.433 25354-27110 CCodecBufferChannel net.helloapp.hello I [c2.android.aac.encoder#235] Created output block pool with allocatorID 16 => poolID 1415 - OK
2023-08-09 11:57:12.433 25354-27110 CCodecBufferChannel net.helloapp.hello D [c2.android.aac.encoder#235] Configured output block pool ids 1415 => OK
2023-08-09 11:57:12.433 25354-27110 CCodecBufferChannel net.helloapp.hello D [c2.android.aac.encoder#235] start: updating output delay 0
2023-08-09 11:57:12.437 25354-25354 VideoCapture net.helloapp.hello D Stream info update: old: StreamInfo{id=90342413, streamState=INACTIVE, inProgressTransformationInfo=null} new: StreamInfo{id=90342413, streamState=ACTIVE, inProgressTransformationInfo=null}
2023-08-09 11:57:12.437 25354-27088 AudioEncoder net.helloapp.hello D Transitioning encoder internal state: CONFIGURED --> STARTED
2023-08-09 11:57:12.437 25354-27088 VideoEncoder net.helloapp.hello D Start on 56:06:30.839
2023-08-09 11:57:12.437 25354-27117 AudioSource net.helloapp.hello D Receive BufferProvider state change: INACTIVE to ACTIVE
2023-08-09 11:57:12.437 25354-27117 AudioSource net.helloapp.hello D startSendingAudio
2023-08-09 11:57:12.438 25354-25354 TorchControl net.helloapp.hello D Unable to enableTorch due to there is no flash unit.
2023-08-09 11:57:12.440 25354-27078 Camera2CameraImpl net.helloapp.hello D {Camera@639ff2[id=1]} Use case androidx.camera.video.VideoCapture-3819593e-17c1-49e4-ba24-b0f8b7f2dd32230230778 UPDATED
2023-08-09 11:57:12.441 25354-27078 UseCaseAttachState net.helloapp.hello D Active and attached use case: [androidx.camera.core.ImageCapture-445dcbdf-2af5-4ede-a4c2-d14e7d26f5b1238450981, androidx.camera.core.Preview-5af36239-635b-4340-af2e-ce600e2f2f60182937884, androidx.camera.video.VideoCapture-3819593e-17c1-49e4-ba24-b0f8b7f2dd32230230778] for camera: 1
2023-08-09 11:57:12.441 25354-27078 CaptureSession net.helloapp.hello D Attempting to submit CaptureRequest after setting
2023-08-09 11:57:12.441 25354-27078 CaptureSession net.helloapp.hello D Issuing request for session.
2023-08-09 11:57:12.442 25354-27078 Camera2Cap...estBuilder net.helloapp.hello D createCaptureRequest
2023-08-09 11:57:12.460 25354-27088 VideoEncoder net.helloapp.hello D Transitioning encoder internal state: CONFIGURED --> STARTED
2023-08-09 11:57:12.460 25354-27088 AudioEncoder net.helloapp.hello D Drop buffer by codec config.
2023-08-09 11:57:12.584 25354-27119 AudioService net.helloapp.hello D broadcastRecorderState:net.helloapp.hello
2023-08-09 11:57:12.589 25354-27088 Recorder net.helloapp.hello W Audio source silenced transitions to the same state false
2023-08-09 11:57:12.592 25354-27110 FMQ net.helloapp.hello E grantorIdx must be less than 3
2023-08-09 11:57:12.595 25354-27083 FMQ net.helloapp.hello E grantorIdx must be less than 3
2023-08-09 11:57:12.597 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.597 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.598 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.598 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.599 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.599 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.605 25354-27088 Recorder net.helloapp.hello D Cached audio data while we wait for video keyframe before starting muxer.
2023-08-09 11:57:12.606 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.606 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.613 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.613 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.615 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.615 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.621 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.621 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.621 25354-27088 Recorder net.helloapp.hello D Cached audio data while we wait for video keyframe before starting muxer.
2023-08-09 11:57:12.625 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.625 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.626 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.626 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.637 25354-27088 Recorder net.helloapp.hello D Cached audio data while we wait for video keyframe before starting muxer.
2023-08-09 11:57:12.638 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.638 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.642 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.642 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.644 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.644 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.645 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.646 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.653 25354-27088 Recorder net.helloapp.hello D Video source has transitioned to state: ACTIVE_STREAMING
2023-08-09 11:57:12.657 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.658 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.659 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.659 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.660 25354-27090 ACodec net.helloapp.hello D dataspace changed to 0x10c10000 (R:2(Limited), P:3(BT601_6_625), M:3(BT601_6), T:3(SMPTE170M)) (R:2(Limited), S:2(BT601_625), T:3(SMPTE_170M))
2023-08-09 11:57:12.661 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.661 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.672 25354-27088 Recorder net.helloapp.hello D Cached audio data while we wait for video keyframe before starting muxer.
2023-08-09 11:57:12.674 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.674 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.680 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.680 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.681 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.681 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.691 25354-27088 Recorder net.helloapp.hello D Cached audio data while we wait for video keyframe before starting muxer.
2023-08-09 11:57:12.696 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.696 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.705 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.706 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.712 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.712 25354-27088 Recorder net.helloapp.hello D Cached audio data while we wait for video keyframe before starting muxer.
2023-08-09 11:57:12.713 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.714 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.714 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.725 25354-27088 VideoEncoder net.helloapp.hello D Drop buffer by codec config.
2023-08-09 11:57:12.728 25354-27088 Recorder net.helloapp.hello D Cached audio data while we wait for video keyframe before starting muxer.
2023-08-09 11:57:12.731 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.731 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.732 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.733 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.736 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.737 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.740 25354-27088 Recorder net.helloapp.hello D Received video keyframe. Starting muxer...
2023-08-09 11:57:12.741 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.741 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.745 25354-27088 MPEG4Writer net.helloapp.hello D PreAllocation enabled
2023-08-09 11:57:12.746 25354-27088 Recorder net.helloapp.hello D Update stream transformation info: TransformationInfo{getCropRect=Rect(0, 0 - 1080, 1920), getRotationDegrees=0, getTargetRotation=-1, hasCameraTransform=false, getSensorToBufferTransform=Matrix{[-0.0, -1.0, 1080.0][-1.0, 0.0, 1920.0][0.0, 0.0, 1.0]}}
2023-08-09 11:57:12.746 25354-27088 Utils net.helloapp.hello E csd0 too small
2023-08-09 11:57:12.746 25354-27088 ExtendedUtils net.helloapp.hello E csd0 too small
2023-08-09 11:57:12.746 25354-27088 MPEG4Writer net.helloapp.hello D fpathconf _PC_FILESIZEBITS:64
2023-08-09 11:57:12.746 25354-27088 MPEG4Writer net.helloapp.hello D File size limit set to 4503599627370495 bytes implicitly
2023-08-09 11:57:12.747 25354-27088 MPEG4Writer net.helloapp.hello D MP4WtrCtrlHlpLooper Started
2023-08-09 11:57:12.747 25354-27088 MPEG4Writer net.helloapp.hello I limits: 4503599627370495/0 bytes/us, bit rate: -1 bps and the estimated moov size 3192 bytes
2023-08-09 11:57:12.748 25354-27537 MPEG4Writer net.helloapp.hello D kWhatNoIOErrorSoFar
2023-08-09 11:57:12.749 25354-27088 Recorder net.helloapp.hello D First video time: 359643808121 (99:54:03.808)
2023-08-09 11:57:12.754 25354-27538 MPEG4Writer net.helloapp.hello I setStartTimestampUs: 359643808121
2023-08-09 11:57:12.754 25354-27538 MPEG4Writer net.helloapp.hello I Earliest track starting time: 359643808121
2023-08-09 11:57:12.754 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:12.755 25354-25354 VideoCapture net.helloapp.hello D Stream info update: old: StreamInfo{id=90342413, streamState=ACTIVE, inProgressTransformationInfo=null} new: StreamInfo{id=90342413, streamState=ACTIVE, inProgressTransformationInfo=TransformationInfo{getCropRect=Rect(0, 0 - 1080, 1920), getRotationDegrees=0, getTargetRotation=-1, hasCameraTransform=false, getSensorToBufferTransform=Matrix{[-0.0, -1.0, 1080.0][-1.0, 0.0, 1920.0][0.0, 0.0, 1.0]}}}
2023-08-09 11:57:12.757 25354-27088 Recorder net.helloapp.hello D First audio time: 201991106548 (56:06:31.106)
2023-08-09 11:57:12.758 25354-27539 MPEG4Writer net.helloapp.hello I setStartTimestampUs: 201991106548
2023-08-09 11:57:12.758 25354-27539 MPEG4Writer net.helloapp.hello I Earliest track starting time: 201991106548
2023-08-09 11:57:12.763 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:12.764 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.764 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.766 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.766 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.787 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=0, numBytesRecorded=325056, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.0, errorCause=null}}
2023-08-09 11:57:12.788 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157652734764000, numBytesRecorded=567504, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.0, errorCause=null}}
2023-08-09 11:57:12.794 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.794 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.797 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.798 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.809 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.809 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.813 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:12.843 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157652767955000, numBytesRecorded=811024, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.0, errorCause=null}}
2023-08-09 11:57:12.846 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:12.864 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:12.866 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157652801147000, numBytesRecorded=1062432, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.0, errorCause=null}}
2023-08-09 11:57:12.867 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.867 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.874 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:12.876 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.877 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.879 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157652834338000, numBytesRecorded=1167744, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.0, errorCause=null}}
2023-08-09 11:57:12.881 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.881 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.889 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157652867529000, numBytesRecorded=1205648, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.0, errorCause=null}}
2023-08-09 11:57:12.889 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.889 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.891 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.891 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.893 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.893 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.894 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.894 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.912 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:12.915 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.915 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.922 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.922 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.925 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.925 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.932 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157652900721000, numBytesRecorded=1260128, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.0, errorCause=null}}
2023-08-09 11:57:12.940 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:12.941 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.941 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.958 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.958 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.960 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.960 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.965 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157652928912000, numBytesRecorded=1321856, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.00924710837122715, errorCause=null}}
2023-08-09 11:57:12.966 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.966 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:12.978 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:12.984 25354-25384 .helloapp.hell net.helloapp.hello I NativeAlloc concurrent copying GC freed 80706(3712KB) AllocSpace objects, 0(0B) LOS objects, 49% free, 16MB/32MB, paused 100us total 194.991ms
2023-08-09 11:57:12.998 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157652962104000, numBytesRecorded=1409008, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.011597033600878933, errorCause=null}}
2023-08-09 11:57:12.999 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:12.999 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.001 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.001 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.018 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.019 25354-25386 System net.helloapp.hello W A resource failed to call release.
2023-08-09 11:57:13.019 25354-25386 chatty net.helloapp.hello I uid=11210(net.helloapp.hello) FinalizerDaemon identical 3 lines
2023-08-09 11:57:13.019 25354-25386 System net.helloapp.hello W A resource failed to call release.
2023-08-09 11:57:13.025 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.025 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.026 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.026 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.034 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157652995295000, numBytesRecorded=1480577, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.011474959562974944, errorCause=null}}
2023-08-09 11:57:13.059 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.059 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.059 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.062 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.062 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.064 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.064 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.075 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.083 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653028486000, numBytesRecorded=1544849, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.012543107394634847, errorCause=null}}
2023-08-09 11:57:13.085 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.085 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.093 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.093 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.100 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653061678000, numBytesRecorded=1613521, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01705984679708243, errorCause=null}}
2023-08-09 11:57:13.101 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.101 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.116 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.118 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.118 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.123 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.123 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.132 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653094869000, numBytesRecorded=1686865, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.017914365062410353, errorCause=null}}
2023-08-09 11:57:13.136 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.136 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.148 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.148 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.149 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.156 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.156 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.163 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653128060000, numBytesRecorded=1757713, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.019165623950926237, errorCause=null}}
2023-08-09 11:57:13.164 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.164 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.165 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.165 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.182 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.183 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.183 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.185 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.185 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.187 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.187 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.199 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653161252000, numBytesRecorded=1824753, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.017212439344462416, errorCause=null}}
2023-08-09 11:57:13.206 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.209 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.209 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.214 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.214 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.217 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.217 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.241 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653194443000, numBytesRecorded=1896801, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.017212439344462416, errorCause=null}}
2023-08-09 11:57:13.244 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.247 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.247 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.257 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.257 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.264 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.264 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.273 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653227634000, numBytesRecorded=1976945, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.019837031159398177, errorCause=null}}
2023-08-09 11:57:13.279 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.280 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.280 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.283 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.283 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.288 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.288 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.298 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653260826000, numBytesRecorded=2059905, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01672414319284646, errorCause=null}}
2023-08-09 11:57:13.300 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.302 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.302 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.304 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.304 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.322 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653294017000, numBytesRecorded=2115697, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.014191106906338695, errorCause=null}}
2023-08-09 11:57:13.325 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.325 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.364 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.364 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.365 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.366 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.369 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.384 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.397 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653327208000, numBytesRecorded=2168657, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.014099551377910703, errorCause=null}}
2023-08-09 11:57:13.397 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.397 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.399 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.399 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.409 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653360400000, numBytesRecorded=2240609, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.014099551377910703, errorCause=null}}
2023-08-09 11:57:13.411 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.416 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.416 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.437 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.437 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.445 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653393591000, numBytesRecorded=2317057, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.016022217474898525, errorCause=null}}
2023-08-09 11:57:13.445 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.445 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.448 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.460 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.460 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.463 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.463 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.463 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.476 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653426782000, numBytesRecorded=2395841, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.018311105685598315, errorCause=null}}
2023-08-09 11:57:13.479 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.479 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.491 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653459974000, numBytesRecorded=2477601, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.017029328287606435, errorCause=null}}
2023-08-09 11:57:13.494 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.494 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.496 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.496 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.515 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.518 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.518 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.532 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.532 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.534 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.534 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.546 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653493165000, numBytesRecorded=2540689, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.019104586931974244, errorCause=null}}
2023-08-09 11:57:13.547 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.547 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.548 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.563 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.563 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.564 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.564 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.575 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653526357000, numBytesRecorded=2606033, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.013336588641010774, errorCause=null}}
2023-08-09 11:57:13.580 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.581 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.582 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.602 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.602 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.613 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653559548000, numBytesRecorded=2689345, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.012695699942014832, errorCause=null}}
2023-08-09 11:57:13.616 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.618 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.618 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.627 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.627 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.630 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.647 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653592739000, numBytesRecorded=2772561, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.018555253761406293, errorCause=null}}
2023-08-09 11:57:13.648 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.649 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.667 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653625931000, numBytesRecorded=2838257, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01446577349162267, errorCause=null}}
2023-08-09 11:57:13.679 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.679 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.684 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.684 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.688 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.701 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.701 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.705 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.705 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.716 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653659122000, numBytesRecorded=2907233, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.016479995117038484, errorCause=null}}
2023-08-09 11:57:13.718 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.737 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.737 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.738 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.742 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.742 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.746 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653692313000, numBytesRecorded=3067729, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.014374217963194678, errorCause=null}}
2023-08-09 11:57:13.752 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.752 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.768 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653725505000, numBytesRecorded=3132289, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.014618366039002656, errorCause=null}}
2023-08-09 11:57:13.770 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.774 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.774 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.778 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.778 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.810 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653758696000, numBytesRecorded=3201297, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.019165623950926237, errorCause=null}}
2023-08-09 11:57:13.818 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.818 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.821 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.821 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.832 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.845 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.845 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.846 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.850 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.850 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.852 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.852 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.861 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653791887000, numBytesRecorded=3268065, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.0173955504013184, errorCause=null}}
2023-08-09 11:57:13.861 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.861 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.865 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.878 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653825079000, numBytesRecorded=3333185, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.018127994628742334, errorCause=null}}
2023-08-09 11:57:13.881 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.881 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.885 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.885 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.895 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653858270000, numBytesRecorded=3398849, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.018127994628742334, errorCause=null}}
2023-08-09 11:57:13.895 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.909 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653891461000, numBytesRecorded=3478737, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.019409772026734214, errorCause=null}}
2023-08-09 11:57:13.913 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.913 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.917 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.917 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.942 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.943 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.946 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.953 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.954 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.963 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.963 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:13.983 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653924653000, numBytesRecorded=3556273, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.016449476607562488, errorCause=null}}
2023-08-09 11:57:13.991 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:13.997 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:13.997 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.004 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.004 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.005 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.014 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653957844000, numBytesRecorded=3621793, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.015137180700094607, errorCause=null}}
2023-08-09 11:57:14.019 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.020 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.022 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.022 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.041 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157653991035000, numBytesRecorded=3696897, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.013550218207342753, errorCause=null}}
2023-08-09 11:57:14.045 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.045 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.046 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.065 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.065 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.070 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654024227000, numBytesRecorded=3776049, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.012359996337778864, errorCause=null}}
2023-08-09 11:57:14.078 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.078 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.078 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.091 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.091 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.101 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654057418000, numBytesRecorded=3854177, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01434369945371868, errorCause=null}}
2023-08-09 11:57:14.102 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.102 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.106 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.114 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.114 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.115 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.116 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.128 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654090609000, numBytesRecorded=3944785, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.014374217963194678, errorCause=null}}
2023-08-09 11:57:14.131 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.131 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.133 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.133 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.140 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.142 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.142 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.146 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.146 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.151 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.151 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.166 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654123801000, numBytesRecorded=4031409, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01391644032105472, errorCause=null}}
2023-08-09 11:57:14.166 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.167 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.167 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.172 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.172 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.174 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.174 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.180 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654156992000, numBytesRecorded=4101473, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.014404736472670675, errorCause=null}}
2023-08-09 11:57:14.181 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.181 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.199 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.201 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.201 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.206 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.206 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.212 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654190184000, numBytesRecorded=4169857, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.0184636982329783, errorCause=null}}
2023-08-09 11:57:14.214 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.214 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.227 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.227 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.229 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.234 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.234 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.240 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.240 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.250 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654223375000, numBytesRecorded=4232753, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.02075258644367809, errorCause=null}}
2023-08-09 11:57:14.256 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.257 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.259 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.259 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.260 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.261 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.261 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.281 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654256566000, numBytesRecorded=4304065, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.013580736716818751, errorCause=null}}
2023-08-09 11:57:14.282 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.282 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.283 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.284 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.297 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.297 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.299 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.304 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.305 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.311 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654289758000, numBytesRecorded=4383809, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.018890957365642263, errorCause=null}}
2023-08-09 11:57:14.316 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.316 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.323 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.323 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.336 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.339 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.339 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.341 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.341 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.347 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.347 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.358 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654322949000, numBytesRecorded=4450065, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.02108829004791406, errorCause=null}}
2023-08-09 11:57:14.360 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.360 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.361 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.362 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.363 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.364 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.364 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.365 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.365 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.381 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654356140000, numBytesRecorded=4526593, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.016815698721274454, errorCause=null}}
2023-08-09 11:57:14.391 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.391 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.393 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.393 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.399 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.399 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.405 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.417 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.417 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.419 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.419 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.421 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.422 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.427 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654389332000, numBytesRecorded=4606257, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.015137180700094607, errorCause=null}}
2023-08-09 11:57:14.429 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.433 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.433 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.445 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654422523000, numBytesRecorded=4689953, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.017120883816034424, errorCause=null}}
2023-08-09 11:57:14.446 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.446 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.454 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.455 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.457 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.457 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.465 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.465 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.469 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.482 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.482 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.483 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.483 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.485 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.485 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.493 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654455714000, numBytesRecorded=4781729, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.018066957609790338, errorCause=null}}
2023-08-09 11:57:14.493 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.493 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.494 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.494 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.498 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.498 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.514 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.517 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.517 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.519 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.519 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.523 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.523 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.532 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654488906000, numBytesRecorded=4863137, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01748710592974639, errorCause=null}}
2023-08-09 11:57:14.532 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.536 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.536 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.553 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654522097000, numBytesRecorded=4938753, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.02023377178258614, errorCause=null}}
2023-08-09 11:57:14.557 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.557 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.558 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.558 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.564 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.564 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.565 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.578 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654555288000, numBytesRecorded=5004897, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.014648884548478652, errorCause=null}}
2023-08-09 11:57:14.582 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.582 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.584 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.584 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.587 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.587 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.598 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.606 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.606 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.613 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654588480000, numBytesRecorded=5066913, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.012878810998870815, errorCause=null}}
2023-08-09 11:57:14.616 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.616 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.633 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.634 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.634 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.640 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.640 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.643 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.643 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.645 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654621671000, numBytesRecorded=5148465, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.013519699697866757, errorCause=null}}
2023-08-09 11:57:14.675 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.676 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.676 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.678 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.678 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.680 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.680 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.695 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654654862000, numBytesRecorded=5224545, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.021454512161626027, errorCause=null}}
2023-08-09 11:57:14.698 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.698 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.699 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.699 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.702 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.702 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.716 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.719 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.719 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.721 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.721 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.732 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654688054000, numBytesRecorded=5417297, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.013519699697866757, errorCause=null}}
2023-08-09 11:57:14.735 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.739 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.739 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.748 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654721245000, numBytesRecorded=5504337, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01425214392529069, errorCause=null}}
2023-08-09 11:57:14.748 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.748 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.752 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.752 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.758 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.758 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.760 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.761 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.761 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.765 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.765 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.780 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654754437000, numBytesRecorded=5586273, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.017792291024506364, errorCause=null}}
2023-08-09 11:57:14.784 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.784 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.786 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.786 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.797 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.797 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.802 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.804 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.806 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.817 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.817 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.822 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.822 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.824 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.824 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.829 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654787628000, numBytesRecorded=5658353, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.012756736960966826, errorCause=null}}
2023-08-09 11:57:14.834 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.834 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.837 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.845 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.845 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.852 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.852 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.865 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654820819000, numBytesRecorded=5742705, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.018005920590838345, errorCause=null}}
2023-08-09 11:57:14.865 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.865 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.871 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.871 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.890 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.892 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.892 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.895 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.895 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.904 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.904 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.905 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.910 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654854011000, numBytesRecorded=5805713, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01022370067445906, errorCause=null}}
2023-08-09 11:57:14.913 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.913 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.915 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.915 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.929 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654887202000, numBytesRecorded=5869233, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.011230811487166967, errorCause=null}}
2023-08-09 11:57:14.932 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.940 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.940 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.942 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.942 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.945 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.945 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.948 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654920393000, numBytesRecorded=5944433, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.010895107882930999, errorCause=null}}
2023-08-09 11:57:14.965 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.965 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.967 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.979 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.979 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.981 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.981 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.983 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654953585000, numBytesRecorded=6015697, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.010650959807123021, errorCause=null}}
2023-08-09 11:57:14.985 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.985 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.991 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:14.996 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.996 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:14.999 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:14.999 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.012 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157654986776000, numBytesRecorded=6090993, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.009918515579699088, errorCause=null}}
2023-08-09 11:57:15.017 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.017 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.020 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.021 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.022 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.022 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.032 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.046 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655019967000, numBytesRecorded=6166529, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.014954069643238624, errorCause=null}}
2023-08-09 11:57:15.047 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.047 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.052 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.052 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.053 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.053 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.065 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.065 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.068 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.080 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655053159000, numBytesRecorded=6241377, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01043733024079104, errorCause=null}}
2023-08-09 11:57:15.080 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.080 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.082 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.082 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.083 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.083 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.097 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.098 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.098 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.103 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.103 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.105 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.105 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.114 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655086350000, numBytesRecorded=6320433, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.009216589861751152, errorCause=null}}
2023-08-09 11:57:15.118 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.118 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.126 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.126 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.130 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.132 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.132 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.134 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.134 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.145 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655119541000, numBytesRecorded=6405217, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.017792291024506364, errorCause=null}}
2023-08-09 11:57:15.146 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.146 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.152 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.152 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.162 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.162 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.164 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.166 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.166 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.181 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655152733000, numBytesRecorded=6488337, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.019531846064638203, errorCause=null}}
2023-08-09 11:57:15.181 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.181 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.182 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.182 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.204 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.207 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.207 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.212 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.212 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.229 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655185924000, numBytesRecorded=6569649, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.014831995605334635, errorCause=null}}
2023-08-09 11:57:15.234 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.235 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.235 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.240 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.240 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.245 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.245 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.249 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655219115000, numBytesRecorded=6645857, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.011139255958738976, errorCause=null}}
2023-08-09 11:57:15.261 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.261 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.262 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.263 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.263 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.264 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.264 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.279 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655252307000, numBytesRecorded=6724913, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.0097964415417951, errorCause=null}}
2023-08-09 11:57:15.282 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.282 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.283 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.284 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.285 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.286 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.299 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.303 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.303 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.308 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655285498000, numBytesRecorded=6797473, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01425214392529069, errorCause=null}}
2023-08-09 11:57:15.312 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.312 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.314 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.314 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.326 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.326 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.328 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.331 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.331 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.333 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.333 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.345 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655318689000, numBytesRecorded=6877457, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.009399700918607135, errorCause=null}}
2023-08-09 11:57:15.345 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.345 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.347 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.347 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.369 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.372 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.372 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.374 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.374 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.386 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.386 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.402 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655351881000, numBytesRecorded=6948993, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.012207403790398877, errorCause=null}}
2023-08-09 11:57:15.408 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.414 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.414 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.417 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.417 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.429 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655385072000, numBytesRecorded=7029521, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01718192083498642, errorCause=null}}
2023-08-09 11:57:15.429 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.434 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.434 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.436 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.436 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.448 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655418264000, numBytesRecorded=7107697, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.015503402813806574, errorCause=null}}
2023-08-09 11:57:15.448 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.448 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.449 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.449 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.451 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.451 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.465 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.465 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.465 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.466 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.466 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.480 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655451455000, numBytesRecorded=7188145, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.009491256447035128, errorCause=null}}
2023-08-09 11:57:15.480 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.480 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.481 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.481 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.482 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.483 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.493 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.495 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.495 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.498 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.498 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.500 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.500 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.511 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655484646000, numBytesRecorded=7264625, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.010925626392406995, errorCause=null}}
2023-08-09 11:57:15.514 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.514 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.516 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.516 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.526 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.526 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.528 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.532 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.532 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.535 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.535 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.549 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655517838000, numBytesRecorded=7341889, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.015533921323282572, errorCause=null}}
2023-08-09 11:57:15.555 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.555 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.556 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.557 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.571 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.571 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.574 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.580 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.580 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.582 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.583 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.583 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.592 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655551029000, numBytesRecorded=7419473, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.009643848994415113, errorCause=null}}
2023-08-09 11:57:15.592 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655584220000, numBytesRecorded=7494545, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.011444441053498948, errorCause=null}}
2023-08-09 11:57:15.595 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.595 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.597 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.597 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.598 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.599 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.612 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.612 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.615 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.615 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.616 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.616 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.638 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.642 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.642 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.644 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.644 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.645 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.646 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.666 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655617412000, numBytesRecorded=7570449, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01718192083498642, errorCause=null}}
2023-08-09 11:57:15.668 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.677 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.677 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.679 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.679 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.689 25354-25508 RenderInspector net.helloapp.hello W DequeueBuffer time out on net.helloapp.hello/net.helloapp.features.ui.main.MainActivity, count=1, avg=18 ms, max=18 ms.
2023-08-09 11:57:15.693 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655650603000, numBytesRecorded=7642801, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.012451551866206854, errorCause=null}}
2023-08-09 11:57:15.699 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.701 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.701 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.703 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.703 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.704 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.704 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.714 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655683794000, numBytesRecorded=7795409, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.011291848506118961, errorCause=null}}
2023-08-09 11:57:15.715 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.715 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.726 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.726 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.728 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.731 25354-27111 CCodecBufferChannel net.helloapp.hello D [c2.android.aac.encoder#235] DEBUG: elapsed: n=4 [in=0 pipeline=0 out=0 smoothness=4]
2023-08-09 11:57:15.731 25354-27111 PipelineWatcher net.helloapp.hello D DEBUG: elapsed 1 / 4
2023-08-09 11:57:15.733 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.733 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.736 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.737 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.745 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655716986000, numBytesRecorded=7869393, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.022339548936429945, errorCause=null}}
2023-08-09 11:57:15.746 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.746 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.747 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.747 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.758 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.758 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.759 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.759 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.761 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.761 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.763 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.763 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.777 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.777 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.778 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.779 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.779 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.780 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.780 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.783 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.783 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.795 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655750177000, numBytesRecorded=7949185, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.012237922299874875, errorCause=null}}
2023-08-09 11:57:15.797 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.799 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.799 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.803 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.803 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.804 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.804 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.813 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655783368000, numBytesRecorded=8023953, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.012237922299874875, errorCause=null}}
2023-08-09 11:57:15.815 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.815 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.825 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.825 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.829 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.833 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.833 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.837 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.837 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.840 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655816560000, numBytesRecorded=8103457, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.016907254249702446, errorCause=null}}
2023-08-09 11:57:15.841 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.841 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.842 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.845 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.845 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.861 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655849751000, numBytesRecorded=8176401, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.015076143681142613, errorCause=null}}
2023-08-09 11:57:15.863 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.863 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.865 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.865 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.879 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.879 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.879 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.879 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.881 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.881 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.892 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.895 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.895 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.899 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.899 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.902 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.902 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.906 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655882942000, numBytesRecorded=8250017, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.010895107882930999, errorCause=null}}
2023-08-09 11:57:15.914 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.914 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.925 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.925 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.927 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.931 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.931 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.933 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.933 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.946 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655916134000, numBytesRecorded=8323745, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01663258766441847, errorCause=null}}
2023-08-09 11:57:15.947 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.947 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.953 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.953 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.960 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.960 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.961 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:15.963 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.963 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.978 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655949325000, numBytesRecorded=8394417, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.018097476119266334, errorCause=null}}
2023-08-09 11:57:15.981 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.981 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.982 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.983 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.985 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:15.985 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:15.998 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.003 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.003 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.005 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.005 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.009 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157655982517000, numBytesRecorded=8464545, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.017456587420270394, errorCause=null}}
2023-08-09 11:57:16.014 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.014 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.024 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.024 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.028 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.031 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.031 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.033 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.033 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.043 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656015708000, numBytesRecorded=8540305, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.00946073793755913, errorCause=null}}
2023-08-09 11:57:16.044 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.044 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.046 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.047 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.049 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.049 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.066 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.070 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.070 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.078 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.078 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.079 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.079 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.096 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656048899000, numBytesRecorded=8616817, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.011017181920834987, errorCause=null}}
2023-08-09 11:57:16.097 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.097 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.098 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.100 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.100 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.102 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.102 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.107 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.107 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.114 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656082091000, numBytesRecorded=8689729, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.015717032380138555, errorCause=null}}
2023-08-09 11:57:16.119 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.119 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.127 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.127 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.129 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.133 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.133 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.143 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656115282000, numBytesRecorded=8764305, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.015961180455946532, errorCause=null}}
2023-08-09 11:57:16.144 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.144 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.146 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.147 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.147 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.162 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656148473000, numBytesRecorded=8841601, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.018860438856166267, errorCause=null}}
2023-08-09 11:57:16.162 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.162 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.164 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.164 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.167 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.167 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.181 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.182 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.182 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.184 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.184 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.195 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656181665000, numBytesRecorded=8917777, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.012543107394634847, errorCause=null}}
2023-08-09 11:57:16.198 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.198 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.199 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.199 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.213 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.213 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.215 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.215 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.217 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.217 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.227 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.227 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.227 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.233 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.233 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.246 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656214856000, numBytesRecorded=8992225, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.009979552598651083, errorCause=null}}
2023-08-09 11:57:16.247 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.247 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.249 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.254 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.254 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.268 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656248047000, numBytesRecorded=9065489, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.009521774956511124, errorCause=null}}
2023-08-09 11:57:16.275 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.275 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.282 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.282 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.283 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.284 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.284 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.301 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656281239000, numBytesRecorded=9139057, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.008056886501663259, errorCause=null}}
2023-08-09 11:57:16.305 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.305 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.316 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.316 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.318 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.332 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.332 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.334 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.334 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.337 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.337 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.349 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656314430000, numBytesRecorded=9213537, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.007965330973235268, errorCause=null}}
2023-08-09 11:57:16.352 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.357 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.357 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.364 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.364 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.365 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.365 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.378 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656347621000, numBytesRecorded=9292017, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.008941923276467178, errorCause=null}}
2023-08-09 11:57:16.380 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.381 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.381 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.383 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.383 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.401 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656380813000, numBytesRecorded=9363169, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.010132145146031068, errorCause=null}}
2023-08-09 11:57:16.402 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.402 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.406 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.406 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.412 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.412 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.413 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.414 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.414 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.424 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656414004000, numBytesRecorded=9437169, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.01077303384502701, errorCause=null}}
2023-08-09 11:57:16.425 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.425 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.426 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.426 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.432 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.432 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.443 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.443 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.444 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.444 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.445 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.445 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.446 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.446 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.464 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.470 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.470 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.477 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.477 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.480 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656447195000, numBytesRecorded=9535585, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.011383404034546954, errorCause=null}}
2023-08-09 11:57:16.480 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.480 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.496 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.498 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.498 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.499 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.499 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.502 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.502 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.512 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656480387000, numBytesRecorded=9607617, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.013428144169438765, errorCause=null}}
2023-08-09 11:57:16.514 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.514 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.515 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.515 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.531 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.532 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.532 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.537 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.537 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.538 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.539 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.547 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656513578000, numBytesRecorded=9679377, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.010467848750267038, errorCause=null}}
2023-08-09 11:57:16.550 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.552 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.552 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.566 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656546769000, numBytesRecorded=9775585, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.012329477828302866, errorCause=null}}
2023-08-09 11:57:16.572 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.573 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.574 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.574 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.582 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.582 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.598 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.598 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.599 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.600 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.601 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.604 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.604 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.612 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656579961000, numBytesRecorded=9874129, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.012787255470442824, errorCause=null}}
2023-08-09 11:57:16.615 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.616 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.616 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.632 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656613152000, numBytesRecorded=9947729, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.010071108127079073, errorCause=null}}
2023-08-09 11:57:16.636 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.636 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.637 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.637 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.639 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.639 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.665 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.667 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.667 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.676 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.676 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.680 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656646344000, numBytesRecorded=10029121, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.009979552598651083, errorCause=null}}
2023-08-09 11:57:16.681 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.681 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.683 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.683 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.697 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.700 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.701 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.702 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.702 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.703 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.703 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.712 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656679535000, numBytesRecorded=10221041, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.0184942167424543, errorCause=null}}
2023-08-09 11:57:16.714 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.729 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656712726000, numBytesRecorded=10298321, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.019745475630970184, errorCause=null}}
2023-08-09 11:57:16.730 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.730 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.731 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.731 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.733 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.733 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.735 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.735 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.742 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.742 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.743 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.743 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.744 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.744 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.763 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.764 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.764 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.765 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.765 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.779 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656745918000, numBytesRecorded=10376705, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.018707846308786278, errorCause=null}}
2023-08-09 11:57:16.779 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.779 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.781 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.781 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.782 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.782 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.797 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.800 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.800 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.802 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.802 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.803 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.803 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.814 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656779109000, numBytesRecorded=10449153, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.020477919858394117, errorCause=null}}
2023-08-09 11:57:16.815 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.818 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.818 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.834 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656812300000, numBytesRecorded=10516753, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.022858363597521896, errorCause=null}}
2023-08-09 11:57:16.837 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.837 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.840 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.840 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.863 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.863 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.866 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.871 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.871 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.881 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656845492000, numBytesRecorded=10590897, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.018646809289834285, errorCause=null}}
2023-08-09 11:57:16.882 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.883 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.883 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.886 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.886 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.897 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656878683000, numBytesRecorded=10685761, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.018890957365642263, errorCause=null}}
2023-08-09 11:57:16.902 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.902 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.904 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.904 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.915 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.915 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.917 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.917 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.933 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.937 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.937 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.942 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.942 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.946 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656911874000, numBytesRecorded=10784353, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.024201178014465773, errorCause=null}}
2023-08-09 11:57:16.946 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.946 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.949 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Status
2023-08-09 11:57:16.963 25354-25354 RECORD++ net.helloapp.hello I RecordingStats{recordedDurationNanos=157656945066000, numBytesRecorded=10866321, audioStats=AudioStats{audioState=0, audioAmplitudeInternal=0.020172734763634143, errorCause=null}}
2023-08-09 11:57:16.963 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.963 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.966 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.966 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.968 25354-25354 Recorder net.helloapp.hello D Transitioning Recorder internal state: RECORDING --> STOPPING
2023-08-09 11:57:16.969 25354-27088 AudioEncoder net.helloapp.hello D Transitioning encoder internal state: STARTED --> STOPPING
2023-08-09 11:57:16.969 25354-27088 AudioEncoder net.helloapp.hello D Stop on 56:06:35.378
2023-08-09 11:57:16.970 25354-27088 VideoEncoder net.helloapp.hello D Transitioning encoder internal state: STARTED --> STOPPING
2023-08-09 11:57:16.970 25354-27088 VideoEncoder net.helloapp.hello D Stop on 56:06:35.378
2023-08-09 11:57:16.975 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.975 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.978 25354-27088 VideoEncoder net.helloapp.hello D Drop buffer by not in start-stop range.
2023-08-09 11:57:16.979 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.979 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.985 25354-27088 VideoEncoder net.helloapp.hello D Transitioning encoder internal state: STOPPING --> CONFIGURED
2023-08-09 11:57:16.996 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.996 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.997 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.997 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:16.999 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:16.999 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:17.011 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:17.011 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:17.011 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:17.011 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:17.012 25354-27117 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:17.012 25354-27117 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:17.026 25354-27088 AudioEncoder net.helloapp.hello D Drop buffer by not in start-stop range.
2023-08-09 11:57:17.026 25354-27118 BufferedAudioStream net.helloapp.hello D No data to read.
2023-08-09 11:57:17.026 25354-27118 AudioSource net.helloapp.hello W Unable to read data from AudioRecord.
2023-08-09 11:57:17.028 25354-27118 AudioSource net.helloapp.hello D Receive BufferProvider state change: ACTIVE to INACTIVE
2023-08-09 11:57:17.028 25354-27118 AudioSource net.helloapp.hello D stopSendingAudio
2023-08-09 11:57:17.029 25354-27117 AudioSource net.helloapp.hello D Unable to get input buffer, the BufferProvider could be transitioning to INACTIVE state.
2023-08-09 11:57:17.043 25354-27088 AudioEncoder net.helloapp.hello D Drop buffer by not in start-stop range.
2023-08-09 11:57:17.043 25354-27088 AudioEncoder net.helloapp.hello D Drop buffer by invalid buffer size.
2023-08-09 11:57:17.043 25354-27110 CCodecBufferChannel net.helloapp.hello D [c2.android.aac.encoder#235] MediaCodec discarded an unknown buffer
2023-08-09 11:57:17.044 25354-27110 chatty net.helloapp.hello I uid=11210(net.helloapp.hello) MediaCodec_loop identical 1 line
2023-08-09 11:57:17.044 25354-27110 CCodecBufferChannel net.helloapp.hello D [c2.android.aac.encoder#235] MediaCodec discarded an unknown buffer
2023-08-09 11:57:17.046 25354-27716 hw-BpHwBinder net.helloapp.hello I onLastStrongRef automatically unlinking death recipients
2023-08-09 11:57:17.047 25354-27110 CCodec net.helloapp.hello D allocate(c2.android.aac.encoder)
2023-08-09 11:57:17.048 25354-27110 CCodec net.helloapp.hello I setting up 'default' as default (vendor) store
2023-08-09 11:57:17.050 25354-27110 CCodec net.helloapp.hello I Created component [c2.android.aac.encoder]
2023-08-09 11:57:17.050 25354-27110 CCodecConfig net.helloapp.hello D read media type: audio/mp4a-latm
2023-08-09 11:57:17.056 25354-27110 ReflectedParamUpdater net.helloapp.hello D extent() != 1 for single value type: algo.buffers.max-count.values
2023-08-09 11:57:17.056 25354-27110 ReflectedParamUpdater net.helloapp.hello D extent() != 1 for single value type: output.subscribed-indices.values
2023-08-09 11:57:17.056 25354-27110 ReflectedParamUpdater net.helloapp.hello D extent() != 1 for single value type: input.buffers.allocator-ids.values
2023-08-09 11:57:17.056 25354-27110 ReflectedParamUpdater net.helloapp.hello D extent() != 1 for single value type: output.buffers.allocator-ids.values
2023-08-09 11:57:17.056 25354-27110 ReflectedParamUpdater net.helloapp.hello D extent() != 1 for single value type: algo.buffers.allocator-ids.values
2023-08-09 11:57:17.056 25354-27110 ReflectedParamUpdater net.helloapp.hello D extent() != 1 for single value type: output.buffers.pool-ids.values
2023-08-09 11:57:17.056 25354-27110 ReflectedParamUpdater net.helloapp.hello D extent() != 1 for single value type: algo.buffers.pool-ids.values
2023-08-09 11:57:17.058 25354-27110 CCodecConfig net.helloapp.hello I query failed after returning 9 values (BAD_INDEX)
2023-08-09 11:57:17.058 25354-27110 CCodecConfig net.helloapp.hello D c2 config diff is Dict {
c2::u32 coded.bitrate.value = 64000
c2::u32 coded.pl.level = 0
c2::u32 coded.pl.profile = 8192
c2::u32 coding.aac-sbr-mode.value = 3
c2::u32 input.buffers.max-size.value = 2048
c2::u32 input.delay.value = 0
string input.media-type.value = "audio/raw"
string output.media-type.value = "audio/mp4a-latm"
c2::u32 raw.channel-count.value = 1
c2::u32 raw.sample-rate.value = 44100
}
2023-08-09 11:57:17.060 25354-27110 MediaCodec net.helloapp.hello I MediaCodec will operate in async mode
2023-08-09 11:57:17.061 25354-27110 CCodec net.helloapp.hello D [c2.android.aac.encoder] buffers are bound to CCodec for this session
2023-08-09 11:57:17.061 25354-27110 CCodecConfig net.helloapp.hello D no c2 equivalents for aac-profile
2023-08-09 11:57:17.061 25354-27110 CCodecConfig net.helloapp.hello D no c2 equivalents for flags
2023-08-09 11:57:17.061 25354-27110 CCodecConfig net.helloapp.hello D no c2 equivalents for encoder
2023-08-09 11:57:17.062 25354-27110 CCodecConfig net.helloapp.hello D c2 config diff is c2::u32 coded.bitrate.value = 192000
c2::u32 raw.channel-count.value = 2
c2::u32 raw.sample-rate.value = 48000
2023-08-09 11:57:17.062 25354-27110 Codec2Client net.helloapp.hello W query -- param skipped: index = 1107298332.
2023-08-09 11:57:17.062 25354-27110 CCodec net.helloapp.hello D setup formats input: AMessage(what = 0x00000000) = {
int32_t aac-sbr-mode = 3
int32_t channel-count = 2
int32_t max-input-size = 4096
string mime = "audio/raw"
int32_t sample-rate = 48000
} and output: AMessage(what = 0x00000000) = {
int32_t aac-sbr-mode = 3
int32_t bitrate = 192000
int32_t channel-count = 2
int32_t level = 0
int32_t max-bitrate = 192000
string mime = "audio/mp4a-latm"
int32_t profile = 2
int32_t sample-rate = 48000
}
2023-08-09 11:57:17.063 25354-27088 AudioEncoder net.helloapp.hello D Transitioning encoder internal state: STOPPING --> CONFIGURED
2023-08-09 11:57:17.063 25354-27088 Recorder net.helloapp.hello D Encodings end successfully.
2023-08-09 11:57:17.063 25354-27088 MPEG4Writer net.helloapp.hello D reset()
2023-08-09 11:57:17.063 25354-27539 MediaWriter net.helloapp.hello V Track event err/info msg:101, trackId:2, type:1000,val:-1011
2023-08-09 11:57:17.064 25354-27088 MPEG4Writer net.helloapp.hello D Audio track stopping. Stop source
2023-08-09 11:57:17.064 25354-27088 MPEG4Writer net.helloapp.hello D Audio track source stopping
2023-08-09 11:57:17.064 25354-27088 MPEG4Writer net.helloapp.hello D Audio track source stopped
2023-08-09 11:57:17.064 25354-27539 MPEG4Writer net.helloapp.hello I Received total/0-length (201/0) buffers and encoded 201 frames. - Audio
2023-08-09 11:57:17.064 25354-27539 MPEG4Writer net.helloapp.hello I Audio track drift time: 0 us
2023-08-09 11:57:17.064 25354-27538 MediaWriter net.helloapp.hello V Track event err/info msg:101, trackId:1, type:1000,val:-1011
2023-08-09 11:57:17.064 25354-27538 MPEG4Writer net.helloapp.hello I Received total/0-length (129/0) buffers and encoded 129 frames. - Video
2023-08-09 11:57:17.065 25354-27088 MPEG4Writer net.helloapp.hello D Audio track stopped. Status:0. Stop source
2023-08-09 11:57:17.065 25354-27088 MPEG4Writer net.helloapp.hello D Video track stopping. Stop source
2023-08-09 11:57:17.219 25354-27119 AudioService net.helloapp.hello D broadcastRecorderState:net.helloapp.hello
2023-08-09 11:57:17.565 25354-27088 MPEG4Writer net.helloapp.hello W Timed-out waiting for video track to reach final audio timestamp !
2023-08-09 11:57:17.565 25354-27088 MPEG4Writer net.helloapp.hello D Video track source stopping
2023-08-09 11:57:17.565 25354-27088 MPEG4Writer net.helloapp.hello D Video track source stopped
2023-08-09 11:57:17.565 25354-27088 MPEG4Writer net.helloapp.hello D Video track stopped. Status:0. Stop source
2023-08-09 11:57:17.565 25354-27088 MPEG4Writer net.helloapp.hello D Duration from tracks range is [4288528, 157656978258] us
2023-08-09 11:57:17.565 25354-27536 MPEG4Writer net.helloapp.hello D 0 chunks are written in the last batch
2023-08-09 11:57:17.566 25354-27088 MPEG4Writer net.helloapp.hello D WriterThread stopped. Status:0
2023-08-09 11:57:17.566 25354-27088 MPEG4Writer net.helloapp.hello I Adjust the moov start time from 201991106548 us -> 201991106548 us
2023-08-09 11:57:17.566 25354-27088 MPEG4Writer net.helloapp.hello I MOOV atom was written to the file
2023-08-09 11:57:17.566 25354-27088 MPEG4Writer net.helloapp.hello D release()
2023-08-09 11:57:17.566 25354-27088 MPEG4Writer net.helloapp.hello D ftruncate mPreAllocateFileEndOffset:10874821 mOffset:2821 mMdatEndOffset:10871089 diff:3732
2023-08-09 11:57:17.630 25354-27088 MPEG4Writer net.helloapp.hello D MP4WtrCtrlHlpLooper stopped
2023-08-09 11:57:17.630 25354-27088 MPEG4Writer net.helloapp.hello D Top 5 write durations(microseconds): #1:771 #2:1017 #3:1643 #4:2188 #5:4338
2023-08-09 11:57:17.630 25354-27088 MPEG4Writer net.helloapp.hello D reset()
2023-08-09 11:57:17.630 25354-27088 MPEG4Writer net.helloapp.hello D Video track stopping. Stop source
2023-08-09 11:57:17.630 25354-27088 MPEG4Writer net.helloapp.hello E Stop() called but track is not started or stopped
2023-08-09 11:57:17.630 25354-27088 MPEG4Writer net.helloapp.hello D Audio track stopping. Stop source
2023-08-09 11:57:17.630 25354-27088 MPEG4Writer net.helloapp.hello E Stop() called but track is not started or stopped
2023-08-09 11:57:17.630 25354-27088 Recorder net.helloapp.hello D Sending VideoRecordEvent Finalize
2023-08-09 11:57:17.631 25354-27088 Recorder net.helloapp.hello D Update stream transformation info: null
2023-08-09 11:57:17.631 25354-27088 Recorder net.helloapp.hello D Transitioning audio state: ENABLED --> IDLING
2023-08-09 11:57:17.631 25354-27118 AudioSource net.helloapp.hello D Transitioning internal state: STARTED --> CONFIGURED
2023-08-09 11:57:17.633 25354-27088 Recorder net.helloapp.hello D Transitioning Recorder internal state: STOPPING --> IDLING
2023-08-09 11:57:17.636 25354-25354 TorchControl net.helloapp.hello D Unable to enableTorch due to there is no flash unit.
2023-08-09 11:57:17.639 25354-25354 DecorView net.helloapp.hello D createDecorCaptionView windowingMode:1 mWindowMode 1 isFullscreen: true
2023-08-09 11:57:17.697 25354-25354 VideoCapture net.helloapp.hello D Stream info update: old: StreamInfo{id=90342413, streamState=ACTIVE, inProgressTransformationInfo=TransformationInfo{getCropRect=Rect(0, 0 - 1080, 1920), getRotationDegrees=0, getTargetRotation=-1, hasCameraTransform=false, getSensorToBufferTransform=Matrix{[-0.0, -1.0, 1080.0][-1.0, 0.0, 1920.0][0.0, 0.0, 1.0]}}} new: StreamInfo{id=90342413, streamState=INACTIVE, inProgressTransformationInfo=null}
2023-08-09 11:57:17.698 25354-27080 Camera2CameraImpl net.helloapp.hello D {Camera@639ff2[id=1]} Use case androidx.camera.video.VideoCapture-3819593e-17c1-49e4-ba24-b0f8b7f2dd32230230778 UPDATED
2023-08-09 11:57:17.699 25354-27080 UseCaseAttachState net.helloapp.hello D Active and attached use case: [androidx.camera.core.ImageCapture-445dcbdf-2af5-4ede-a4c2-d14e7d26f5b1238450981, androidx.camera.core.Preview-5af36239-635b-4340-af2e-ce600e2f2f60182937884, androidx.camera.video.VideoCapture-3819593e-17c1-49e4-ba24-b0f8b7f2dd32230230778] for camera: 1
2023-08-09 11:57:17.702 25354-27080 CaptureSession net.helloapp.hello D Attempting to submit CaptureRequest after setting
2023-08-09 11:57:17.702 25354-27080 CaptureSession net.helloapp.hello D Issuing request for session.
2023-08-09 11:57:17.702 25354-27080 Camera2Cap...estBuilder net.helloapp.hello D createCaptureRequest
2023-08-09 11:57:17.718 25354-25354 MediaPlayerNative net.helloapp.hello D getMetadata
2023-08-09 11:57:17.758 25354-25354 DecorView[] net.helloapp.hello D getWindowModeFromSystem windowmode is 1
2023-08-09 11:57:17.933 25354-27088 Recorder net.helloapp.hello D Video source has transitioned to state: ACTIVE_NON_STREAMING
2023-08-09 11:57:17.988 25354-25566 MediaPlayerNative net.helloapp.hello W info/warning (3, 0)
2023-08-09 11:57:17.994 25354-27090 OMXClient net.helloapp.hello I IOmx service obtained
2023-08-09 11:57:18.001 25354-27089 MediaCodec net.helloapp.hello I MediaCodec will operate in async mode
2023-08-09 11:57:18.003 25354-27090 ExtendedACodec net.helloapp.hello I setupVideoEncoder()
2023-08-09 11:57:18.003 25354-27090 OMXUtils net.helloapp.hello W do not know color format 0x7fa30c06 = 2141391878
2023-08-09 11:57:18.003 25354-27090 OMXUtils net.helloapp.hello W do not know color format 0x7fa30c04 = 2141391876
2023-08-09 11:57:18.003 25354-27090 OMXUtils net.helloapp.hello W do not know color format 0x7fa30c00 = 2141391872
2023-08-09 11:57:18.003 25354-27090 OMXUtils net.helloapp.hello W do not know color format 0x7fa30c09 = 2141391881
2023-08-09 11:57:18.004 25354-27090 OMXUtils net.helloapp.hello W do not know color format 0x7fa30c0a = 2141391882
2023-08-09 11:57:18.004 25354-27090 OMXUtils net.helloapp.hello W do not know color format 0x7fa30c08 = 2141391880
2023-08-09 11:57:18.004 25354-27090 OMXUtils net.helloapp.hello W do not know color format 0x7fa30c07 = 2141391879
2023-08-09 11:57:18.004 25354-27090 OMXUtils net.helloapp.hello W do not know color format 0x7f000789 = 2130708361
2023-08-09 11:57:18.007 25354-27090 ACodec net.helloapp.hello I setupAVCEncoderParameters with [profile: High] [level: Level1]
2023-08-09 11:57:18.008 25354-27090 ACodec net.helloapp.hello I [OMX.qcom.video.encoder.avc] cannot encode HDR static metadata. Ignoring.
2023-08-09 11:57:18.008 25354-27090 ACodec net.helloapp.hello I setupVideoEncoder succeeded
2023-08-09 11:57:18.008 25354-27090 ExtendedACodec net.helloapp.hello I [OMX.qcom.video.encoder.avc] configure, AMessage : AMessage(what = 'conf', target = 28) = {
int32_t color-format = 2130708361
int32_t i-frame-interval = 1
string mime = "video/avc"
int32_t width = 1080
int32_t bitrate = 20000000
int32_t frame-rate = 30
int32_t height = 1920
int32_t flags = 1
int32_t encoder = 1
}
2023-08-09 11:57:18.008 25354-27090 OMXUtils net.helloapp.hello W do not know color format 0x7f000789 = 2130708361
2023-08-09 11:57:19.035 25354-27111 CCodecBufferChannel net.helloapp.hello D [c2.android.aac.encoder#786] DEBUG: elapsed: n=4 [in=0 pipeline=0 out=0 smoothness=4]
2023-08-09 11:57:19.035 25354-27111 PipelineWatcher net.helloapp.hello D DEBUG: elapsed 0 / 4