Videos
This section provides you with an overview of the Videos Module API and guides you through the common tasks when working with videos.
The Video Module allows users to create video libraries and videos.
Sitefinity back-end provides you with a user-friendly interface to create video libraries and videos. You can also create them programmatically using the Native or Fluent APIs.
The section contains the following:
-
Managing video libraries
Describes how to create, query, search, modify and delete video libraries using Native or Fluent API.
-
Managing videos
Describes how to create, query, search, modify and delete videos inside a video library using Native or Fluent API.
To manage video libraries and videos through the Native API, you must add the following namespaces to your class:
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Libraries.Model;
using Telerik.Sitefinity.Modules.Libraries;
using Telerik.Sitefinity.Workflow;
To manage video libraries and videos through the Fluent API, you must add the following namespaces to your class:
using Telerik.Sitefinity;
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Libraries.Model;
using Telerik.Sitefinity.Workflow;
See Also