Providers now expose a source URI (for FFmpeg) instead of a viewer-facing stream URL. Playout Service will own transcoding. - Add SourceUri value object (NetworkUrl | FilePath) - Remove StreamQuality, StreamingProtocol from domain - Simplify ProviderCapabilities (drop streaming_protocol, transcode) - Jellyfin: return static direct stream URL - Local files: return absolute file path - Rename use case get_stream_url -> get_source - Stream endpoint returns JSON SourceUri instead of 307 redirect
26 lines
862 B
Rust
26 lines
862 B
Rust
pub mod activity;
|
|
pub mod auth;
|
|
pub mod channel;
|
|
pub mod events;
|
|
pub mod library;
|
|
pub mod media;
|
|
pub mod provider_config;
|
|
pub mod schedule;
|
|
pub mod settings;
|
|
pub mod transcode;
|
|
pub mod user;
|
|
|
|
pub use activity::{ActivityLogCommand, ActivityLogQuery};
|
|
pub use auth::{AuthService, TokenService};
|
|
pub use channel::{ChannelCommand, ChannelQuery};
|
|
pub use events::{DomainEvent, EventConsumer, EventEnvelope, EventHandler, EventPublisher};
|
|
pub use library::{LibraryCommand, LibraryQuery, LibrarySyncAdapter};
|
|
pub use media::{
|
|
Collection, IMediaProvider, IProviderRegistry, ProviderCapabilities, SeriesSummary,
|
|
};
|
|
pub use provider_config::{ProviderConfigCommand, ProviderConfigQuery};
|
|
pub use schedule::{ScheduleCommand, ScheduleQuery};
|
|
pub use settings::AppSettingsRepository;
|
|
pub use transcode::TranscodeSettingsRepository;
|
|
pub use user::{UserCommand, UserQuery};
|