MediaSilo is based on a few basic principles. Understanding these concepts will make developing against the API easy and will set your project up for success.
Media Organization
All media in MediaSilo is organized in projects. Projects are the core organizational layer that determines who has access to media. Assets are uploaded to projects, and users are added (or invited) to projects. Permissions are applied for each user on a project basis, so it is possible to add a user as a viewer to one project, and as a contributor to another.
Permissions
MediaSilo has a very flexible permission model consisting of two layers: Account level roles and project level permissions. Permissions are grouped into sets, given a name and are then applied to users on a project level.
Permission | Description |
---|---|
Administrator | Has access to everything in the system, including billing, reports, and all resources (projects, QuickLinks, users, etc.). Typically, you would reserve a separate login for an administrator and not use this account on a daily basis. |
Project Manager | Users marked as Project Managers can create new projects and invite users to these projects. They can also modify the permissions of users in their projects without affecting other projects, and they can remove users from projects they manage. |
User | This is a basic user account that needs to be assigned to projects before being able to do anything. |
Each account comes with default project permission sets that can be customized.
Delegation of User Responsibilities
MediaSilo scales from small independent teams to enterprises with thousands of users. What makes this work in the concept of delegation of responsibilities. To understand how this works, let's consider two examples:
Small Team (1-20): A 15-person post-house may assign one person to be the "go-to" MediaSilo administrator. That person is responsible for creating accounts and projects. The remaining team members are regular users in the system with different permissions assigned on a project level.
Medium Team (21-50): In addition to a central administrator, trusted Project Managers are given the permissions to create new projects and invite users as needed. The administrator creates global permissions that project managers can use to assign to users. This could include "Producer", "Press", "Contributor", or "Reviewer" roles. In this hybrid scenario, both Administrators and Project managers maintain users, projects, and media.
Large Team (50+): In larger teams, the central administrator role becomes overwhelming. Creating projects, assigning users, creating and managing user accounts can quickly turn into a time-consuming job. In this scenario, trusted Project Managers are given full responsibility over projects and users who can view media contained in those projects. A project can have multiple owners, which ensures that projects can be maintained even if the original project manager has moved on.
Scoping
It is important to understand that all media is restricted by projects. Project Managers who invite external users can only share media the Project Manager has access to. This ensures that Project Manager B on Project B can not access media for Project A unless Project Manager B has been explicitly added to that project. Furthermore, Project Managers can only invite users to projects they created or are assigned ownership of.
Media Storage
MediaSilo is built on Amazon's cloud infrastructure. Media is by default stored on S3. A popular option is to provide your own S3 account to take advantage of low storage prices.
All media requires a signature to be retrieved. This token is time-limited and may expire. Developers building front end applications should anticipate that media can expire. Expiration is indicated by the timestamp (in milliseconds) included in the URL signature.
Encoding
All ingested media is encoded to ensure playback on as many devices as possible. As a developer, you can take advantage of derivatives that provide you with different proxy version of files that certain platforms require. For instance, you could use a webm derivative to target Firefox browsers and choose H264 for iOS devices. For more information on derivatives, take a look at Asset Overview.
It is currently not possible to skip encoding, but our team is working on streamlining ingest to defer encoding and make submitted video available immediately. Check out developer blog for updates.
Scopes
In MediaSilo it is possible to manage completely autonomous and separate user groups. The most practical example is to separate all of Customer A and Project A from Customer B and Project B.
What makes this possible is project level scoping. Every user is scoped by the projects they can see. A user sending a QuickLink will only be able to send private links to users that have access to the same project as the sending users. Likewise, a global search would only search project and folders a user has been assigned to.