public interface IVideoCollection extends IGenericCollection<IVideo>
Modifier and Type | Method and Description |
---|---|
IVideo |
addVideo(byte[] videoData)
Creates and adds a video to a presentation from byte array.
|
IVideo |
addVideo(java.io.InputStream stream)
Deprecated.
Use
addVideo(InputStream stream, int loadingStreamBehavior) . The method will be removed in version 17.10. |
IVideo |
addVideo(java.io.InputStream stream,
int loadingStreamBehavior)
Creates and adds a video to a presentation from stream.
|
IVideo |
addVideo(IVideo video)
Adds a copy of an video file from an another presentation.
|
IVideo |
get_Item(int index)
Gets the element at the specified index.
|
iterator
IVideo addVideo(IVideo video)
Adds a copy of an video file from an another presentation.
video
- Source video.@Deprecated IVideo addVideo(java.io.InputStream stream)
addVideo(InputStream stream, int loadingStreamBehavior)
. The method will be removed in version 17.10.Creates and adds a video to a presentation from stream.
stream
- Stream to add video file from.IVideo
.IVideo addVideo(java.io.InputStream stream, int loadingStreamBehavior)
Creates and adds a video to a presentation from stream.
stream
- Stream to add video file from.loadingStreamBehavior
- The behavior which will be applied to the stream.IVideo
.IVideo addVideo(byte[] videoData)
Creates and adds a video to a presentation from byte array.
videoData
- Video bytes.