Good afternoon,
I am having trouble grasping the concept of how to programmatically extract videos from a database with the FTP batch provisioning method (a quick description). This link shows you how to make your own XML manifest file for uploading multiple assets, but my problem is that I need to do it programmatically via database.
Here is my code in C# that makes an XML doc based on parameters of the given video:
public class Class1
{
public static void main()
{
//get videos from database
//create a new XML doc
XmlDocument doc = new XmlDocument();
//load XML into document object (give a parameter selector?)
doc.LoadXml();
//for each video, transform into XML data via parameters below
//set root element in doc to first tag in a normal XML manifest file
Element root = doc.createElement("publisher-upload-manifest");
//create parameters for each attribute in root to be replaced
root.setAttribute("publisher-id", "1162425153001");
root.setAttribute("preparer", "PREPARER");
//append the new root tag to empty XML doc
doc.appendChild(root);
Element notify = doc.createElement("notify");
notify.setAttribute("email", "EMAIL");
//notfy is a child of root tag, so append as child to root, already in doc
root.appendChild("notify");
Element asset = doc.createElement("asset");
asset.setAttribute("filename", FILENAME);
asset.setAttribute("refid", REFID);
//size attribute is optional for error checking upload problems. Access by length in bytes.
asset.setAttribute("size".Long.toString(new File(FILENAME)).length());
//getMD5 is a method to create a checksum that allows Video Cloud to validate that the file was transferred succesfully
asset.setAttribute("hash-code", getMD5(FILENAME));
//setting the type globally for all videos to VIDEO_FULL ensures FLV and MP4 formats
asset.setAttribute("type", "VIDEO_FULL");
//append as child to root again
root.appendChild(asset);
Element title = doc.createElement("title");
title.setAttribute("name", NAME);
title.setAttribute("refid", REFID);
title.setAttribute("active", "TRUE");
title.setAttribute("video-full-reif", VIDEO_FULL_REFID);
//don't append title child yet because there are childs inside title (sub-elements) that have to be appended first
Element shortDesc = doc.createElement("short-description");
shortDesc.setTextContent("TEXT_CONTENT");
title.appendChild(shortDesc);
Element longDesc = doc.createElement("long-description");
longDescr.setTextContent("TEXT_CONTENT");
title.appendChild(longDescr);
root.appendChild(title);
//set doc equal to a parameter source?
//store each video selected after XML manipulation into a collection and upload to brightcove via client
}
If anyone could see anything that I might be doing wrong, please let me know! I'm kind of stuck at this point... Any idea of what to do next would help!
- Ben