每个人!
我正在构建 JSON,但我不确定如何构建 JSON 的这一部分。
'playlist': [
{
'file': 'bunny.mp4',
'title': 'Big Buck Bunny Trailer',
'provder': 'rtmp',
'streamer': 'rtmp://rtmp.server.com/application',
'image': 'http://thumbnails.server.com/thumbs/bunny.jpg',
'duration': '33.03',
'description': 'An animated short from the Blender project'
},
{
'file': 'sintel.mp4',
'title': 'Sintel',
'streamer': 'rtmp://rtmp.server.com/application',
'image': 'http://thumbnails.server.com/thumbs/sintel.jpg',
'provider': 'rtmp',
'duration': '888.06',
'description': 'An animated short from the Blender project'
},
{
'file': 'elephant.mp4a',
'title': 'Elephant´s Dream',
'streamer': 'rtmp://rtmp.server.com/application',
'image': 'http://thumbnails.server.com/thumbs/elephant.jpg',
'provider': 'rtmp',
'duration': '653.79',
'description': 'An animated short from the Blender project'
}
]
我可以做播放列表部分,但我不确定三个子部分。
完整的 json 看起来像这样
{
'flashplayer': 'player.swf',
'id': 'playerID',
'width': '650',
'height': '240',
'playlist.position': 'right',
'playlist.size': '250',
'playlist': [
{
'file': 'bunny.mp4',
'title': 'Big Buck Bunny Trailer',
'provder': 'rtmp',
'streamer': 'rtmp://rtmp.server.com/application',
'image': 'http://thumbnails.server.com/thumbs/bunny.jpg',
'duration': '33.03',
'description': 'An animated short from the Blender project'
},
{
'file': 'sintel.mp4',
'title': 'Sintel',
'streamer': 'rtmp://rtmp.server.com/application',
'image': 'http://thumbnails.server.com/thumbs/sintel.jpg',
'provider': 'rtmp',
'duration': '888.06',
'description': 'An animated short from the Blender project'
},
{
'file': 'elephant.mp4a',
'title': 'Elephant´s Dream',
'streamer': 'rtmp://rtmp.server.com/application',
'image': 'http://thumbnails.server.com/thumbs/elephant.jpg',
'provider': 'rtmp',
'duration': '653.79',
'description': 'An animated short from the Blender project'
}
]
}
除了播放列表中的项目,我什么都能做。我之前使用的是字典对象,只是调用了 (JavaScriptSerializer) serializer.Serialize(ConfigurationDictionary) 将其转换为我想要的 JSON。
有没有办法通过播放列表部分中的部分获得我想要的结果?