media3-smoothstreaming-playback
Compact skill for Media3 SmoothStreaming playback, manifest handling, fallback decisions, and adaptive stream caveats.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Compact skill for Media3 SmoothStreaming playback, manifest handling, fallback decisions, and adaptive stream caveats.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Compact skill for Media3 Google IMA CSAI/SSAI ad insertion, AdViewProvider, companions, and ad telemetry.
Compact skill for Media3 MediaSessionService, MediaController, notification, media buttons, and service lifetime.
Compact skill for Media3 offline downloads with DownloadService, DownloadManager, Requirements, and the WorkManagerScheduler role of media3-exoplayer-workmanager.
Compact skill for Media3 bandwidth estimation, ABR limits, load control, network constraints, and preload contention.
Compact skill for Media3 CastPlayer.Builder, automatic local/remote handoff, MediaRouteButton, and Cast session lifecycle.
Compact skill for Media3 HTTP DataSource, OkHttp/Cronet/HttpEngine, cache, headers, auth, and custom DataSource decisions.
| name | media3-smoothstreaming-playback |
| description | Compact skill for Media3 SmoothStreaming playback, manifest handling, fallback decisions, and adaptive stream caveats. |
| license | Apache-2.0 |
| metadata | {"author":"Shunnek Labs","version":"1.1","target_media3_version":"1.10.1","last_reviewed":"2026-07-23","keywords":["android","media3","smoothstreaming","adaptive","manifest","exoplayer"]} |
Use when an app must play SmoothStreaming manifests or add media3-exoplayer-smoothstreaming.
streaming-media-architecture for ownership, KMP split, preload, and telemetry.1.10.1 through the version catalog.MimeTypes.APPLICATION_SS on the MediaItem when the URI does not end in .ism/Manifest; otherwise Media3 cannot infer the stream type.media3-exoplayer = { module = "androidx.media3:media3-exoplayer", version.ref = "media3" }
media3-exoplayer-smoothstreaming = { module = "androidx.media3:media3-exoplayer-smoothstreaming", version.ref = "media3" }
// URI ends in .ism/Manifest: type is inferred.
player.setMediaItem(MediaItem.fromUri(smoothStreamingManifestUri))
player.prepare()
// URI does not end in .ism/Manifest: set the MIME type explicitly.
player.setMediaItem(
MediaItem.Builder()
.setUri(opaqueManifestUri)
.setMimeType(MimeTypes.APPLICATION_SS)
.build()
)
player.prepare()
media3-bandwidth-abr.media3-hls-dash-adaptive-streamingmedia3-bandwidth-abrmedia3-drm-widevine-setup