silverlight媒体播放停止状态

发布于 2024-11-17 01:38:55 字数 216 浏览 1 评论 0原文

我正在使用 SMF silverlight 媒体播放器。我使用以下代码来获取播放器的当前音量

this.item = function(){
        alert(this.player.GetVolume());
    }

,该音量工作正常,但我也想要媒体的当前状态。那有什么属性。我在 API 文档中没有看到这一点,

谢谢

I am using SMF silverlight media player. I am using the following code to get me the current volume on player

this.item = function(){
        alert(this.player.GetVolume());
    }

which works fine but I also want the current status of the media. Whats the property for that. I didn't see that in API docs

thanks

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

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

发布评论

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

评论(1

粉红×色少女 2024-11-24 01:38:55

我相信您需要 PlayState 属性,该属性的类型为 MediaPluginState 并且可以是以下值之一:

  • Closed
  • Opening
  • Buffering
  • Playing
  • Paused Paused
  • Stopped
  • Personalizing
  • AcquiringLicense
  • ClipPlaying

I believe you want the PlayState property, which is of type MediaPluginState and can be one of these values:

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