Uses of Class
org.monte.media.av.FormatKey
Packages that use FormatKey
Package
Description
Defines an API for audio and video processing, and provides base implementations.
Provides base classes for audio codecs.
Provides base classes for video codecs, and common video codecs.
-
Uses of FormatKey in org.monte.media.av
Fields in org.monte.media.av declared as FormatKeyModifier and TypeFieldDescriptionFormatKeys.EncodingKeyThe EncodingKey.FormatKeys.FrameRateKeyThe number of frames per second.FormatKeys.KeyFrameIntervalKeyThe interval between key frames.static final FormatKey<FormatKeys.MediaType>FormatKeys.MediaTypeKeyThe media MediaTypeKey.FormatKeys.MimeTypeKeyThe mime type.Methods in org.monte.media.av that return types with arguments of type FormatKeyModifier and TypeMethodDescriptionFormat.getKeys()Gets the keys of the format as an unmodifiable set.Format.getProperties()Gets the properties of the format as an unmodifiable map.Methods in org.monte.media.av with parameters of type FormatKeyModifier and TypeMethodDescriptionintbooleanFormat.containsKey(FormatKey<?> key) Format.containsKeys(FormatKey<?>... keys) Returns true if the format has the specified keys.<T> T<T> TFormat.intersectKeys(FormatKey<?>... keys) Creates a new format which only has the specified keys (or less).booleanFormat.matchesWithout(Format that, FormatKey<?>... without) Format.removeKeys(FormatKey<?>... keys) Creates a new format without the specified keys.Constructor parameters in org.monte.media.av with type arguments of type FormatKey -
Uses of FormatKey in org.monte.media.av.codec.audio
Fields in org.monte.media.av.codec.audio declared as FormatKeyModifier and TypeFieldDescriptionAudioFormatKeys.ByteOrderKeyThe compressor name.AudioFormatKeys.ChannelsKeyThe number of ChannelsKey.AudioFormatKeys.FrameSizeKeyThe size of a frame.AudioFormatKeys.SampleRateKeyThe number of frames per second.AudioFormatKeys.SampleSizeInBitsKeyThe sample size in bits.AudioFormatKeys.SignedKeyWhether values are signed.AudioFormatKeys.SilenceBugKeyWhether silence is encoded as -128 instead of 0. -
Uses of FormatKey in org.monte.media.av.codec.video
Fields in org.monte.media.av.codec.video declared as FormatKeyModifier and TypeFieldDescriptionVideoFormatKeys.CompressorNameKeyThe compressor name.VideoFormatKeys.DataClassKeyThe data class.VideoFormatKeys.DepthKeyThe number of bits per pixel.VideoFormatKeys.FixedFrameRateKeyWhether the frame rate must be fixed.VideoFormatKeys.HeightKeyThe HeightKey of a video frame.VideoFormatKeys.InterlaceKeyWhether the video is interlaced.VideoFormatKeys.PixelAspectRatioKeyThe pixel aspect ratio WidthKey : HeightKey;static final FormatKey<VideoFormatKeys.PixelFormat>VideoFormatKeys.PixelFormatKeyThe pixel format.VideoFormatKeys.QualityKeyEncoding quality.VideoFormatKeys.WidthKeyThe WidthKey of a video frame.