Proposal: Basic Digital Asset Management (DAM) Enhancements in Umbraco #17538
Replies: 4 comments 9 replies
-
You can already do this by adding your required fields to the Image media type. |
Beta Was this translation helpful? Give feedback.
-
Hi. Thanks for the proposal. I'll like to understand why your are not just providing this functionality as a package or in your custom solution? I doubt all solution would need this. |
Beta Was this translation helpful? Give feedback.
-
For me, this makes more sense as a package - we have 0 clients that need this - for them, it would only add confusion. The examples also assume that all media are images, a fallback image does not make sense for an audio file or a video. The additions that you're proposing could be done in less than 15 minutes for a new site that needs it so I would vote for not "bloating" the backoffice with these features for people that might not need it. BUT 😊 I do see one very valid point here. The media section is more or less a simple DAM (or at least could be made one) so from a communication standpoint Umbraco could promote the fact that it has a "built-in DAM" that is very extendable. |
Beta Was this translation helpful? Give feedback.
-
Looking at the proposed changes, I don't see the need for this in the core either. The fields can easily be added manually. I have looked at integrating our own DAM (Celum) into Umbraco and I think it could be easier. I would need the following to implement it:
If it were possible to provide a source other than the media archive in the media picker, we wouldn't need to build our own picker, and whatever was selected in the picker would also be related to the page. |
Beta Was this translation helpful? Give feedback.
-
Currently, Umbraco relies on third-party tools for advanced Digital Asset Management (DAM). While these integrations are useful, adding some basic DAM features directly within Umbraco's core functionality would greatly improve the user experience for content editors and simplify asset management. Below are the proposed enhancements:
Proposed Enhancements
Image License Field
Fallback Image Configuration
Expiration Date Field
How It Works
{
<img src="@Umbraco.Media(Model.Media.FallbackImage).Url" alt="Fallback Image" />
}
else
{
<img src="@Umbraco.Media(Model.Media.Id).Url" alt="@Model.Media.AltText" />
}
Benefits
Optional Enhancements
By introducing these basic DAM features, Umbraco can empower editors to manage digital assets efficiently while ensuring compliance and maintaining design consistency.
Beta Was this translation helpful? Give feedback.
All reactions