com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Interface IAudio

  • All Known Implementing Classes:
    Audio


    public interface IAudio

    • Method Detail

      • getContentType

        java.lang.String getContentType()

        Returns a MIME type of an audio, encoded in BinaryData(getBinaryData()). Read-only String.

      • getBinaryData

        byte[] getBinaryData()

        Returns the copy of an audio's data. In case of large amount of data consider using of getStream() method to prevent unnecessary loading of audio's data into memory or even OutOfMemoryException. Read-only byte[].

      • getStream

        java.io.InputStream getStream()

        Returns Stream stream for reading. Use 'using' or close stream after using.

        Returns:
        Stream for reading.