Package for umbraco 4.x/6.x that allows store multiples videos URL's with extra properties (also can be used to save lists of asstes, like media, links, pdf's, etc).
properties:
The list of videos or assets are stored in JSON fromat with the next structure:
[
{
"id": 0,
"title": "title of video",
"hash": "http://vimeo.com/user12113503/httpvimeocomthejackal",
"desc": "Description for video 0",
"mediaId": "1052"
},
{
"id": 1,
"title": "title of video 2",
"hash": "http://youtu.be/_646NA4sxJ8",
"desc": "",
"mediaId": "1049"
},
{
"id": 2,
"title": "title of video 3",
"hash": "http://video.mp4",
"desc": "lorem ipsum",
"mediaId": "1051"
}
]
This macro (can be easly refactored to work in umbraco v4.x) shows how to query the data stored form the VideoPicker and get it on the front end page, and then using embed.ly (uses oEmbed standard) provider get videos from: youtube, vimeo, or any other supported by embed.ly. Also you can build your own provider.
Download on Packages Files section.