Package 

Enum TrackStatus

  • All Implemented Interfaces:
    java.io.Serializable , java.lang.Comparable

    
    public enum TrackStatus
    
                        

    Represents the status of a given track inside the transcoding operation.

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ABSENT

      Track was absent in the source.

      REMOVING

      We are removing the track in the output.

      PASS_THROUGH

      We are not touching the track.

      COMPRESSING

      We are compressing the track in the output.

    • Method Summary

      Modifier and Type Method Description
      boolean isTranscoding() This is used to understand whether we should select this trackin MediaExtractor, and add this track to MediaMuxer.Basically if it should be read and written or not(no point in just reading without writing).
      static Array<TrackStatus> values()
      static TrackStatus valueOf(String name)
      • Methods inherited from class java.lang.Object

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

      • isTranscoding

         boolean isTranscoding()

        This is used to understand whether we should select this trackin MediaExtractor, and add this track to MediaMuxer.Basically if it should be read and written or not(no point in just reading without writing).