PayPal 使用什么 Flash 视频播放器?

发布于 2024-10-14 18:15:57 字数 424 浏览 4 评论 0原文

位于网址有一个嵌入式视频播放器。 swf 文件名是 pp_msr_player.swf ,显然它可以采用基于 XML 的播放列表。

这是内部开发的 Flash 视频播放器还是该特定播放器在其他地方可用?

我可以在哪里获得其中使用的特定皮肤,最好是针对 flowplayer 进行格式化(http://www.flowplayer.org/< /a>)?

At this URL there is an embedded video player. The swf filename is pp_msr_player.swf and apparently it can take an XML-based playlist.

Is this an in-house developed flash video player or is this particular player available somewhere else?

Where I can get the particular skin used in it, preferably formatted for flowplayer (http://www.flowplayer.org/)?

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

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

发布评论

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

评论(1

柠栀 2024-10-21 18:15:57

它看起来像一个自定义的 Flash 应用程序。嵌入的 .swf 在 URL 中传递了一堆变量值。 Adobe 文章 设置变量的不同方法< /a>.页面中使用的 URL 为 /cms_content/US/en_US/files/merchant/pp_msr_player.swf?config=/cms_content/US/en_US/files/merchant/pp_msr_ec_config.xml&debug=falseconfigdebug 是在 Flash 应用程序中定义的变量。我对 Flash 了解不多,但它看起来像是一个检索简单 XML 配置文件的简单应用程序。

我使用 curl 获取了配置文件,这并不奇怪:

<?xml version="1.0" encoding="UTF-8"?>
<demo project="Mkt-Demo:MerchantServices" name="ExpressCheckout_v1"
  pagename="" country="US" language="en_us" version="PPCustomPlayerv1_Flash9">
  <chapters path="">
    <chapter name="CheckoutExpress" file="ExpressCheckout122209b.flv" dur="125"/>
  </chapters>
</demo>

我的猜测是,这是一个由 PayPal 内部人员为演示目的而开发的自定义 Flash 应用程序。皮肤很可能是 PayPal 的产品和财产,由他们的艺术部门开发。

It looks like a custom Flash application. The embedded .swf is passed a bunch of variable values in the URL. This technique is described in the Adobe article Different approaches to setting variables. The URL that is used in the page is /cms_content/US/en_US/files/merchant/pp_msr_player.swf?config=/cms_content/US/en_US/files/merchant/pp_msr_ec_config.xml&debug=false. config and debug are variables defined within the Flash application. I don't know much about Flash but it looks like a simple application that retrieves a simple XML configuration file.

I fetched the configuration file with curl and it isn't that surprising:

<?xml version="1.0" encoding="UTF-8"?>
<demo project="Mkt-Demo:MerchantServices" name="ExpressCheckout_v1"
  pagename="" country="US" language="en_us" version="PPCustomPlayerv1_Flash9">
  <chapters path="">
    <chapter name="CheckoutExpress" file="ExpressCheckout122209b.flv" dur="125"/>
  </chapters>
</demo>

My guess is that this is a custom Flash application developed by someone inside of PayPal written for the purpose of demos. Chances are that the skin is product and property of PayPal and developed by their art department.

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