net.bjoernpetersen.m3u.model.M3uEntry.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of m3u-parser Show documentation
Show all versions of m3u-parser Show documentation
Library to parse .m3u playlist files.
package net.bjoernpetersen.m3u.model
import java.time.Duration
/**
* An entry in a `.m3u` file.
*
* @param location the location of the file
* @param duration the media item's duration, or null
* @param title the media item's title, or null
*/
data class M3uEntry(
val location: MediaLocation,
val duration: Duration? = null,
val title: String? = null
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy