@stefanmartin/expo-video-watermark 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/android/build.gradle
CHANGED
|
@@ -383,7 +383,7 @@ class ExpoVideoWatermarkModule : Module() {
|
|
|
383
383
|
.addListener(object : Transformer.Listener {
|
|
384
384
|
override fun onCompleted(composition: Composition, exportResult: ExportResult) {
|
|
385
385
|
Log.d(TAG, "[Step 15] Transform completed successfully")
|
|
386
|
-
Log.d(TAG, "[Step 15] Export result -
|
|
386
|
+
Log.d(TAG, "[Step 15] Export result - durationMillis: ${exportResult.durationMillis}, " +
|
|
387
387
|
"fileSizeBytes: ${exportResult.fileSizeBytes}, " +
|
|
388
388
|
"averageAudioBitrate: ${exportResult.averageAudioBitrate}, " +
|
|
389
389
|
"averageVideoBitrate: ${exportResult.averageVideoBitrate}, " +
|
|
@@ -419,7 +419,7 @@ class ExpoVideoWatermarkModule : Module() {
|
|
|
419
419
|
.addListener(object : Transformer.Listener {
|
|
420
420
|
override fun onCompleted(composition: Composition, hevcExportResult: ExportResult) {
|
|
421
421
|
Log.d(TAG, "[Step 16] H.265 re-encode completed successfully")
|
|
422
|
-
Log.d(TAG, "[Step 16] Export result -
|
|
422
|
+
Log.d(TAG, "[Step 16] Export result - durationMillis: ${hevcExportResult.durationMillis}, " +
|
|
423
423
|
"fileSizeBytes: ${hevcExportResult.fileSizeBytes}, " +
|
|
424
424
|
"averageAudioBitrate: ${hevcExportResult.averageAudioBitrate}, " +
|
|
425
425
|
"averageVideoBitrate: ${hevcExportResult.averageVideoBitrate}, " +
|
|
@@ -509,7 +509,7 @@ class ExpoVideoWatermarkModule : Module() {
|
|
|
509
509
|
appendLine()
|
|
510
510
|
appendLine("--- Output Info ---")
|
|
511
511
|
appendLine("Output path: $cleanOutputPath")
|
|
512
|
-
appendLine("Partial export result -
|
|
512
|
+
appendLine("Partial export result - durationMillis: ${exportResult.durationMillis}, " +
|
|
513
513
|
"fileSizeBytes: ${exportResult.fileSizeBytes}")
|
|
514
514
|
appendLine()
|
|
515
515
|
appendLine("--- Full Stack Trace ---")
|