我是Microsoft Smooth Streaming的新手,对复合清单的制作有疑问 遵循here.
的指导我能够制作一个在Silverlight播放器中播放的单个剪辑元素的复合清单 但是,当我尝试从其他视频添加更多剪辑时,播放器停止工作并且没有提供任何错误信息。
我正在手工完成这一切。当我尝试使用Expression Encoder 4 Pro创建这样的视频时,我得到了一个普通的.ismc
文件,而不是.csm
文件。
我的问题是:
制作包含不同视频剪辑的复合清单的最佳方法是什么? 编码这些视频时是否有任何规范要遵循?或复合清单的支持是否对视频格式有任何限制?
最后一个是:有一种简单的方法来调试它(比如验证我的.csm文件)吗?
编辑我自己的解决方案:
看起来没有人关心这个,但是因为我终于解决了这个问题,所以我写这篇文章是为了节省别人的时间。
调试复合清单,我在Visual Studio中构建了一个简单的Silverlight应用程序,并添加了一个简单的函数来报告错误:
MainPage.xaml.cs中:
public MainPage()
{
InitializeComponent();
this.SmoothPlayer.SmoothStreamingErrorOccurred += new EventHandler<SmoothStreamingErrorEventArgs>(SmoothPlayer_SmoothStreamingErrorOccurred);
}
public void SmoothPlayer_SmoothStreamingErrorOccurred(object sender,
SmoothStreamingErrorEventArgs e)
{
MessageBox.Show("Error: " + e.ErrorCode + "; " + e.ErrorMessage);
}
我发现this网页很有用。
您需要使用:
<c t="", d"">
而不是
<c d="">
您必须正确计算ClipBegin
和ClipEnd
值。
下面是python中的示例代码,用于将.ismc
转换为.csm
(假设下面的ism是清单xml内容的xml.etree.ElementTree对象表示):
def ism2csm(url, ism):
if ism is None: return csm
csm = xml.Element('SmoothStreamingMedia', {'MajorVersion':'2', 'MinorVersion':'1', 'Duration':ism.attrib.get('Duration')})
clip = xml.Element('Clip', {'Url':url, 'ClipBegin':'0','ClipEnd':'0'})
csm.append(clip)
for stream_index in ism.iter('StreamIndex'):
clip.append(stream_index)
for stream_index in clip.iter('StreamIndex'):
t = 0
last_c = None
for c in stream_index.iter('c'):
c.attrib['t'] = str(t)
t += int(c.attrib.get('d'))
if last_c is not None: del last_c.attrib['d']
last_c = c
if clip.attrib.get('ClipEnd') == '0':
clip.attrib['ClipEnd'] = str(t)
return csm