Class EncoderProgressAdapter

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void message​(java.lang.String message)
      This method is called every time the encoder need to send a message (usually, a warning).
      void progress​(int permil)
      This method is called to notify a progress in the encoding process.
      void sourceInfo​(MultimediaInfo info)
      This method is called before the encoding process starts, reporting information about the source stream that will be decoded and re-encoded.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • sourceInfo

        public void sourceInfo​(MultimediaInfo info)
        Description copied from interface: EncoderProgressListener
        This method is called before the encoding process starts, reporting information about the source stream that will be decoded and re-encoded.
        Specified by:
        sourceInfo in interface EncoderProgressListener
        Parameters:
        info - Informations about the source multimedia stream.
      • progress

        public void progress​(int permil)
        Description copied from interface: EncoderProgressListener
        This method is called to notify a progress in the encoding process.
        Specified by:
        progress in interface EncoderProgressListener
        Parameters:
        permil - A permil value representing the encoding process progress.
      • message

        public void message​(java.lang.String message)
        Description copied from interface: EncoderProgressListener
        This method is called every time the encoder need to send a message (usually, a warning).
        Specified by:
        message in interface EncoderProgressListener
        Parameters:
        message - The message sent by the encoder.