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