AddVideo

AddVideo(IVideo)

Adds a copy of an video file from an another presentation.

public IVideo AddVideo(IVideo video)
ParameterTypeDescription
videoIVideoSource video.

Return Value

Added video.

See Also


AddVideo(Stream)

Creates and adds a video to a presentation from stream.

public IVideo AddVideo(Stream stream)
ParameterTypeDescription
streamStreamStream to add video file from.

Return Value

Added Video.

See Also


AddVideo(Stream, LoadingStreamBehavior)

Creates and adds a video to a presentation from stream.

public IVideo AddVideo(Stream stream, LoadingStreamBehavior loadingStreamBehavior)
ParameterTypeDescription
streamStreamStream to add video file from.
loadingStreamBehaviorLoadingStreamBehaviorThe behavior which will be applied to the stream.

Return Value

Added IVideo.

See Also


AddVideo(byte[])

Creates and adds a video to a presentation from byte array.

public IVideo AddVideo(byte[] videoData)
ParameterTypeDescription
videoDataByte[]Video bytes.

Return Value

Added video.

See Also