You are here

function zoomapi_download_recording in Zoom API 7.2

Download Recording.

Downloads a zoom recording to the specified destination / filename.

See also

filefield_source_remote_value()

1 call to zoomapi_download_recording()
zoomapi_download_meeting_recordings in ./zoomapi.module
Download Meeting Recordings.

File

./zoomapi.module, line 1194
Main file for the Zoom API module.

Code

function zoomapi_download_recording($zoom_meeting_recording, $destination_directory, $filename = '', $context = []) {
  module_load_include('inc', 'zoomapi', 'zoomapi.api');
  return zoomapi_api_download_recording($zoom_meeting_recording, $destination_directory, $filename, $context);
}