当前位置: 首页 > news >正文

第13届年度Webby奖采用Silverlight / 13th Annual Webby Awards powered by Silverlight

13th Annual Webby Awards powered by Silverlight

13届年度Webby奖采用Silverlight

原文连接:http://team.silverlight.net/case-study/13th-annual-webby-awards-powered-by-silverlight/

原文分类:Case Study(案例学习)

原文发表时间:PST 2009-04-26 20:06

翻译:Z731

This past week the entire Webby Awards platform, including The Webby People's Voice Awards voting system switched to Microsoft Silverlight.  The Webby Awards is the leading international award honoring excellence on the Internet, and has been sponsored by Adobe, Nokia, and others in the past.  This marks Microsoft’s first sponsorship of this event.  Webby Award winners range from celebrities and top brands to advertising and creative agencies.  In addition to providing the player for the Webby People’s Voice Awards, Microsoft’s presenting sponsorship of the 13th Annual Webby Awards includes presentation of a Photosynth and Deep Zoom collection of the Gala event and other Silverlight-powered experiences which will be rolled out over the coming months. 

过去的这周里整个Webby奖平台包括Webby人民之声奖投票系统转移到微软Silverlight平台。Webby奖是一项表彰互联网上的卓越的国际领先奖项,过去一直由Adobe,Nokia和其他公司赞助。这标志着微软第一次赞助这项奖项。Webby大奖获得者涵括名人和顶级品牌到广告和创意机构。除了给第13届年度Webby人民之声奖提供播放器,微软赞助的第13届年度Webby大奖包括采用Photosynth和Deep Zoom集合呈现的Gala事件和其他有Silverlight提供的用户体验将在未来数月推出。

 

The Webby People's Voice Awards – powered by Silverlight, gives anyone the opportunity to vote for their favorite content in the categories of Websites, Mobile, Film and Video, and Interactive Advertising, with over 120 sub-categories.  Over 150 videos entries in the Film and Video category are streaming in Silverlight today on http://pv.webbyawards.com. In just the first day of The Webby People's Voice Awards voting, the Silverlight People’s Voice experience broke all previous Webby Awards records with over 70,000 votes registered. 

Webby人民之声奖采用Silverlight技术,使任何人都可以在网站,手机,电影,视频和交互广告类别包括超过120个子类中为他们最喜欢的内容投票。现在在http://pv.webbyawards.com上的电影和视频类别中有超过150个视频项目是用Silverlight提供的视频流。仅在Webby人民之声奖投票的第一天,Silverlight人民之声奖体验就以超过7万投票注册者的业绩打破以往的Webby奖记录。

 

Visit www.webbyawards.com over the coming weeks to experience the 13th Annual Webby Awards powered by Silverlight.  Congratulations to Hard Rock Memorabilia and Vertigo for being selected as an Honoree in the ‘Best Use of Photography’ category.  Congratulations also to  NBCOlympics.com and Schematic – nominated in the Sports category.  Vote for the Silverlight NBC Olympics experience in the People’s Voice Awards at http://pv.webbyawards.com/ballot/home/1/568/620#entry1784. 

在今后几周里访问www.webbyawards.com 来体验采用Silverlight技术的第13届年度Webby大奖 。祝贺Hard Rock 纪念品和Vertigo获得“最佳图像使用类”获。也祝贺NBCOlympics.com和Schematic获得体育类的提名。在http://pv.webbyawards.com/ballot/home/1/568/620#entry1784 的人民之声奖为NBC的Silverlight欧林匹克体验投票。

 

Some notes on the process of integrating Silverlight into the Webby site by Laurence Moroney – Silverlight developer. 

来自Silverlight开发者Laurence Moroney 在集成Silverlight过程中的一些笔记。

 

When building new functionality for a website, often the integration of the technology is a longer, more difficult, and riskier proposition than the building of the application itself. The integration of Silverlight in the Webby awards site was an interesting exercise, run against the clock. There were a number of constraints, and the flexibility of the technology shone in being able to get around these constraints.

当为一个网站建立新功能时往往技术的集成是一个比建立应用程序本身更长,更困难更有风险的主题。给Webby奖网站集成Silverlight是一段与时间赛跑的有趣的工作。过程中遇到了很多困难,但是Silverlight技术的灵活性使得克服这些困难很容易。

 

  • One constraint was that the video needed to have a webby’s bug (the semi translucent logo in the lower right corner) and a Silverlight bumper added. This is typically easy enough to do when encoding video, but this had to be done to existing video without re-encoding it. Silverlight makes this easy. The bug is added by using a transparent PNG and adjusting its opacity. The bumper is added by catching events on the <MediaElement>  to determine when the video has finished playing. Then, it plays another video file which has been embedded into the player itself. Problem solved!
  • 一个困难是一个视频需要添加一个webby的昆虫商标(右下角的半透明商标)和一个Silverlight缓冲。如果是在编码视频的话这很容易解决,但这在不重新编码现有视频的情况下很难办到。Silverlight使其很容易办到。那个商标通过用一张透明的PNG图片并调整其透明度给加上了。缓冲则通过捕获<MedaiElement>上的事件来获知什么时候视频播放完了。然后,它播放另一个嵌入在播放器里面的视频文件。问题解决了!

  • Another was that the player needed to be embedded in an existing site, touching the site as little as possible, so as not to cause any regression bugs. Silverlight can do this easily, as it’s an <Object> tag, so it can be placed on a page without too much difficulty. However, placing the player isn’t enough – the player has to be initialized with the correct video, and with meta data related to the video (a title and link). Typically you might do this with an ASP.NET or PHP page that reads in parameters and generates the player with them. But how do you pass them to the player itself? Fortunately Silverlight has a solution to this in having a custom parameter list on the <Object> tag. So, for example, here’s the custom parameter for one of the videos on the Webbys site:

  
