Stream

struct Stream : KodiItem

Stream details

  • Public Init

    Declaration

    Swift

    public init(
        media: Library.Media = .stream,
        station: String = "",
        description: String = "",
        title: String = "",
        subtitle: String = "",
        poster: String = "",
        playcount: Int = 0,
        lastPlayed: String = "",
        userRating: Int = 0,
        fanart: String = "",
        file: String = ""
    )
  • id

    Calculated variables

    The ID of the stream

    Declaration

    Swift

    public var id: String { get }
  • The Kodi ID of the stream

    Declaration

    Swift

    public var kodiID: Library.ID
  • The search string

    Declaration

    Swift

    public var search: String { get }
  • Calculated sort title

    Declaration

    Swift

    public var sortByTitle: String { get }
  • The details of the stream

    Declaration

    Swift

    public var details: String
  • Declaration

    Swift

    public var duration: Int
  • The resume position of the stream

    Note

    Not in use but needed by protocol

    Declaration

    Swift

    public var resume: Video.Resume
  • The date the stream is added

    Note

    Not in use but needed by protocol

    Declaration

    Swift

    public var dateAdded: String
  • The release year of the item

    Note

    Not in use but needed by protocol

    Declaration

    Swift

    public var year: Int
  • Audio.Details.Stream

    The type of media

    Declaration

    Swift

    public var media: Library.Media
  • Undocumented

    Declaration

    Swift

    public var station: String
  • Declaration

    Swift

    public var description: String
  • Declaration

    Swift

    public var title: String
  • The subtitle of the stream

    Declaration

    Swift

    public var subtitle: String
  • The poster of the stream

    Declaration

    Swift

    public var poster: String
  • Declaration

    Swift

    public var playcount: Int
  • Declaration

    Swift

    public var lastPlayed: String
  • Declaration

    Swift

    public var rating: Double
  • Declaration

    Swift

    public var userRating: Int
  • Declaration

    Swift

    public var fanart: String
  • The location of the media file

    Declaration

    Swift

    public var file: String

Stream extensions

  • Play an audio stream

    Declaration

    Swift

    public func play()