/usr/include/mediascanner-1.0/mediascanner/propertyschema.h is in libmediascanner-dev 0.3.93+14.04.20131024.1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 | /*
* This file is part of the Ubuntu TV Media Scanner
* Copyright (C) 2012-2013 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Contact: Jim Hodapp <jim.hodapp@canonical.com>
* Authored by: Mathias Hasselmann <mathias@openismus.com>
*/
#ifndef MEDIASCANNER_PROPERTYSCHEMA_H
#define MEDIASCANNER_PROPERTYSCHEMA_H
// Media Scanner
#include "mediascanner/property.h"
namespace mediascanner {
namespace schema {
// Generic Properties //////////////////////////////////////////////////////////
// Public playback URL of the media, taken from GStreamer
struct ExternalUrl : public StringProperty { ExternalUrl(); }
extern const kExternalUrl;
// Home page URL of the media, taken from GStreamer
struct HomepageUrl : public StringProperty { HomepageUrl(); }
extern const kHomepageUrl;
// Author of the media, taken from Internet
struct Author : public TextProperty { Author(); }
extern const kAuthor;
// License of the media, taken from Internet
struct License : public StringProperty { License(); }
extern const kLicense;
// Copyright of the media, taken from Internet
struct Copyright : public StringProperty { Copyright(); }
extern const kCopyright;
struct CopyrightUri : public StringProperty { CopyrightUri(); }
extern const kCopyrightUri;
struct LicenseUri : public StringProperty { LicenseUri(); }
extern const kLicenseUri;
// Description of the media, taken from Internet
struct Description : public TextProperty { Description(); }
extern const kDescription;
// Rating of the media, taken from Internet and User
struct Rating : public NumericProperty<double> { Rating(); }
extern const kRating;
// Title of the media, taken from Internet
struct Title : public TextProperty { Title(); }
extern const kTitle;
// Original, untranslated title of the media, taken from Internet
struct OriginalTitle : public TextProperty { OriginalTitle(); }
extern const kOriginalTitle;
// Age certification of the media, taken from Internet
struct Certification : public StringProperty { Certification(); }
extern const kCertification;
// Region of an age certification
struct Region : public StringProperty { Region(); }
extern const kRegion;
// Comments of the media, taken from Internet
struct Comment : public TextProperty { Comment(); }
extern const kComment;
// Keywords of the media, taken from Internet and User
struct Keyword : public StringProperty { Keyword(); }
extern const kKeyword;
// Languages of the media, taken from Internet
struct Language : public StringProperty { Language(); }
extern const kLanguage;
struct Version : public StringProperty { Version(); }
extern const kVersion;
struct Organization : public StringProperty { Organization(); }
extern const kOrganization;
struct Contact : public StringProperty { Contact(); }
extern const kContact;
struct Grouping : public StringProperty { Grouping(); }
extern const kGrouping;
struct ApplicationName : public StringProperty { ApplicationName(); }
extern const kApplicationName;
struct Favourite : public NumericProperty<bool> { Favourite(); }
extern const kFavourite;
struct NetworkAvailable : public NumericProperty<bool> { NetworkAvailable(); }
extern const kNetworkAvailable;
// File Properties /////////////////////////////////////////////////////////////
// Local URL of the media, taken from File System
struct Url : public StringProperty { Url(); }
extern const kUrl;
// Last-change identifier of the media, taken from File System
struct ETag : public StringProperty { ETag(); }
extern const kETag;
// MIME type of the media, taken from GStreamer
struct MimeType : public StringProperty { MimeType(); }
extern const kMimeType;
// Last modification time of the media, taken from File System
struct LastModified : public DateTimeProperty { LastModified(); }
extern const kLastModified;
// File size of the media, taken from File System
struct FileSize : public NumericProperty<uint64_t> { FileSize(); }
extern const kFileSize;
// Last accessed time of the media, taken from File System
struct LastAccessed : public DateTimeProperty { LastAccessed(); }
extern const kLastAccessed;
// Media Properties ////////////////////////////////////////////////////////////
// Duration of the media, taken from GStreamer
struct Duration : public NumericProperty<int32_t> { Duration(); }
extern const kDuration;
// Seekability of the media, taken from GStreamer
struct Seekable : public NumericProperty<bool> { Seekable(); }
extern const kSeekable;
// Last played time of the media, taken from Client Apps
struct LastPlayed : public DateTimeProperty { LastPlayed(); }
extern const kLastPlayed;
// Play count of the media, taken from Client Apps
struct PlayCount : public NumericProperty<int32_t> { PlayCount(); }
extern const kPlayCount;
// Last playing position of the media, taken from Client Apps
struct LastPosition : public NumericProperty<int32_t> { LastPosition(); }
extern const kLastPosition;
// Producer of the media, taken from Internet
struct Producer : public TextProperty { Producer(); }
extern const kProducer;
// Performer of the media, taken from Internet
struct Performer : public TextProperty { Performer(); }
extern const kPerformer;
// Cover URLs for the media, taken from Internet
struct Cover : public StringProperty { Cover(); }
extern const kCover;
// Poster URLs for the media, taken from Internet
struct Poster : public StringProperty { Poster(); }
extern const kPoster;
// Date when the media was first published
struct PublicationDate : public DateTimeProperty { PublicationDate(); }
extern const kPublicationDate;
// Date when the media was first published
struct Studio : public StringProperty { Studio(); }
extern const kStudio;
// Genre of the media, taken from GStreamer
struct Genre : public StringProperty { Genre(); }
extern const kGenre;
struct EncodedBy : public StringProperty { EncodedBy(); }
extern const kEncodedBy;
struct ContainerFormat : public StringProperty { ContainerFormat(); }
extern const kContainerFormat;
struct Encoder : public StringProperty { Encoder(); }
extern const kEncoder;
struct EncoderVersion : public NumericProperty<int32_t> { EncoderVersion(); }
extern const kEncoderVersion;
// Music Properties ////////////////////////////////////////////////////////////
// Bitrate of the audio, taken from GStreamer
struct AudioBitRate : public NumericProperty<int32_t> { AudioBitRate(); }
extern const kAudioBitRate;
// Maximum bitrate of the audio, taken from GStreamer
struct MaximumAudioBitRate
: public NumericProperty<int32_t> { MaximumAudioBitRate(); }
extern const kMaximumAudioBitRate;
// Codec of the audio, taken from GStreamer
struct AudioCodec : public StringProperty { AudioCodec(); }
extern const kAudioCodec;
// Sample rate of the audio, taken from GStreamer
struct SampleRate : public NumericProperty<int32_t> { SampleRate(); }
extern const kSampleRate;
// Channel count of the audio, taken from GStreamer
struct ChannelCount : public NumericProperty<int32_t> { ChannelCount(); }
extern const kChannelCount;
// Album artist of the audio, taken from GStreamer
struct AlbumArtist : public TextProperty { AlbumArtist(); }
extern const kAlbumArtist;
// Composer of the audio, taken from GStreamer
struct Composer : public TextProperty { Composer(); }
extern const kComposer;
// Track count of the audio, taken from GStreamer
struct TrackCount : public NumericProperty<int32_t> { TrackCount(); }
extern const kTrackCount;
// Disc number of the audio, taken from GStreamer
struct DiscNumber : public NumericProperty<int32_t> { DiscNumber(); }
extern const kDiscNumber;
// Artist of the music, taken from GStreamer
struct Artist : public TextProperty { Artist(); }
extern const kArtist;
// Album of the music, taken from GStreamer
struct Album : public TextProperty { Album(); }
extern const kAlbum;
// Lyrics of the music, taken from GStreamer
struct Lyrics : public TextProperty { Lyrics(); }
extern const kLyrics;
// Track number of the music, taken from GStreamer
struct TrackNumber : public NumericProperty<int32_t> { TrackNumber(); }
extern const kTrackNumber;
struct AlbumVolumeNumber
: public NumericProperty<int32_t> { AlbumVolumeNumber(); }
extern const kAlbumVolumeNumber;
struct AlbumVolumeCount
: public NumericProperty<int32_t> { AlbumVolumeCount(); }
extern const kAlbumVolumeCount;
struct ISRC : public StringProperty { ISRC(); }
extern const kISRC;
struct TrackGain : public NumericProperty<double> { TrackGain(); }
extern const kTrackGain;
struct TrackPeak : public NumericProperty<double> { TrackPeak(); }
extern const kTrackPeak;
struct AlbumGain : public NumericProperty<double> { AlbumGain(); }
extern const kAlbumGain;
struct AlbumPeak : public NumericProperty<double> { AlbumPeak(); }
extern const kAlbumPeak;
struct ReferenceLevel : public NumericProperty<double> { ReferenceLevel(); }
extern const kReferenceLevel;
struct BeatsPerMinute : public NumericProperty<double> { BeatsPerMinute(); }
extern const kBeatsPerMinute;
// Image Properties ////////////////////////////////////////////////////////////
// Width of the media, taken from GStreamer
struct Width : public NumericProperty<int32_t> { Width(); }
extern const kWidth;
// Height of the media, taken from GStreamer
struct Height : public NumericProperty<int32_t> { Height(); }
extern const kHeight;
// Orientation of the image, taken from GStreamer/EXIF
struct ImageOrientation : public StringProperty {
class Private;
ImageOrientation();
} extern const kImageOrientation;
struct HorizontalResolution
: public NumericProperty<double> { HorizontalResolution(); }
extern const kHorizontalResolution;
struct VerticalResolution
: public NumericProperty<double> { VerticalResolution(); }
extern const kVerticalResolution;
// Photo Properties ////////////////////////////////////////////////////////////
// Date taken of the photo, taken from GStreamer/EXIF
struct DateTaken : public DateTimeProperty { DateTaken(); }
extern const kDateTaken;
// Camera model of the photo, taken from GStreamer/EXIF
struct DeviceModel : public TextProperty { DeviceModel(); }
extern const kDeviceModel;
// ISO speed of the photo, taken from GStreamer/EXIF
struct IsoSpeed : public NumericProperty<double> { IsoSpeed(); }
extern const kIsoSpeed;
// Exposure time of the photo, taken from GStreamer/EXIF
struct ExposureTime : public NumericProperty<Fraction> { ExposureTime(); }
extern const kExposureTime;
// Flash used of the photo, taken from GStreamer/EXIF
struct FlashUsed : public NumericProperty<bool> { FlashUsed(); }
extern const kFlashUsed;
// Camera manufacturer of the photo, taken from GStreamer/EXIF
struct DeviceManufacturer : public TextProperty { DeviceManufacturer(); }
extern const kDeviceManufacturer;
// Focal ratio of the photo, taken from GStreamer/EXIF
struct FocalRatio : public NumericProperty<double> { FocalRatio(); }
extern const kFocalRatio;
// Focal length of the photo, taken from GStreamer/EXIF
struct FocalLength : public NumericProperty<double> { FocalLength(); }
extern const kFocalLength;
// Metering mode of the photo, taken from GStreamer/EXIF
struct MeteringMode : public StringProperty { MeteringMode(); }
extern const kMeteringMode;
// White balance of the photo, taken from GStreamer/EXIF
struct WhiteBalance : public StringProperty { WhiteBalance(); }
extern const kWhiteBalance;
struct GeoLocationName : public StringProperty { GeoLocationName(); }
extern const kGeoLocationName;
struct GeoLocationLatitude
: public NumericProperty<double> { GeoLocationLatitude(); }
extern const kGeoLocationLatitude;
struct GeoLocationLongitude
: public NumericProperty<double> { GeoLocationLongitude(); }
extern const kGeoLocationLongitude;
struct GeoLocationElevation
: public NumericProperty<double> { GeoLocationElevation(); }
extern const kGeoLocationElevation;
struct GeoLocationCountry : public StringProperty { GeoLocationCountry(); }
extern const kGeoLocationCountry;
struct GeoLocationCity : public StringProperty { GeoLocationCity(); }
extern const kGeoLocationCity;
struct GeoLocationSublocation
: public StringProperty { GeoLocationSublocation(); }
extern const kGeoLocationSublocation;
struct GeoLocationHorizontalError
: public NumericProperty<double> { GeoLocationHorizontalError(); }
extern const kGeoLocationHorizontalError;
struct GeoLocationMovementSpeed
: public NumericProperty<double> { GeoLocationMovementSpeed(); }
extern const kGeoLocationMovementSpeed;
struct GeoLocationMovementDirection
: public NumericProperty<double> { GeoLocationMovementDirection(); }
extern const kGeoLocationMovementDirection;
struct GeoLocationCaptureDirection
: public NumericProperty<double> { GeoLocationCaptureDirection(); }
extern const kGeoLocationCaptureDirection;
struct CapturingDigitalZoomRatio
: public NumericProperty<double> { CapturingDigitalZoomRatio(); }
extern const kCapturingDigitalZoomRatio;
struct CapturingExposureProgram
: public StringProperty { CapturingExposureProgram(); }
extern const kCapturingExposureProgram;
struct CapturingExposureMode
: public StringProperty { CapturingExposureMode(); }
extern const kCapturingExposureMode;
struct CapturingExposureCompensation
: public NumericProperty<double> { CapturingExposureCompensation(); }
extern const kCapturingExposureCompensation;
struct CapturingSceneCaptureType
: public StringProperty { CapturingSceneCaptureType(); }
extern const kCapturingSceneCaptureType;
struct CapturingGainAdjustment
: public StringProperty { CapturingGainAdjustment(); }
extern const kCapturingGainAdjustment;
struct CapturingContrast : public StringProperty { CapturingContrast(); }
extern const kCapturingContrast;
struct CapturingSaturation : public StringProperty { CapturingSaturation(); }
extern const kCapturingSaturation;
struct CapturingSharpness : public StringProperty { CapturingSharpness(); }
extern const kCapturingSharpness;
struct CapturingFlashMode : public StringProperty { CapturingFlashMode(); }
extern const kCapturingFlashMode;
struct CapturingSource : public StringProperty { CapturingSource(); }
extern const kCapturingSource;
// Movie Properties ////////////////////////////////////////////////////////////
// Frame rate of the video, taken from GStreamer
struct FrameRate : public NumericProperty<Fraction> { FrameRate(); }
extern const kFrameRate;
// Show of the video, taken from Internet
struct ShowName : public TextProperty { ShowName(); }
extern const kShowName;
// Episode of the video, taken from Internet
struct Episode : public NumericProperty<int32_t> { Episode(); }
extern const kEpisode;
// Season of the video, taken from Internet
struct Season : public NumericProperty<int32_t> { Season(); }
extern const kSeason;
// Backdrops of the video, taken from Internet
struct Backdrop : public StringProperty { Backdrop(); }
extern const kBackdrop;
// Codec of the video, taken from GStreamer
struct VideoCodec : public StringProperty { VideoCodec(); }
extern const kVideoCodec;
// Bitrate of the video, taken from GStreamer
struct VideoBitRate : public NumericProperty<int32_t> { VideoBitRate(); }
extern const kVideoBitRate;
// Maximum bitrate of the video, taken from GStreamer
struct MaximumVideoBitRate
: public NumericProperty<int32_t> { MaximumVideoBitRate(); }
extern const kMaximumVideoBitRate;
// Director of the video, taken from Internet
struct Director : public TextProperty { Director(); }
extern const kDirector;
// Internet Movie Database ID, taken from TMDB
struct ImdbId : public StringProperty { ImdbId(); }
extern const kImdbId;
// The Movie Database ID, taken from TMDB
struct TmdbId : public StringProperty { TmdbId(); }
extern const kTmdbId;
} // namespace schema
} // namespace mediascanner
#endif // MEDIASCANNER_PROPERTYSCHEMA_H
|