< param name = " initParams "
value
= " link=http://fr.youtube.com/watch?v=Z_-uKbBYwJk,
video=http://mssilver.vo.llnwd.net/d1/webby/1000000000004265.wmv,
height=520,width=587,title=Better than Prince
" / >

 

  •  另一个问题是播放器需要嵌入到一个已存在的网站里,尽可能地与网站耦合少,以免引发回放bugSilverlight可以很容易地做到这些,因为它是一个<Object>标签,所以不难将其放到一个页面上。然而,把播放器放上去还不过,播放器还得以正确的视频和相关的元数据(标题和链接)初始化。通常你可能用一个ASP.NETPHP页面读取参数并用其产生播放器来实现。但是你怎么将其传到播放器本身呢?幸运的是Silverlight有一个做这些的解决方案,它的<Object>标签上有一个自定义的参数列表。所以,例如,下面是网站上的一个视频的自定义参数:
  • 
        
    < param name = " initParams "
    value
    = " link=http://fr.youtube.com/watch?v=Z_-uKbBYwJk,
    video=http://mssilver.vo.llnwd.net/d1/webby/1000000000004265.wmv,
    height=520,width=587,title=Better than Prince
    " / >

     

 

The resulting player can be found HERE. 

由此产生的播放器可以在这里  找到。

 

So, thanks to the ease of integration of Silverlight on an existing site (even one built on non-Microsoft technology as the Webby awards site is), allowed us to go from zero to fully functioning, integrated functionality with only 2 people, in only 2 weeks.

所以,多亏了Silverlight在现有网站上的易集成性(即使是像Webby 奖网站这些用非微软技术建立的网站),使得我们只有两个人两周时间的情况下能从零起步到完成完整功能和功能集成。

转载于:https://www.cnblogs.com/Z731/archive/2010/09/14/13thAnnualWebbyAwardsPoweredBySilverlight.html

相关文章:

  • 网页-CSS
  • 王德兴读《吴越品水浒》有感15:吴越对“鲁智深出家”的无知和诬蔑
  • C#读取特定目录下的所有文件
  • debug下运行不成功
  • [转]Apache虚拟目录设置方法
  • 11个IT人士必备的Chrome 插件
  • javascript对象转化成json字符串
  • ffmpeg_intra_pred_mode问题.pdf
  • 全局原子应用之防止程序多开
  • 学习LoadRunner之C语言函数
  • .NET : 在VS2008中计算代码度量值
  • Ctrl+F5运行崩溃,而用F5调试运行没有问题
  • 我的关节炎给我的提示
  • Oracle基于时间点的恢复(转载)
  • 内核读写只读内存方法总结[Delphi描述][转帖]
  • Akka系列(七):Actor持久化之Akka persistence
  • CSS相对定位
  • HomeBrew常规使用教程
  • JavaScript 无符号位移运算符 三个大于号 的使用方法
  • JavaScript-Array类型
  • JAVA之继承和多态
  • mongo索引构建
  • mysql_config not found
  • SpringBoot 实战 (三) | 配置文件详解
  • WinRAR存在严重的安全漏洞影响5亿用户
  • 从PHP迁移至Golang - 基础篇
  • 前端js -- this指向总结。
  • 如何借助 NoSQL 提高 JPA 应用性能
  • 使用SAX解析XML
  • 译米田引理
  • 因为阿里,他们成了“杭漂”
  • 远离DoS攻击 Windows Server 2016发布DNS政策
  • 正则表达式小结
  • #stm32驱动外设模块总结w5500模块
  • #我与Java虚拟机的故事#连载11: JVM学习之路
  • #我与Java虚拟机的故事#连载18:JAVA成长之路
  • #在线报价接单​再坚持一下 明天是真的周六.出现货 实单来谈
  • (09)Hive——CTE 公共表达式
  • (附源码)springboot工单管理系统 毕业设计 964158
  • (附源码)springboot学生选课系统 毕业设计 612555
  • (个人笔记质量不佳)SQL 左连接、右连接、内连接的区别
  • (三)Hyperledger Fabric 1.1安装部署-chaincode测试
  • .NET Standard 的管理策略
  • .Net 中Partitioner static与dynamic的性能对比
  • .NET/C# 使窗口永不获得焦点
  • .net和jar包windows服务部署
  • .NET建议使用的大小写命名原则
  • .net开源工作流引擎ccflow表单数据返回值Pop分组模式和表格模式对比
  • .NET上SQLite的连接
  • @select 怎么写存储过程_你知道select语句和update语句分别是怎么执行的吗?
  • [ 蓝桥杯Web真题 ]-Markdown 文档解析
  • [1525]字符统计2 (哈希)SDUT
  • [2024] 十大免费电脑数据恢复软件——轻松恢复电脑上已删除文件
  • [Android Studio] 开发Java 程序
  • [BZOJ 1032][JSOI2007]祖码Zuma(区间Dp)