Skip to main content

MediaItem

Struct MediaItem 

Source
pub struct MediaItem {
Show 25 fields pub id: String, pub title: String, pub name: Option<String>, pub artist: Option<String>, pub album: Option<String>, pub album_name: Option<String>, pub album_id: Option<String>, pub artist_items: Option<Vec<ArtistItem>>, pub artists: Option<Vec<String>>, pub primary_image_tag: Option<String>, pub image_id: Option<String>, pub item_type: Option<String>, pub playlist_id: Option<String>, pub duration: Option<f64>, pub artwork_url: Option<String>, pub media_type: MediaType, pub source: MediaSource, pub video_codec: Option<String>, pub needs_transcoding: bool, pub transport: Option<Transport>, pub video_width: Option<u32>, pub video_height: Option<u32>, pub subtitles: Vec<SubtitleTrack>, pub series_id: Option<String>, pub server_id: Option<String>,
}
Expand description

Represents a media item that can be played

TRACES: UR-003, UR-004 | DR-002

Fields§

§id: String

Unique identifier

§title: String

Display title

§name: Option<String>

Name (alias for title - for frontend compatibility)

§artist: Option<String>

Artist name(s) for audio

§album: Option<String>

Album name for audio

§album_name: Option<String>

Album name (alias - for frontend compatibility)

§album_id: Option<String>

Album ID (Jellyfin ID) for remote transfer context

§artist_items: Option<Vec<ArtistItem>>

Artist items with IDs for clickable links

§artists: Option<Vec<String>>

Artists as array of strings (fallback when artist_items not available)

§primary_image_tag: Option<String>

Primary image tag for artwork.

Legacy Jellyfin name; being replaced by image_id (same value). Dual-carried while the frontend migrates (docs/specs/frontend-domain-model.md).

§image_id: Option<String>

Neutral image identifier the frontend resolves to a URL — replaces primary_image_tag.

§item_type: Option<String>

Item type (Audio, Movie, Episode, etc.)

§playlist_id: Option<String>

Playlist ID (Jellyfin ID) for remote transfer context

§duration: Option<f64>

Duration in seconds

§artwork_url: Option<String>

URL or path to artwork image

§media_type: MediaType

Type of media

§source: MediaSource

Source of the media

§video_codec: Option<String>

Video codec (e.g., “h264”, “hevc”) for video media

§needs_transcoding: bool

Whether the video requires server-side transcoding

§transport: Option<Transport>

How this item’s stream is fetched, as the backend decided it.

Carried on the queue item so a later seek/reload does not have to guess. None for items queued by a path that never negotiated (audio tracks, direct URLs) and for anything queued before this field existed, where the caller falls back to needs_transcoding — every transcode this app requests is HLS (DR-140), so that fallback is exact rather than a guess.

TRACES: UR-003, UR-004, UR-079 | DR-225, DR-230

§video_width: Option<u32>

Video width in pixels

§video_height: Option<u32>

Video height in pixels

§subtitles: Vec<SubtitleTrack>

Available subtitle tracks

§series_id: Option<String>

Series ID (for TV show episodes) - used for series audio preferences

§server_id: Option<String>

Server ID - used for series audio preferences

Implementations§

Source§

impl MediaItem

Source

pub fn playable_url(&self) -> String

The URL or path an engine should open.

TRACES: UR-081 | DR-245

Source§

impl MediaItem

Source

pub fn jellyfin_id(&self) -> Option<&str>

Get the Jellyfin item ID if available

Trait Implementations§

Source§

impl Clone for MediaItem

Source§

fn clone(&self) -> MediaItem

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for MediaItem

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for MediaItem

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<&MediaItem> for MergedMediaItem

Source§

fn from(item: &MediaItem) -> Self

Converts to this type from the input type.
Source§

impl NamedType for MediaItem

Source§

fn sid() -> SpectaID

Source§

fn named_data_type( type_map: &mut TypeCollection, generics: &[DataType], ) -> NamedDataType

this is equivalent to [Type::inline] but returns a [NamedDataType] instead.
Source§

fn definition_named_data_type(type_map: &mut TypeCollection) -> NamedDataType

this is equivalent to [Type::definition] but returns a [NamedDataType] instead.
Source§

impl PartialEq for MediaItem

Source§

fn eq(&self, other: &MediaItem) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for MediaItem

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Type for MediaItem

Source§

fn inline(type_map: &mut TypeCollection, generics: Generics<'_>) -> DataType

Returns the definition of a type using the provided generics. Read more
Source§

fn reference(type_map: &mut TypeCollection, generics: &[DataType]) -> Reference

Generates a datatype corresponding to a reference to this type, as determined by its category. Getting a reference to a type implies that it should belong in the type map (since it has to be referenced from somewhere), so the output of definition will be put into the type map.
Source§

impl Flatten for MediaItem

Source§

impl StructuralPartialEq for MediaItem

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<'de, D, R> CommandArg<'de, R> for D
where D: Deserialize<'de>, R: Runtime,

§

fn from_command(command: CommandItem<'de, R>) -> Result<D, InvokeError>

Derives an instance of Self from the [CommandItem]. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FunctionArg for T
where T: Type,

§

fn to_datatype(type_map: &mut TypeCollection) -> Option<DataType>

Gets the type of an argument as a [DataType]. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> IpcResponse for T
where T: Serialize,

§

fn body(self) -> Result<InvokeResponseBody, Error>

Resolve the IPC response body.
§

impl<T> PolicyExt for T
where T: ?Sized,

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
§

impl<T> ScopeObject for T
where T: Send + Sync + Debug + DeserializeOwned + 'static,

§

type Error = Error

The error type.
§

fn deserialize<R>( _app: &AppHandle<R>, raw: Value, ) -> Result<T, <T as ScopeObject>::Error>
where R: Runtime,

Deserialize the raw scope value.
Source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

Source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

Source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> UserEvent for T
where T: Debug + Clone + Send + 'static,