Class SubtitleTrack
- java.lang.Object
-
- com.castlabs.android.player.models.Track
-
- com.castlabs.android.player.models.SubtitleTrack
-
public class SubtitleTrack extends Track
A subtitle track.- Since:
- 3.0.0
-
-
Field Summary
-
Fields inherited from class com.castlabs.android.player.models.Track
LABEL_LOCALE, UNKNOWN_INDEX
-
-
Constructor Summary
Constructors Constructor Description SubtitleTrack()
Create a new track instanceSubtitleTrack(com.google.android.exoplayer2.Format format)
Create a new track instance and populate it from the information from the given format.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
int
getEmbeddedTrackGroupIndex()
com.google.android.exoplayer2.Format
getFormat()
String
getId()
String
getLabel()
Returns the default label for this track.String
getLanguage()
The language of the format.String
getMimeType()
String
getName()
The name associated with this track.String
getOriginalLanguage()
The language tag as present in the manifest.boolean
getSideloaded()
Check if the subtitle is of side-loaded type.String
getUrl()
int
hashCode()
boolean
isEmbedded()
Returns whether this track is embedded in another TrackGroup.void
setEmbeddedTrackGroupIndex(int embeddedTrackGroupIndex)
Set the track group index in which this TrackGroup is embedded into.void
setId(String id)
Set the id associated with this trackvoid
setLanguage(String language)
Set the language of this track.void
setMimeType(String mimeType)
Set the mime type associated with this trackvoid
setName(String name)
Set a name associated with this trackvoid
setOriginalLanguage(String language)
Set the manifest language of this track.void
setSideloaded(boolean sideloaded)
Set if the subtitle is of side-loaded type.void
setUrl(String url)
String
toString()
-
Methods inherited from class com.castlabs.android.player.models.Track
addDescriptor, getDescriptors, getLocalizedLanguageName, getOriginalGroupIndex, getOriginalTrackIndex, getTrackIndex, hasTrickModeId, isTrickModeTrack, setDescriptors, setOriginalGroupIndex, setOriginalTrackIndex, setTrackIndex, setTrickModeIds
-
-
-
-
Method Detail
-
getFormat
@Nullable public com.google.android.exoplayer2.Format getFormat()
- Returns:
- the underlaying format or
null
-
getLanguage
@Nullable public String getLanguage()
The language of the format. Can be null if unknown. The language codes are two-letter lowercase ISO language codes (such as "en") as defined by IETF BCP 47.- Returns:
- The language tag associated with this track or null
-
setLanguage
public void setLanguage(@Nullable String language)
Set the language of this track.- Parameters:
language
- the language
-
getOriginalLanguage
@Nullable public String getOriginalLanguage()
The language tag as present in the manifest. Can be null if unknown.- Returns:
- The manifest language tag associated with this track or null
-
setOriginalLanguage
public void setOriginalLanguage(@Nullable String language)
Set the manifest language of this track.- Parameters:
language
- the manifest language
-
setSideloaded
public void setSideloaded(boolean sideloaded)
Set if the subtitle is of side-loaded type. Default is not side-loaded.- Parameters:
sideloaded
- true if side-loaded otherwise false
-
getSideloaded
public boolean getSideloaded()
Check if the subtitle is of side-loaded type.- Returns:
- true if side-loaded otherwise false
-
getName
@Nullable public String getName()
The name associated with this track.- Returns:
- The name associated with this track
-
setName
public void setName(@Nullable String name)
Set a name associated with this track- Parameters:
name
- the name
-
getMimeType
@Nullable public String getMimeType()
- Returns:
- The mime type associated with this track
-
setMimeType
public void setMimeType(String mimeType)
Set the mime type associated with this track- Parameters:
mimeType
- the mime type
-
getId
@Nullable public String getId()
- Returns:
- The id associated with this track
-
setId
public void setId(String id)
Set the id associated with this track- Parameters:
id
- the id
-
isEmbedded
public boolean isEmbedded()
Returns whether this track is embedded in another TrackGroup.- Returns:
- whether this track is embedded in another TrackGroup
-
getEmbeddedTrackGroupIndex
public int getEmbeddedTrackGroupIndex()
- Returns:
- The track group index in which this SubtileTrack is embedded.
C.INDEX_UNSET
if this is not an embedded track.
-
setEmbeddedTrackGroupIndex
public void setEmbeddedTrackGroupIndex(int embeddedTrackGroupIndex)
Set the track group index in which this TrackGroup is embedded into.- Parameters:
embeddedTrackGroupIndex
- the TrackGroup index in which this Track is embedded
-
getLabel
public String getLabel()
Returns the default label for this track. The label is either the DASH label,name
if its set, thelanguage
, or it falls back to "Unknown".- Returns:
- The default label for this track
-
getUrl
@Nullable public String getUrl()
- Returns:
- optional URL that is used for side-loaded tracks
-
setUrl
public void setUrl(@Nullable String url)
- Parameters:
url
- the URL that is used to side-load a track
-
-