@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.
@@ -19,7 +19,7 @@ android {
19
19
  }
20
20
 
21
21
  dependencies {
22
- def media3_version = "1.9.1"
22
+ def media3_version = "1.8.0"
23
23
 
24
24
  // Core Editing & Transformation
25
25
  api "androidx.media3:media3-transformer:$media3_version"
@@ -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 - durationMs: ${exportResult.durationMs}, " +
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 - durationMs: ${hevcExportResult.durationMs}, " +
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 - durationMs: ${exportResult.durationMs}, " +
512
+ appendLine("Partial export result - durationMillis: ${exportResult.durationMillis}, " +
513
513
  "fileSizeBytes: ${exportResult.fileSizeBytes}")
514
514
  appendLine()
515
515
  appendLine("--- Full Stack Trace ---")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stefanmartin/expo-video-watermark",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Creating video watermarks on locally stored videos",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",