{
  "name": "multi-bitrate-transcode",
  "sources": [
    {
      "name": "src",
      "type": "rtmp_pull",
      "config": {
        "url": "rtmp://input.example.com/live/source"
      }
    }
  ],
  "nodes": [],
  "sinks": [
    {
      "name": "hd_out",
      "type": "rtmp_push",
      "inputs": ["src"],
      "config": {
        "urls": ["rtmp://cdn.example.com/live/hd"],
        "encoding": {
          "videoCodec": "h264",
          "videoBitrateBps": 4000000,
          "maxFps": 30
        }
      }
    },
    {
      "name": "sd_out",
      "type": "rtmp_push",
      "inputs": ["src"],
      "config": {
        "urls": ["rtmp://cdn.example.com/live/sd"],
        "encoding": {
          "videoCodec": "h264",
          "videoBitrateBps": 1000000,
          "maxFps": 30
        }
      }
    },
    {
      "name": "ld_out",
      "type": "rtmp_push",
      "inputs": ["src"],
      "config": {
        "urls": ["rtmp://cdn.example.com/live/ld"],
        "encoding": {
          "videoCodec": "h264",
          "videoBitrateBps": 500000,
          "maxFps": 24
        }
      }
    }
  ]
}
