Hi,
I have been trying to create a video gallery which will contain multiple episodes. Each episode is divided into a group of 6 videos, and each group of videos has been placed inside a separate directory.
I have created a metadata schema and added some fields like name and description, for the moment. The metadata schema was applied to the videos and the metadata was entered for each video. An asset listing page was created to display these videos, but I am unable to display the metadata assigned to each video.
In the Concepts Manual, Metadata Keyword Replacement, I found that %asset_metadata_<fieldname>% can be used to display a specific metadata field, but it is not working.
Do you have any clues why this is not working, or how can make this work?
Many Thanks
Hey Dorian,
So if you add %asset_metadata_name% %asset_metadata_description% nothing is printed?
You might also want to check that your metadata field names contain no spaces: %asset_metadata_My Field% wont work, it would have to be something like %asset_metadata_My.Field%. Spaces for field names will break the keyword format and output nothing.
I figured out what is going on, and it is a little bit silly… 
In the WYSIWYG, I had %asset_metadata_description% and when I was previewing the asset listing page the output was %asset_metadata_description%, literally. My mistake was that I have copied %asset_metadata from a website, while I was searching on how the metadata work, and then added _description% myself.
This morning after seeing your replies and confirmed that I was doing it the correctly way, I switched the view to HTML and noticed that there was an html tag inside the keyword… %asset_metadata<abbr title=""></abbr>_description% which was messing up the whole thing!
After removing the html tag I was able to see the needed results…
Thanks for your replies!