自定义 MediaStreamSource 和 MediaElement.Naturalduration 属性

发布于 2024-09-13 00:37:31 字数 323 浏览 5 评论 0原文

我编写了一个自定义媒体流源,它可以播放不断增长的源文件(mpeg 传输流)中的媒体。 一旦到达媒体流末尾,它就会从媒体文件中读取新的持续时间并继续传送样本。 MediaElement 连续播放。

不幸的是,我还没有找到更新 MediaElement.NaturalDuration 属性的方法。因此我无法寻找“重新加载”区域,因为 ME 不知道它并将我的位置更改设置为其 NaturalDuration 值。

在获取新的流长度后,我尝试调用 ReportOpenMediaCompleted 。然后 Naturalduration 得到更新,但我不能再玩了。

还有其他方法可以处理吗?

i have written a custom mediastreamsource, that can play media from growing source files (mpeg transport streams).
Once it reaches the end of its mediastream, it reads the new duration from the mediafile and continues to deliver samples. The MediaElement plays continously.

Unfortunately i haven´t found a way to update the MediaElement.NaturalDuration property. Hence i cannot seek into the “reloaded” area, because ME doesn´t know about it and sets my position change to its NaturalDuration value.

I tried to call ReportOpenMediaCompleted after getting the new stream length. Then Naturalduration get´s updated, but i cannot play anymore.

Is there any other way to deal with it ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长亭外,古道边 2024-09-20 00:37:31

有时生活可以如此简单:-)

我解决了这个问题,在初始化 MediaStreamSource 时给 MediaElement 一个“幻想”持续时间值:

protected override void OpenMediaAsync()
{
...
mediaSourceAttributes[MediaSourceAttributesKeys.Duration] = TimeSpan.FromHours(10).Ticks.ToString(CultureInfo.InvariantCulture);
this.ReportOpenMediaCompleted(mediaSourceAttributes, mediaStreamDescriptions);
}

剩下要做的唯一一件事就是用“真实”持续时间更新我的滑块控件。
现在它就像一个魅力......

蒂洛

Sometime life can be so easy :-)

I solved it giving MediaElement a "fantasy" duration value when initializing my MediaStreamSource :

protected override void OpenMediaAsync()
{
...
mediaSourceAttributes[MediaSourceAttributesKeys.Duration] = TimeSpan.FromHours(10).Ticks.ToString(CultureInfo.InvariantCulture);
this.ReportOpenMediaCompleted(mediaSourceAttributes, mediaStreamDescriptions);
}

The only thing left to do was to update my slider control with the "real" duration.
Now it works like a charm ...

Tilo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文