Serialized Form


Package it.sauronsoftware.jave

Class it.sauronsoftware.jave.AudioAttributes extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

codec

java.lang.String codec
The codec name for the encoding process. If null or not specified the encoder will perform a direct stream copy.


bitRate

java.lang.Integer bitRate
The bitrate value for the encoding process. If null or not specified a default value will be picked.


samplingRate

java.lang.Integer samplingRate
The samplingRate value for the encoding process. If null or not specified a default value will be picked.


channels

java.lang.Integer channels
The channels value (1=mono, 2=stereo) for the encoding process. If null or not specified a default value will be picked.


volume

java.lang.Integer volume
The volume value for the encoding process. If null or not specified a default value will be picked. If 256 no volume change will be performed.

Class it.sauronsoftware.jave.EncoderException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class it.sauronsoftware.jave.EncodingAttributes extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

formatHandle

java.lang.String formatHandle
The formatHandle name for the encoded target multimedia file. Be sure this formatHandle is supported (see Encoder.getSupportedEncodingFormats().


offset

java.lang.Float offset
The start offset time (seconds). If null or not specified no start offset will be applied.


duration

java.lang.Float duration
The duration (seconds) of the re-encoded stream. If null or not specified the source stream, starting from the offset, will be completely re-encoded in the target stream.


audioAttributes

AudioAttributes audioAttributes
The attributes for the encoding of the audio stream in the target multimedia file. If null of not specified no audio stream will be encoded. It cannot be null if also the video field is null.


videoAttributes

VideoAttributes videoAttributes
The attributes for the encoding of the video stream in the target multimedia file. If null of not specified no video stream will be encoded. It cannot be null if also the audio field is null.

Class it.sauronsoftware.jave.InputFormatException extends EncoderException implements Serializable

serialVersionUID: 1L

Class it.sauronsoftware.jave.VideoAttributes extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

codec

java.lang.String codec
The codec name for the encoding process. If null or not specified the encoder will perform a direct stream copy.


tag

java.lang.String tag
The forced tag/fourcc value for the video stream.


bitRate

java.lang.Integer bitRate
The bitrate value for the encoding process. If null or not specified a default value will be picked.


frameRate

java.lang.Integer frameRate
The frame rate value for the encoding process. If null or not specified a default value will be picked.


size

VideoSize size
s * The video size for the encoding process. If null or not specified the source video size will not be modified.

Class it.sauronsoftware.jave.VideoSize extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

width

int width
The video width.


height

int height
The video height.