0

我们有几个播客,每个都有多集。我们应该为播客和剧集返回哪种项目类型,项目应该是哪种类型?

我们目前使用 itemtype.collection 作为播客和剧集列表,每个剧集都有 itemtype.stream,然后将项目设置为 streamMetadata。

然而,这不允许擦洗。

播客:

var mediaData = new mediaCollection()
{
    id = string.Format({0}:{1}:{2}",Prefix, moodId, moodItem.Id),
    title = moodItem.Id,
    itemType = itemType.collection,
    onDemand = true,
    liveNow = false,
    language = "Norwegian",
    liveNowSpecified = false,
    albumArtURI = new albumArtUrl() {  Value = moodItem.ImageUri.ToString(), requiresAuthentication = false, requiresAuthenticationSpecified = false}
};

插曲:

return new mediaMetadata
{
    id = string.Format("{0}:{1}:{2}:{3}", Prefix, moodId, podcast.Id, episode.Publishdate.Ticks.ToString()),
    title = episode.Title,
    itemType = itemType.stream,
    mimeType = "audio/mpeg",
    onDemand = true,
    onDemandSpecified = true,
    language = "Norwegian",
    Item = new streamMetadata()
    {
        currentShow = episode.Title,
        logo = new albumArtUrl { Value = podcast.ImageUri.ToString(), requiresAuthentication = false, requiresAuthenticationSpecified = true },
        currentHost = "Someone",
    }
};
4

1 回答 1

1

getMetadataResponse的播客应该属于itemType track并且应该包括canResume true. 查看此页面以获取特定信息和示例。

于 2017-01-22T16:19:42.360 回答