Difference between revisions of "MrC-temp"

From JRiverWiki
Jump to: navigation, search
m (Predefined Fields)
(expression page done)
 
(47 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==General==
+
'''This is MrC's scratch space for work-in-progress Wiki pages.'''
Media Center helps you manage, organize and view your files by maintaining a collection of properties on a per-file basis.  Each file managed by Media Center belongs to a particular media type (eg. audio, video, image), and each media type has a predefined set of properties available and valid for use.
 
  
Examples of file properties are ''Artist'', ''Album'' and ''Genre'' for audio files, ''Actor'', ''Director'', and ''Aspect Ratio'' for movies, and ''Width'', ''Height'' and ''Focal Length'' for images.
+
: <span style="color: red">'''Note:'''</span> The Expression language page is complete and is now at its permanent home:  [[ Media_Center_expression_language#Functions | Expression language functions]]
  
Initially, a file's properties are imported when the file is imported, or created when the file is created by Media Center (e.g. when ripping a CD or DVD). Typically, this data comes from a file's internal metadata (commonly referred to as '''tags'''), or is looked up from external databases.  In addition, several library tools are available to assist in creating or modifying properties and tags.
+
: Note: The Smartlist and Search - Rules and Modifiers page is now at its permanent home: [[Smartlist_and_Search_-_Rules_and_Modifiers|Smartlist and Search - Rules and Modifiers]]
  
Media Center can also save a file's properties to the internal metadata within the physical file itself. These tags are then available for use by other programs that support the specific file types.   The tags supported by a given file type are file type-specific, but there is often commonality or overlap in various media or file formats. Media Center helps manage this by automatically mapping essentially similar tags with different names into a standard set of properties.
+
: Note: The Regex() page is now at its permanent home: [[Media_Center_expression_language#Regex.28....29:_Regular_expression_pattern_matching_and_capture|MC expression language page]]
  
In addition, Media Center allows creation of an almost limitless number of custom (or user) properties.  This allows for managing information about files that is not predefined by Media Center or by a given format's standard tags.  These custom properties may also be saved to a file's tags, should the format support user-defined or extensible tags.
+
: Note: The File Properties page is now at its permanent home: [[File_Properties_%28tags%29|File Properties (tags) page]]
  
Saving file properties to the physical file allows tags to be re-imported by Media Center, and used by other programs on a variety of systems.  While typical metadata consumes a trivial amount of extra disk storage (relative to the file's size), larger metadata such as cover art, lyrics or extensive notes may be more noticeable, especially when files are exported to smaller devices such as handhelds.  See [[Save File Properties in Disk Files]] for more information.
+
----
  
The table below shows the standard default properties available in Media Center. File properties are listed and managed under:
+
Caution: Debris Ahead...
  
  '''Tools > Options... > Library & Folders > Manage Library Fields...'''
+
----
  
Note here that '''properties''' are called '''fields'''. This is primarily a technical and pedantic distinction.  The terms '''properties''', '''fields''', and '''tags''' become synonymous in common language, but do nonetheless maintain distinct meanings.  It might help to think of a spreadsheet, where column headers are fields, rows are files, and a row of individual cell values are the file's properties. If each row were saved to an external file, the row's cells would be called tags.  
+
... and more to come...
 
 
As briefly mentioned above, properties help manage and organize related files.  They can also be searched.  In all of these, either directly or indirectly, one or more library fields is used in the construction.
 
 
 
==Field Specifications==
 
The table below lists Media Center's default fields.  The rows list the available fields, and the columns indicate how the field is defined, and gives a brief explanation of the fields usage or meaning.  Where applicable, additional links and field-specific information is also listed.  The value for some fields is calculated by Media Center.  When possible, the expression used to derive this value is also shown.  In some cases, this value may be modified.
 
 
 
 
 
{| width="60%" style="float: right;" border="1" cellspacing="0" cellpadding="2"
 
|+ align="bottom" | ''Field Data Types''
 
!  style="background: #f9f9f9;" width="95pt" | Data Type
 
!  style="background: #f9f9f9;"              | Description
 
|-
 
| align="center" | String    || An unformatted sequence of characters.
 
|-
 
| align="center" | Integer    || A whole number (no decimal portion).
 
|-
 
| align="center" | Decimal    || A floating point number.
 
|-
 
| align="center" | Percentage || A decimal from 0 to 1 indicating 0% to 100%.
 
|-
 
| align="center" | List      || A semicolon-separated list of strings.
 
|-
 
| align="center" | Date      || A complex type that is either date-only, or date and time. (TBD: need refs)
 
|-
 
| align="center" | Unknown    || An unspecific catch-all type, not specifically defined.
 
|}
 
 
 
Each field defined in Media Center:
 
 
 
:* Has a standard, unchangeable name
 
:* Has a display name and its plural version (not currently shown in table)
 
:* Is valid for the specified media/file types (Audio, Image, Video, Data, TV)
 
:* Stores a particular type of data, or may be automatically calculated via expression (see ''Field Data Types'')
 
:* Has rules about its editability (see ''Field Edit Types'')
 
:* May have a list of acceptable values
 
:* May be stored in file tags (when possible)
 
:* May be searched when performing search queries, via the specified keyword(s) (not currently shown in table)
 
:* May or may not be relational (no default fields are currently relational)
 
:* May be hidden from normal view/usage (field names in italics)
 
 
 
{| width="60%" style="float: right;" border="1" cellspacing="0" cellpadding="1"
 
|+ align="bottom" | ''Field Edit Types''
 
!  style="background: #f9f9f9;" width="95pt" | Edit Type
 
!  style="background: #f9f9f9;"              | Description
 
|-
 
| align="center" | Standard  || A free-format, editable field.
 
|-
 
| align="center" | Clear-only || A clear-only field, whose value is set or updated by Media Center.
 
|-
 
| align="center" | Large      || A free-format, editable field, used for large data (e.g. lyrics, notes, descriptions). (TBD: recommended for data larger than XXX characters).
 
|-
 
| align="center" | Not editable || A non-editable field.
 
|-
 
| align="center" | File      || A file-path specification field.
 
|-
 
| align="center" | 5 Star    || A selectable, 5-star graphical field, typically used for ratings.
 
|-
 
| align="center" | Calculated, Editable || A calculated, editable field, whose initial value is automatically set.
 
|-
 
| align="center" | Calculated,<br />Not editable || A calculated, non-editable field whose value is automatically set.
 
|}
 
 
 
 
 
(TBD: in the source code, fields are grouped by certain categories (eg. statistics). are these useful to show?)
 
 
 
Note: Some fields are used internally by Media Center to maintain state information, and are not viewable in panes, categories, or the Tag Action Window.  These are typically configured through various options and settings dialogs.
 
 
 
 
 
 
 
 
 
==Predefined Fields==
 
{| border="1" cellspacing="0" cellpadding="1" width="100%"
 
! width="25%" align="left" valign="bottom" style="background: #f9f9f9;" | &nbsp;Field
 
!                          valign="bottom" style="background: #f9f9f9;" | Media<br/>Types
 
! style="background: #f9f9f9;" | &nbsp;S&nbsp;<br/>t<br/>o<br/>r<br/>e<br/>d
 
! style="background: #f9f9f9;" | &nbsp;S&nbsp;<br/>e<br/>a<br/>r<br/>c<br/>h
 
! width="75%" align="left" valign="bottom" style="background: #f9f9f9;" | Description
 
|-
 
| &nbsp;'''Access Rating'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Specifies the access rating when access control is in effect.
 
 
 
''See also:'' [[Access_Control|Access Control]]
 
|-
 
| &nbsp;'''Actors'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of a movie's actors.
 
|-
 
| &nbsp;'''Album'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The name of the album.
 
|-
 
| &nbsp;'''Album Artist'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Designates the artist to use for compilation albums. 
 
 
 
''See also:'' [[Album_Artist_and_Album_Artist_(Auto)|Album Artist and Album Artist (Auto)]]
 
|-
 
| &nbsp;'''Album Artist (auto)'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Calculated, Editable'''</span>
 
 
 
Automatically calculated based on the contents of an album's Artist tracks.
 
 
 
''Expression:'' AlbumArtist()
 
 
 
''See also:'' [[Album_Artist_and_Album_Artist_(Auto)|Album Artist and Album Artist (Auto)]]
 
|-
 
| &nbsp;'''Album Gain'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Decimal'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Clear-only'''</span>
 
 
 
Automatically calculated gain for an album, based on [[Replay_Gain|Replay Gain]].
 
 
 
''See also:'' [[Album_Gain|Album Gain]]
 
|-
 
| &nbsp;'''Album Type'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Calculated, Not editable'''</span>
 
 
 
Automatically calculated value indicating if the album has a single artist or multiple artists, and if the album is complete.
 
 
 
''Expression:'' AlbumType()
 
 
 
''See also:'' [[Multiple_Artist_Albums#Complete_Albums|Multiple Artist Albums#Complete Albums]]
 
|-
 
| &nbsp;'''Altitude'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Camera's GPS altitude when photo was taken. 
 
 
 
''See also:'' [[Photo_Tagging|Photo Tagging]]
 
|-
 
| &nbsp;'''Aperture'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Camera's aperture setting used to create the photo.
 
 
 
''See also:'' [[Photo_Tagging|Photo Tagging]]
 
|-
 
| &nbsp;'''Artist'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Track artist, or movie's director. 
 
 
 
''See also:'' [[Album_Artist_and_Album_Artist_(Auto)|Album Artist and Album Artist (Auto)]], [[YADB|YADB]]
 
|-
 
| &nbsp;'''Artist - Album (Year)'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Calculated, Not editable'''</span>
 
 
 
Automatically calculated field used for album grouping.
 
 
 
''Expression:'' Clean([Artist] - [Album] /([FormatDate([Date, 0), Year)/))
 
|-
 
| &nbsp;'''Aspect Ratio'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Video aspect ratio.
 
|-
 
| &nbsp;'''''Audio Analysis Info'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Automatically calculated data created and used by audio analysis engine. 
 
 
 
''See also:'' [[Audio_Settings_and_Analysis|Audio Settings and Analysis]], [[Analyze_Audio|Analyze Audio]]
 
|-
 
| &nbsp;'''Author'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''D'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of a document's authors.
 
|-
 
| &nbsp;'''Band'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Designates a track's band.
 
|-
 
| &nbsp;'''Bios'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Large'''</span>
 
 
 
Musician or group biography. (Musicmatch)
 
|-
 
| &nbsp;'''Bit Depth'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Audio / video bit depth.
 
|-
 
| &nbsp;'''Bitrate'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Audio / video bitrate, in bits per second (bps).
 
|-
 
| &nbsp;'''Bookmark'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Clear-only'''</span>
 
 
 
Specifies the bookmark location for resumption of playback.
 
|-
 
| &nbsp;'''BPM'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Beats-per-minute, calculated automaticaly during audio analysis.
 
|-
 
| &nbsp;'''Budget'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A movie's financial budget.
 
|-
 
| &nbsp;'''Camera'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Camera EXIF tag.
 
 
 
''See also:'' [[Photo_Tagging|Photo Tagging]]
 
|-
 
| &nbsp;'''Caption'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
An image's caption.
 
|-
 
| &nbsp;'''Catalog #'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
***TBD***
 
|-
 
| &nbsp;'''''Category Image Category'''''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
***TBD***
 
|-
 
| &nbsp;'''Channels'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Number of playback channels
 
|-
 
| &nbsp;'''Cinematographer'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of a movie's cinematographer(s).
 
|-
 
| &nbsp;'''Comment'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A general use comment field.
 
|-
 
| &nbsp;'''Complete Album'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Indicates if an album is a complete album. 
 
 
 
''See also:'' [[Multiple_Artist_Albums#Complete_Albums|Multiple Artist Albums#Complete Albums]]
 
|-
 
| &nbsp;'''Composer'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The composer of a piece or work, typically used with classical music.
 
|-
 
| &nbsp;'''Compression'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
The compression type and scheme used for compressed audio/video.
 
|-
 
| &nbsp;'''Conductor'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The conductor of a piece or work, typically used with classical music.
 
|-
 
| &nbsp;'''Copyright'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Media copyright information.
 
|-
 
| &nbsp;'''Country'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of countries relevant to the media.
 
|-
 
| &nbsp;'''Credits'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of movie credits.
 
|-
 
| &nbsp;'''Custom'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
General use custom field.
 
|-
 
| &nbsp;'''Custom 1'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
General use custom field (may not exist).
 
|-
 
| &nbsp;'''Custom 2'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
General use custom field (may not exist).
 
|-
 
| &nbsp;'''Custom 3'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
General use custom field (may not exist).
 
|-
 
| &nbsp;'''Date'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Date'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
General date of media.
 
|-
 
| &nbsp;'''Date (filename friendly)'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Calculated, Not editable'''</span>
 
 
 
A version of Date that has been cleaned for use in filenames.
 
 
 
''Expression:'' FormateDate(Filename)
 
|-
 
| &nbsp;'''Date Created'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Unknown'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
A file's creation date/time as reported by the system.
 
|-
 
| &nbsp;'''Date Imported'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Unknown'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
The date the media was imported into the MC / MJ database. 
 
 
 
''See also:'' [http://wiki.jriver.com/index.php/Imported_%28Date%29]
 
|-
 
| &nbsp;'''Date Modified'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Unknown'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
A file's modification date/time, as reported by the system.
 
|-
 
| &nbsp;'''Date Recorded'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Date'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The date/time of a video recording.
 
|-
 
| &nbsp;'''Day'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Calculated, Editable'''</span>
 
 
 
Day segment of Date. 
 
 
 
''Expression:'' FormatDate(Day)&DataType=[Number]
 
|-
 
| &nbsp;'''Description'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Large'''</span>
 
 
 
A general description of the media.
 
|-
 
| &nbsp;'''Dimensions'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Calculated, Not editable'''</span>
 
 
 
Automatically calculated image/video dimensions.
 
 
 
''Expression:'' Clean([Width] x [Height])
 
|-
 
| &nbsp;'''Direction'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Camera's directional heading when photo was taken.
 
 
 
''See also:'' [[Photo_Tagging|Photo Tagging]]
 
|-
 
| &nbsp;'''Director'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of a movie's directors.
 
|-
 
| &nbsp;'''Disc #'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The disc number, for multi-disc audio or video sets. 
 
 
 
''See also:'' [[Multidisc_Albums|Multidisc Albums]]
 
|-
 
| &nbsp;'''Distributor'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of a movie's distrubutors.
 
|-
 
| &nbsp;'''''DLNA Server Info'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Internal information for the MC DLNA server.
 
|-
 
| &nbsp;'''Duration'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Unknown'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
The duration of an audio / video track.
 
|-
 
| &nbsp;'''''DVD Video Info'''''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Internal information used for a DVD.
 
|-
 
| &nbsp;'''''Edit Info'''''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Internal information used for image editting.
 
|-
 
| &nbsp;'''Editor'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of the editor(s) used to capture/create a video.
 
|-
 
| &nbsp;'''Encoding Settings'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''Episode'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Episode number of a television / video series.
 
|-
 
| &nbsp;'''Episode URL'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
URL of a single podcast episode.
 
|-
 
| &nbsp;'''Events'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list to specifiy relevant events for the media.
 
|-
 
| &nbsp;'''Feed URL'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
URL of a podcast feed.
 
|-
 
| &nbsp;'''File Size'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Unknown'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
A file's on disc size (human readable, unitized and rounded).
 
|-
 
| &nbsp;'''File Type'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The type of file (eg. mp3, jpg, flac, pdf).
 
|-
 
| &nbsp;'''Filename'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''Unknown'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''File'''</span>
 
 
 
The full pathname to the location of a file.
 
|-
 
| &nbsp;'''Filename (name)'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Calculated, Editable'''</span>
 
 
 
The name-only portion of [Filename]. 
 
 
 
''Expression:'' FileName()
 
|-
 
| &nbsp;'''Filename (path)'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Unknown'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Calculated, Editable'''</span>
 
 
 
The path-only portion of [Filename]. 
 
 
 
''Expression:'' FilePath()&DataType[Path]
 
|-
 
| &nbsp;'''Flash'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Indicates if a camera's flash was used to take image. 
 
 
 
''See also:'' [[Photo_Tagging|Photo Tagging]]
 
|-
 
| &nbsp;'''''Flickr Info'''''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''Focal Length'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
The lens focal length used when a image was captured.
 
 
 
''See also:'' [[Photo_Tagging|Photo Tagging]]
 
|-
 
| &nbsp;'''FPS'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Decimal'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The number of frames-per-second in a video/movie.
 
|-
 
| &nbsp;'''Genre'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Genre of media.
 
 
 
''See also:'' [[YADB|YADB]]
 
|-
 
| &nbsp;'''''Get Cover Art Info'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''Gross Revenue'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A movie's gross reported revenue.
 
|-
 
| &nbsp;'''Grouping'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
For support of the iTunes Grouping field. 
 
 
 
''See also:'' [http://yabb.jriver.com/interact/index.php?action=printpage;topic=51694.0]
 
|-
 
| &nbsp;'''Height'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
The height dimension of an image/video (see also Dimensions above).
 
|-
 
| &nbsp;'''Image File'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Unknown'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
The name of the associated artwork for audio/video.
 
|-
 
| &nbsp;'''Instrument'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A song's primary instrument.
 
|-
 
| &nbsp;'''Intensity'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A musical intensity metric automatically calculated during audio analysis. <br />Values: 1, 2, 3, 4, 5
 
|-
 
| &nbsp;'''ISO'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
The ISO standard film speed used when an image was captured.
 
 
 
''See also:'' [[Photo_Tagging|Photo Tagging]]
 
|-
 
| &nbsp;'''Keywords'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of user-defined keywords.
 
|-
 
| &nbsp;'''Language'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of languages.
 
|-
 
| &nbsp;'''Last Played'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Unknown'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Clear-only'''</span>
 
 
 
Date / time the file was last played or viewed.
 
|-
 
| &nbsp;'''Last Skipped'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Unknown'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Clear-only'''</span>
 
 
 
Date / time the file was last skipped. 
 
 
 
''See also:'' Skip Count
 
|-
 
| &nbsp;'''Latitude'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Camera's GPS latitude when photo was taken. 
 
 
 
''See also:'' [[Photo_Tagging|Photo Tagging]]
 
|-
 
| &nbsp;'''''Library Server Info'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Internal information used to manage state for Library Server.
 
|-
 
| &nbsp;'''''Library Server Key'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Internal authorization key used to help secure Library Server.
 
|-
 
| &nbsp;'''''Library Server URL'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
URL used to specify location of Library Server.
 
|-
 
| &nbsp;'''Longitude'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Camera's GPS longitude when photo was taken. 
 
 
 
''See also:'' [[Photo_Tagging|Photo Tagging]]
 
|-
 
| &nbsp;'''Lyricist'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The lyricist resonsible for a work.
 
|-
 
| &nbsp;'''Lyrics'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Large'''</span>
 
 
 
User-stored lyrics or transcription.
 
|-
 
| &nbsp;'''Media Sub Type'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
More specific sub-classification of Media Type. <br />Values: Adult, Audiobook, Home Video, Karaoke, Movie, Music Video, Other, Podcast, Radio, Remix, Short, Single, TV Show
 
|-
 
| &nbsp;'''Media Type'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
General classification of media type. <br />Values: Audio, Image, Video, TV, Data, Playlist
 
|-
 
| &nbsp;'''Mix Album'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Used to specify if an album is a mix album.
 
|-
 
| &nbsp;'''Month'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Calculated, Editable'''</span>
 
 
 
Month segment of Date.
 
 
 
''Expression:'' FormatDate(Month)&DataType=[Month]
 
|-
 
| &nbsp;'''Mood'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
General mood classification of a song. (Musicmatch)
 
|-
 
| &nbsp;'''MPAA Rating'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A movies MPAA rating.
 
|-
 
| &nbsp;'''MPAA Rating Description'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A textual description of MPAA rating.
 
|-
 
| &nbsp;'''Music By'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of people responsible for a movie's music.
 
|-
 
| &nbsp;'''Name'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The primary name assosciated with a file.
 
|-
 
| &nbsp;'''Notes'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Large'''</span>
 
 
 
General notes assosciated with a file.
 
|-
 
| &nbsp;'''Number Plays'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Clear-only'''</span>
 
 
 
An automatically updated statistic indicating the number of times a file has been played/viewed.
 
 
 
''See also:'' [[Changing_the_number_of_plays|Changing the number of plays]]
 
|-
 
| &nbsp;'''Orchestra'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The name of the orchestra responsible for performing a piece, typically used with classical music.
 
|-
 
| &nbsp;'''Original Title'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The original title given to a work.
 
|-
 
| &nbsp;'''Peak Level'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Percentage'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Clear-only'''</span>
 
 
 
An automatically calculated value indicating the percentage of an audio track's maximum level before clipping would occur.
 
 
 
''See also:'' [[Overflow_Handling|Overflow Handling]], [[Technical_Information_on_Replay_Gain_Adjustment|Technical Information on Replay Gain Adjustment]], [[Analyze_Audio|Analyze Audio]], [http://yabb.jriver.com/interact/index.php?action=printpage;topic=64042.0]
 
|-
 
| &nbsp;'''People'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of people assosciated with a work.
 
|-
 
| &nbsp;'''Period'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A musical period, typically used with classical music.
 
|-
 
| &nbsp;'''Places'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of places assosciated with a work.
 
|-
 
| &nbsp;'''''Playback Channel Key'''''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Playback Device'''''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''Playback Info'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''Playback Range'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Specifies the begin and end times for A-B repeat.
 
 
 
''See also:'' [http://yabb.jriver.com/interact/index.php?topic=53866.msg368141#msg368141]
 
|-
 
| &nbsp;'''Preference'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A subjective classification of a user's preference for a song. (Musicmatch)
 
|-
 
| &nbsp;'''Prequel'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The prequel to a movie.
 
|-
 
| &nbsp;'''Producer'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of responsible producer(s)
 
|-
 
| &nbsp;'''Protection Type'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Indication of the type of DRM protection.
 
|-
 
| &nbsp;'''Publisher'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A work's publisher.
 
|-
 
| &nbsp;'''Rating'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''5 Star'''</span>
 
 
 
A 5-star user rating.
 
|-
 
| &nbsp;'''''Read Only'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Indicates if the file is read-only.  <br />Values: 0, 1
 
|-
 
| &nbsp;'''''Recording Rule ID'''''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
An internal ID representing a TV recording rule.
 
|-
 
| &nbsp;'''Removable'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Calculated, Not editable'''</span>
 
 
 
Indicates if the file resides on removable media. 
 
 
 
''Expression:'' IsRemovable()
 
|-
 
| &nbsp;'''Replay Gain'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Decimal'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Clear-only'''</span>
 
 
 
An automatically calculated value indicating the gain to be applied to an audio track. 
 
 
 
''See also:'' [[Replay_Gain|Replay Gain]], [[Album_Gain|Album Gain]], [[Audio_Settings_and_Analysis|Audio Settings and Analysis]], [[Analyze_Audio|Analyze Audio]]
 
|-
 
| &nbsp;'''Rotation'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The rotation (in degrees) applied to an image.
 
|-
 
| &nbsp;'''Sample Rate'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
The rate of sampling for an audio/video file.
 
|-
 
| &nbsp;'''Screenwriter'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The screenwriter responsible for a movie.
 
|-
 
| &nbsp;'''Season'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The season of a movie/video series.
 
|-
 
| &nbsp;'''Sequel'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The sequel to a movie.
 
|-
 
| &nbsp;'''Series'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The series information for a movie or TV show.
 
|-
 
| &nbsp;'''Series Description'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A description of the series for a movie or TV show.
 
|-
 
| &nbsp;'''Shutter Speed'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
The shutter speed used to capture an image.
 
 
 
''See also:'' [[Photo_Tagging|Photo Tagging]]
 
|-
 
| &nbsp;'''Situation'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A subjective choice of situations for when playing the song would be appropriate or relevant. (Musicmatch)
 
|-
 
| &nbsp;'''Skip Count'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Clear-only'''</span>
 
 
 
An automatically updated statistic indicating the number of times a file has been skipped. 
 
 
 
''See also:'' Last Skipped
 
|-
 
| &nbsp;'''Soloists'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of soloists for a music work, typically used in classical music.
 
|-
 
| &nbsp;'''''Stack Conversion Type'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Stack Files'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Stack Tag'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Stack Top'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Indicates if the file is the top of a stack.
 
|-
 
| &nbsp;'''''Stack View'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Album ID'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Album Popularity'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Amg Album Review'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Amg Artist Bio'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Artist ID'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Artist Popularity'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Asset Code'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Assosciated Video ID'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Available Asset'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Download Date'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Date'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Genre ID'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: License Count'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: License Reissue Count'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: MP3 Available'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: MusicNet File GUID'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: New Release'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''Store Field: Number of Tracks'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Playlist Description'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Playlist Guid'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Playlist Image'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Playlist Name'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Playlist Type'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''Store Field: Purchase Date'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Date'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Purchase Description'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Ranking'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Similar Artists'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''Store Field: Store Name'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''Store Field: Track ID'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''Studios'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''List'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A semicolon-separated list of responsible movie studios.
 
|-
 
| &nbsp;'''Style'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A musical style, typically used to further refine genre.
 
|-
 
| &nbsp;'''Tag Line'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A movie's branding or slogan.
 
|-
 
| &nbsp;'''Tempo'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
A subjective indication of a track's tempo. (Musicmatch)
 
|-
 
| &nbsp;'''Text'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''D'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
General text describing a data file.
 
|-
 
| &nbsp;'''''Thumbnail Info'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Internal information used for view thumbnails.
 
|-
 
| &nbsp;'''''Thumbnail Info (Local)'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Internal information used for view thumbnails.
 
|-
 
| &nbsp;'''''Thumbnail Offset Large'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Internal information used for view thumbnails.
 
|-
 
| &nbsp;'''''Thumbnail Offset Medium'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Internal information used for view thumbnails.
 
|-
 
| &nbsp;'''''Thumbnail Offset Small'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
Internal information used for view thumbnails.
 
|-
 
| &nbsp;'''Track #'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&#10003;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The track number of the song within an album.
 
|-
 
| &nbsp;'''TV Channel'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
The TV channel used for a TV recording.
 
 
 
''See also:'' [http://yabb.jriver.com/interact/index.php?topic=48127.0]
 
|-
 
| &nbsp;'''''TV Channel Number'''''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Defines remote channel number used to tune TV Channel. 
 
 
 
''See also:'' [http://yabb.jriver.com/interact/index.php?topic=48127.0]
 
|-
 
| &nbsp;'''''TV Tuner Input Type'''''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''''TV XMLTV ID'''''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Stores ID used when mapping a channel to XMLTV data. 
 
 
 
''See also:'' [http://yabb.jriver.com/interact/index.php?topic=48127.0]
 
|-
 
| &nbsp;'''UPC'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Universal Product Code.
 
|-
 
| &nbsp;'''''Usage Reporting Info'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''Use Bookmarking'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
Specifies if bookmarking is active for the track / video.  <br />Values: Default, Yes, No
 
|-
 
| &nbsp;'''Video Standard'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The encoding/decoding video standard in use (eg. NTSC, PAL, SECAM).
 
|-
 
| &nbsp;'''Volume Name'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The name of the volume on which the file resides. 
 
 
 
''Expression:'' FileVolume()
 
|-
 
| &nbsp;'''''Web Media Info'''''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''Web Media Search'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
''Description''
 
|-
 
| &nbsp;'''Web Media URL'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&#10003;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Standard'''</span>
 
 
 
The URL of a remote media file.
 
|-
 
| &nbsp;'''Width'''
 
| align="left" | <tt>&nbsp;'''&nbsp;'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Not editable'''</span>
 
 
 
The width dimension of an image/video (see also Dimensions above).
 
|-
 
| &nbsp;'''Year'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''I'''&nbsp;'''V'''&nbsp;'''D'''&nbsp;'''T'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''Integer'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Calculated, Editable'''</span>
 
 
 
Year segment of Date.
 
 
 
''Expression:'' FormatDate(Year)&DataType=[Number] 
 
 
 
''See also:'' [[YADB|YADB]]
 
|-
 
| &nbsp;'''Year - Album'''
 
| align="left" | <tt>&nbsp;'''A'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;'''&nbsp;</tt>
 
| &nbsp;'''&nbsp;'''
 
| &nbsp;'''&nbsp;'''
 
| ''Data Type'': '''String'''<span style="float: right; width: 22em; text-align: right;">''Edit Type'': '''Calculated, Not editable'''</span>
 
 
 
An combination of Year and Album used for views, sorting, etc.
 
 
 
''Expression:'' Clean(FormatDate([Date, ], Year) - [Album])
 
|}
 
[1 MikeBook2:JRMC] $
 
 
 
==Custom Fields==
 
Custom fields may be added with the '''Add New Field''' button in the Tools > Options > Libraries & Folders > Manage Library Fields... dialog.
 
 
 
== Tag Import Options==
 
Media Center provides a few options for the importation of tags for some file types.  These options are available via Plug-in Manager > Input for the given file type.  Select the Configure button for a given type, if available.
 
 
 
For images and video, Media Center will fill in the Album field with the year of the image or video (if the album field is otherwise empty).  This puts a reasonable value there when importing directly from a digital camera.  (TBD - should this be moved?  Is it comprehensive wrt other types/fields?)
 
 
 
==Classical Music==
 
The tagging of classical music is unfortunately more complex and standards are lax.  See [[Tagging Classical Music]].
 
 
 
==Photos==
 
For more comprehensive information on tagging photos, see [[Photo Tagging]].
 
 
 
==More==
 
* [[Check if a file contains tag information]]
 
* [[Edit File Properties (tags)]]
 
* [[Save File Properties in Disk Files]]
 
* [[Remove Tags]]
 
* [[Sync the database and tags]]
 
* [[Licensed Files (Windows Media Manager)]]
 
* [[Multiple Artist Albums]]
 
* [[Re-rip existing music and keep tags and statistics]]
 
* [[Tree & View Settings]]
 
* [[Library Tools]]
 
* [[Cover Art]]
 
* [http://yabb.jriver.com/interact/index.php?topic=62389.0]
 
 
 
 
 
For more information on tag/metadata specifications for file formats, refer to the following external websites:
 
 
 
* mp3: [http://www.id3.org]
 
* Vorbis/FLAC: [http://xiph.org/vorbis/doc/v-comment.html]
 
* exif: ...
 
* jpg: ...
 
* ...
 

Latest revision as of 14:18, 26 August 2013

This is MrC's scratch space for work-in-progress Wiki pages.

Note: The Expression language page is complete and is now at its permanent home: Expression language functions
Note: The Smartlist and Search - Rules and Modifiers page is now at its permanent home: Smartlist and Search - Rules and Modifiers
Note: The Regex() page is now at its permanent home: MC expression language page
Note: The File Properties page is now at its permanent home: File Properties (tags) page

Caution: Debris Ahead...


... and more to come...