@UnstableApi
class VorbisComment : Metadata.Entry

Known direct subclasses
VorbisComment

A vorbis comment, extracted from a FLAC or Ogg file.


Summary

Public constructors

VorbisComment(key: String!, value: String!)

Constructs an instance.

Protected constructors

Public functions

Int
Boolean
equals(obj: Any?)
Int
Unit

Updates the MediaMetadata.Builder with the type-specific values stored in this Entry.

String!
Unit
writeToParcel(dest: Parcel!, flags: Int)

Public properties

String!

The key in upper case, to ease case-insensitive comparisons.

String!

The value.

Inherited functions

From androidx.media3.common.Metadata.Entry
ByteArray<Byte>?

Returns the bytes of the wrapped metadata in this Entry, or null if it doesn't contain wrapped metadata.

Format?

Returns the Format that can be used to decode the wrapped metadata in getWrappedMetadataBytes, or null if this Entry doesn't contain wrapped metadata.

Constants

CREATOR

const val CREATORParcelable.Creator<VorbisComment!>!

Public constructors

VorbisComment

VorbisComment(key: String!, value: String!)

Constructs an instance.

Parameters
key: String!

The key. Must be an ASCII string containing only characters between 0x20 and 0x7D (inclusive), excluding 0x3D ('=').

value: String!

The value.

Protected constructors

VorbisComment

protected VorbisComment(in: Parcel!)

Public functions

describeContents

fun describeContents(): Int

equals

fun equals(obj: Any?): Boolean

hashCode

fun hashCode(): Int

populateMediaMetadata

fun populateMediaMetadata(builder: MediaMetadata.Builder!): Unit

Updates the MediaMetadata.Builder with the type-specific values stored in this Entry.

Parameters
builder: MediaMetadata.Builder!

The builder to be updated.

toString

fun toString(): String!

writeToParcel

fun writeToParcel(dest: Parcel!, flags: Int): Unit

Public properties

key

val keyString!

The key in upper case, to ease case-insensitive comparisons.

value

val valueString!

The value.