Template:Video metadata: Difference between revisions

no edit summary
(Created page with "{| class="wikitable" |+ ! colspan="2" |Metadata |- |Video Filename |{{{filename}}} |- |Video Name |{{{realname}}} |- |Date Code |{{{datecode}}} |- |Date of Render |{{{daterender}}} |- |Location |{{{filelocation}}} |- ! colspan="2" |Codec Details |- |Container |{{{container}}} |- |Video |{{{vidcodec}}} * {{{vidsize}}} * {{{vidfps}}} * {{{vidbitrate}}} * {{{vidcolspace}}} |- |Audio |{{{audcodec}}} * {{{audchannel}}} * {{{audsample}}} * {{{audbitrate}}} |}")
 
No edit summary
Line 38: Line 38:
* {{{audbitrate}}}  
* {{{audbitrate}}}  
|}
|}
<noinclude>
<templatedata>
{
"params": {
"filename": {
"label": "File name",
"description": "The name of the file as it appears in filesystems, including the extension (i.e. name.mp4)",
"type": "string",
"required": true
},
"realname": {
"label": "Real name",
"description": "The real name of the project or film, if any.",
"type": "string"
},
"datecode": {
"label": "Date code",
"description": "The date the video was created, rendered or first modified. The format of the date code is YYMMDD.",
"required": true
},
"daterender": {
"label": "Render date",
"description": "The date the video was rendered, if known.",
"type": "date"
},
"filelocation": {
"label": "File location",
"description": "The location of the file as it appears on file systems without the drive letter. Multiple locations can be used if the file is stored in more than one place.",
"required": true
},
"container": {
"label": "File container",
"description": "The extension of the file (i.e. mp4, avi, mov, etc.)",
"required": true
},
"vidcodec": {
"label": "Video codec",
"description": "The codec of the video.",
"example": "H.264",
"required": true
},
"vidsize": {
"label": "Video size",
"description": "The dimensions of the video in WxH.",
"example": "1920x1080",
"required": true
},
"vidfps": {
"label": "Video FPS",
"description": "The frame rate of the video",
"required": true
},
"vidbitrate": {
"label": "Video bitrate",
"description": "The bitrate of the video in kbps",
"required": true
},
"vidcolspace": {
"label": "Video colour space",
"description": "The colour space of the video",
"example": "YUV",
"required": true
},
"audcodec": {
"label": "Audio codec",
"description": "The codec of the audio",
"example": "MP3",
"required": true
},
"audchannel": {
"label": "Audio channels",
"description": "Describe the number of channels in the audio of the file",
"example": "Stereo",
"required": true
},
"audsample": {
"label": "Audio sample rate",
"description": "The sample rate of the audio in kHz",
"example": "44100kHz",
"required": true
},
"audbitrate": {
"label": "Audio bitrate",
"description": "The bitrate of the audio in kbps",
"example": "128kbps",
"required": true
}
}
}
</templatedata>
</noinclude>