aboutsummaryrefslogtreecommitdiff
path: root/src/main/extractor_metatypes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/extractor_metatypes.c')
-rw-r--r--src/main/extractor_metatypes.c97
1 files changed, 97 insertions, 0 deletions
diff --git a/src/main/extractor_metatypes.c b/src/main/extractor_metatypes.c
index 0b81053..979e210 100644
--- a/src/main/extractor_metatypes.c
+++ b/src/main/extractor_metatypes.c
@@ -444,6 +444,103 @@ static const struct MetaTypeDescription meta_type_descriptions[] = {
444 /* 180 */ 444 /* 180 */
445 { gettext_noop ("original filename"), 445 { gettext_noop ("original filename"),
446 gettext_noop ("name of the original file (reserved for GNUnet)") }, 446 gettext_noop ("name of the original file (reserved for GNUnet)") },
447 { gettext_noop ("disc count"),
448 gettext_noop ("count of discs inside collection this disc belongs to") },
449 { gettext_noop ("codec"),
450 gettext_noop ("codec the data is stored in") },
451 { gettext_noop ("video codec"),
452 gettext_noop ("codec the video data is stored in") },
453 { gettext_noop ("audio codec"),
454 gettext_noop ("codec the audio data is stored in") },
455 /* 185 */
456 { gettext_noop ("subtitle codec"),
457 gettext_noop ("codec/format the subtitle data is stored in") },
458 { gettext_noop ("container format"),
459 gettext_noop ("container format the data is stored in") },
460 { gettext_noop ("bitrate"),
461 gettext_noop ("exact or average bitrate in bits/s") },
462 { gettext_noop ("nominal bitrate"),
463 gettext_noop ("nominal bitrate in bits/s. The actual bitrate might be different from this target bitrate.") },
464 { gettext_noop ("minimum bitrate"),
465 gettext_noop ("minimum bitrate in bits/s") },
466 /* 190 */
467 { gettext_noop ("maximum bitrate"),
468 gettext_noop ("maximum bitrate in bits/s") },
469 { gettext_noop ("serial"),
470 gettext_noop ("serial number of track") },
471 { gettext_noop ("encoder"),
472 gettext_noop ("encoder used to encode this stream") },
473 { gettext_noop ("encoder version"),
474 gettext_noop ("version of the encoder used to encode this stream") },
475 { gettext_noop ("track gain"),
476 gettext_noop ("track gain in db") },
477 /* 195 */
478 { gettext_noop ("track peak"),
479 gettext_noop ("peak of the track") },
480 { gettext_noop ("album gain"),
481 gettext_noop ("album gain in db") },
482 { gettext_noop ("album peak"),
483 gettext_noop ("peak of the album") },
484 { gettext_noop ("reference level"),
485 gettext_noop ("reference level of track and album gain values") },
486 { gettext_noop ("location name"),
487 gettext_noop ("human readable descriptive location of where the media has been recorded or produced") },
488 /* 200 */
489 { gettext_noop ("location elevation"),
490 gettext_noop ("geo elevation of where the media has been recorded or produced in meters according to WGS84 (zero is average sea level)") },
491 { gettext_noop ("location horizontal error"),
492 gettext_noop ("represents the expected error on the horizontal positioning in meters") },
493 { gettext_noop ("location movement speed"),
494 gettext_noop ("speed of the capturing device when performing the capture. Represented in m/s") },
495 { gettext_noop ("location movement direction"),
496 gettext_noop ("indicates the movement direction of the device performing the capture of a media. It is represented as degrees in floating point representation, 0 means the geographic north, and increases clockwise") },
497 { gettext_noop ("location capture direction"),
498 gettext_noop ("indicates the direction the device is pointing to when capturing a media. It is represented as degrees in floating point representation, 0 means the geographic north, and increases clockwise") },
499 /* 205 */
500 { gettext_noop ("show episode number"),
501 gettext_noop ("number of the episode within a season/show") },
502 { gettext_noop ("show season number"),
503 gettext_noop ("number of the season of a show/series") },
504 { gettext_noop ("gourping"),
505 gettext_noop ("groups together media that are related and spans multiple tracks. An example are multiple pieces of a concerto") },
506 { gettext_noop ("device manufacturer"),
507 gettext_noop ("manufacturer of the device used to create the media") },
508 { gettext_noop ("device model"),
509 gettext_noop ("model of the device used to create the media") },
510 /* 210 */
511 { gettext_noop ("audio language"),
512 gettext_noop ("language of the audio track") },
513 { gettext_noop ("channels"),
514 gettext_noop ("number of audio channels") },
515 { gettext_noop ("sample rate"),
516 gettext_noop ("sample rate of the audio track") },
517 { gettext_noop ("audio depth"),
518 gettext_noop ("number of bits per audio sample") },
519 { gettext_noop ("audio bitrate"),
520 gettext_noop ("bitrate of the audio track") },
521 /* 215 */
522 { gettext_noop ("maximum audio bitrate"),
523 gettext_noop ("maximum audio bitrate") },
524 { gettext_noop ("video dimensions"),
525 gettext_noop ("width and height of the video track (WxH)") },
526 { gettext_noop ("video depth"),
527 gettext_noop ("numbers of bits per pixel") },
528 { gettext_noop ("frame rate"),
529 gettext_noop ("number of frames per second (as D/N or floating point)") },
530 { gettext_noop ("pixel aspect ratio"),
531 gettext_noop ("pixel aspect ratio (as D/N)") },
532 /* 220 */
533 { gettext_noop ("video bitrate"),
534 gettext_noop ("video bitrate") },
535 { gettext_noop ("maximum video bitrate"),
536 gettext_noop ("maximum video bitrate") },
537 { gettext_noop ("subtitle language"),
538 gettext_noop ("language of the subtitle track") },
539 { gettext_noop ("video language"),
540 gettext_noop ("language of the video track") },
541 { gettext_noop ("table of contents"),
542 gettext_noop ("chapters, contents or bookmarks (in xml format)") },
543 /* 225 */
447 { gettext_noop ("last"), 544 { gettext_noop ("last"),
448 gettext_noop ("last") } 545 gettext_noop ("last") }
449}; 546};