MovPackage

MovPackage class

Represents QuickTime metadata.

public sealed class MovPackage : CustomPackage

Properties

Name Description
Album { get; } Album or collection name of which the movie content forms a part
Artist { get; } Name of the artist who created the movie file content.
Artwork { get; } A single image that can represent the movie file content.
Atoms { get; } Gets an array of MovAtom atoms.
Author { get; } Name of the author of the movie file content.
Comment { get; } User entered comment regarding the movie file content.
Copyright { get; } Copyright statement for the movie file content.
Count { get; } Gets the number of metadata properties.
CreationDate { get; } The date the movie file content was created.
Description { get; } Description of the movie file content.
Director { get; } Name of the director of the movie content.
Genre { get; } Text describing the genre or genres to which the movie content conforms.
Information { get; } Information about the movie file content.
Item { get; } Gets the MetadataProperty with the specified name.
Keys { get; } Gets a collection of the metadata property names.
Keywords { get; } Keywords associated with the movie file content.
LocationBody { get; } The astronomical body, for compatibility with the 3GPP format
LocationDate { get; } A date and time, stored using the extended format defined in ISO 8601:2004- Data elements and interchange format.
LocationFacing { get; } An indication of the direction the camera is facing during the shot.
LocationMotion { get; } An indication of the direction the camera is moving during the shot.
LocationName { get; } Name of the location.
LocationNote { get; } Descriptive comment.
LocationRole { get; } A single byte, binary value containing a value from the set: 0 indicates “shooting location”, 1 indicates “real location”, 2 indicates “fictional location”. Other values are reserved.
MetadataType { get; } Gets the metadata type.
MovieCreationTime { get; set; } A 32-bit integer that specifies the creation calendar date and time for the movie atom.
MovieDuration { get; } A time value that indicates the duration of the movie in seconds.
MovieModificationTime { get; set; } A 32-bit integer that specifies the calendar date and time of the last change to the movie atom.
Producer { get; } Name of producer of movie file content.
PropertyDescriptors { get; } Gets a collection of descriptors that contain information about properties accessible through the GroupDocs.Metadata search engine.
Publisher { get; } Name of publisher of movie file content.
Software { get; } Name of software used to create the movie file content.
Title { get; } The title of the movie file content.
UserRatings { get; } A number, assigned by the user, that indicates the rating or relative value of the movie. This number can range from 0.0 to 5.0. A value of 0.0 indicates that the user has not rated the movie.
Users { get; } A name indicating a user-defined collection that includes this movie.
Year { get; } Year when the movie file or the original content was created or recorded.

Methods

Name Description
virtual AddProperties(Func<MetadataProperty, bool>, PropertyValue) Adds known metadata properties satisfying the specified predicate. The operation is recursive so it affects all nested packages as well.
Contains(string) Determines whether the package contains a metadata property with the specified name.
virtual FindProperties(Func<MetadataProperty, bool>) Finds the metadata properties satisfying the specified predicate. The search is recursive so it affects all nested packages as well.
GetEnumerator() Returns an enumerator that iterates through the collection.
virtual RemoveProperties(Func<MetadataProperty, bool>) Removes metadata properties satisfying the specified predicate.
virtual Sanitize() Removes writable metadata properties from the package. The operation is recursive so it affects all nested packages as well.
virtual SetProperties(Func<MetadataProperty, bool>, PropertyValue) Sets known metadata properties satisfying the specified predicate. The operation is recursive so it affects all nested packages as well. This method is a combination of AddProperties and UpdateProperties. If an existing property satisfies the predicate its value is updated. If there is a known property missing in the package that satisfies the predicate it is added to the package.
virtual UpdateProperties(Func<MetadataProperty, bool>, PropertyValue) Updates known metadata properties satisfying the specified predicate. The operation is recursive so it affects all nested packages as well.

Remarks

Learn more

See Also