compressVideo method

Future<String> compressVideo(
  1. String filePath
)

Video: pass-through per spec (no transcoding in v1).

Implementation

Future<String> compressVideo(String filePath) async {
  CloudLogger.debug(
      'Video compression disabled; pass-through.');
  return filePath;
}