Package net.bramp.ffmpeg.builder
Class MetadataSpecifier
java.lang.Object
net.bramp.ffmpeg.builder.MetadataSpecifier
Metadata spec, as described in the "map_metadata" section of Main options.
-
Method Summary
Modifier and TypeMethodDescriptionstatic MetadataSpecifierchapter(int index) Creates a chapter metadata specifier for the given index.static StringcheckValidKey(String key) Validates and returns the given metadata key.static MetadataSpecifierglobal()Creates a global metadata specifier.static MetadataSpecifierprogram(int index) Creates a program metadata specifier for the given index.spec()Returns the metadata specifier string.static MetadataSpecifierstream(int index) Creates a stream metadata specifier for the given stream index.static MetadataSpecifierstream(StreamSpecifier spec) Creates a stream metadata specifier from an existing stream specifier.static MetadataSpecifierstream(StreamSpecifierType type) Creates a stream metadata specifier for the given stream type.static MetadataSpecifierstream(StreamSpecifierType stream_type, int stream_index) Creates a stream metadata specifier for the given type and index.
-
Method Details
-
spec
Returns the metadata specifier string. -
checkValidKey
Validates and returns the given metadata key. -
global
Creates a global metadata specifier. -
chapter
Creates a chapter metadata specifier for the given index. -
program
Creates a program metadata specifier for the given index. -
stream
Creates a stream metadata specifier for the given stream index. -
stream
Creates a stream metadata specifier for the given stream type. -
stream
Creates a stream metadata specifier for the given type and index. -
stream
Creates a stream metadata specifier from an existing stream specifier.
-