Sha256: ef17f00c4838d1802302215a9e4baa6689ab3def01befd3f9acb530499270bd0

Contents?: true

Size: 1.51 KB

Versions: 10

Compression:

Stored size: 1.51 KB

Contents

{
  "media_formats": {
    "1": {
      "name": "h264 Video 640x352",
      "type": "video",
      "priority": 3000,
      "width": 640,
      "height": 352,
      "aspect_ratio": "16/9",
      "mime_type": "video/mp4",
      "suffix": "_h264_640_480.mp4",
      "command": "cp {{in_file_name}} {{out_file_name}}",
      "criteria": [
        {"key": "video_codec", "operator": "equals", "value": "h264"},
        {"key": "width", "operator": "equals", "value": 640},
        {"key": "height", "operator": "equals", "value": 352},
        {"key": "ipod_uuid", "operator": "equals", "value": true},
        {"key": "audio_codec", "operator": "equals", "value": "aac"}
      ]
    },
    "2": {
      "name": "h264 HD 1280x720p",
      "type": "video",
      "priority": 10000,
      "width": 1280,
      "height": 720,
      "aspect_ratio": "16/9",
      "mime_type": "video/mp4",
      "suffix": "_h264_HD1280_720p.mp4",
      "command": "cp {{in_file_name}} {{out_file_name}}",
      "criteria": [
        {"key": "video_codec", "operator": "equals", "value": "h264"},
        {"key": "width", "operator": "equals", "value": 1280},
        {"key": "height", "operator": "equals", "value": 720},
        {"key": "audio_codec", "operator": "equals", "value": "aac"}
      ]
    }
  },
  
  "media_players": {
    "appletv": {
      "name": "AppleTV",
      "description": "Damn cool media player",
      "formats": ["1", "2"]
    },
    "ipod": {
      "name": "iPod",
      "description": "you know this thing!",
      "formats": ["1"]
    }
  }
}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
staugaard-transcoding_machine-0.0.2 test/fixtures/serialized_models.json
staugaard-transcoding_machine-0.1.0 test/fixtures/serialized_models.json
staugaard-transcoding_machine-0.1.1 test/fixtures/serialized_models.json
staugaard-transcoding_machine-0.1.2 test/fixtures/serialized_models.json
staugaard-transcoding_machine-0.1.3 test/fixtures/serialized_models.json
staugaard-transcoding_machine-0.1.4 test/fixtures/serialized_models.json
staugaard-transcoding_machine-0.1.5 test/fixtures/serialized_models.json
staugaard-transcoding_machine-0.2.2 test/fixtures/serialized_models.json
staugaard-transcoding_machine-0.2.3 test/fixtures/serialized_models.json
staugaard-transcoding_machine-0.2.4 test/fixtures/serialized_models.json