You are here

function video_s3_get_object_info in Video 6.5

Same name and namespace in other branches
  1. 6.4 plugins/video_s3/video_s3.module \video_s3_get_object_info()
1 call to video_s3_get_object_info()
_video_zencoder_postback_jobs in plugins/video_zencoder/video_zencoder.module
This will handle Zencoder postback once video conversion is completed

File

plugins/video_s3/video_s3.module, line 36
Provides wrapper functions for the s3 amazon webservices.

Code

function video_s3_get_object_info($object) {
  module_load_include('lib.inc', 'video_s3');
  $s3 = new video_amazon_s3();
  $s3
    ->connect();
  return $s3
    ->get_object_info($object);
}