pub struct TranscodingsResource<'a> { /* private fields */ }Expand description
Transcoding jobs. Reached via Client::transcodings.
Implementations§
Source§impl<'a> TranscodingsResource<'a>
impl<'a> TranscodingsResource<'a>
Sourcepub async fn merge(&self, params: MergeTranscodingParams) -> Result<Transcoding>
pub async fn merge(&self, params: MergeTranscodingParams) -> Result<Transcoding>
Composite-merges several individual recordings into one MP4.
Sourcepub async fn hls_to_mp4(&self, params: HlsToMp4Params) -> Result<Transcoding>
pub async fn hls_to_mp4(&self, params: HlsToMp4Params) -> Result<Transcoding>
Converts a finished HLS stream to MP4, into your configured storage.
Sourcepub async fn meeting_recording_merge(
&self,
params: MeetingRecordingMergeParams,
) -> Result<Transcoding>
pub async fn meeting_recording_merge( &self, params: MeetingRecordingMergeParams, ) -> Result<Transcoding>
Concatenates several room recordings end to end, chronologically.
Sourcepub async fn list(
&self,
params: ListTranscodingsParams,
) -> Result<Page<Transcoding>>
pub async fn list( &self, params: ListTranscodingsParams, ) -> Result<Page<Transcoding>>
Lists transcoding jobs, one page at a time.
Sourcepub fn list_stream(
&self,
params: ListTranscodingsParams,
) -> impl Stream<Item = Result<Transcoding>> + Send
pub fn list_stream( &self, params: ListTranscodingsParams, ) -> impl Stream<Item = Result<Transcoding>> + Send
Lists transcoding jobs, transparently fetching every page.
Sourcepub async fn get(&self, id: &str) -> Result<Transcoding>
pub async fn get(&self, id: &str) -> Result<Transcoding>
Fetches a transcoding job by id.
Sourcepub async fn cancel(&self, id: &str) -> Result<Transcoding>
pub async fn cancel(&self, id: &str) -> Result<Transcoding>
Cancels a pending or processing transcoding job.
Trait Implementations§
Source§impl<'a> Clone for TranscodingsResource<'a>
impl<'a> Clone for TranscodingsResource<'a>
Source§fn clone(&self) -> TranscodingsResource<'a>
fn clone(&self) -> TranscodingsResource<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for TranscodingsResource<'a>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for TranscodingsResource<'a>
impl<'a> !UnwindSafe for TranscodingsResource<'a>
impl<'a> Freeze for TranscodingsResource<'a>
impl<'a> Send for TranscodingsResource<'a>
impl<'a> Sync for TranscodingsResource<'a>
impl<'a> Unpin for TranscodingsResource<'a>
impl<'a> UnsafeUnpin for TranscodingsResource<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more