Video class

Video class

Represents an image embedded into a presentation.

The Video type exposes the following members:

Properties

PropertyDescription
content_typeReturns a MIME type of an video, encoded in Video.binary_data.
Read-only str.
binary_dataReturns the copy of an audio’s data. In case of large amount of data consider using of
Video.get_stream method to prevent unnecessary loading of video’s data into memory
or even OutOfMemoryException.
Read-only int[].

Methods

MethodDescription
get_streamReturns Stream stream for reading.
Use ‘using’ or close stream after using.

See Also