peertube-theme-nctv-dark/peertube-plugin-transcoding...
Chocobozzz e63eede42f
Update version
2021-12-14 10:50:32 +01:00
..
README.md Add transcoding profile debug plugin 2021-01-29 13:57:32 +01:00
main.js Support copy 2021-12-14 10:50:23 +01:00
package.json Update version 2021-12-14 10:50:32 +01:00

README.md

Debug PeerTube transcoding profiles

Allow admins to create custom transcoding profiles using the plugin settings.

Settings format

Profiles

Don't forget the double quotes for fields and values

{
  "vod": [
    {
      "encoderName": string,
      "profileName": string,
      "outputOptions": string[]
    }
  ]

  "live": [
    {
      "encoderName": string,
      "profileName": string,
      "outputOptions": string[]
    }
  ]
}

For example:

{
  "vod": [
    {
      "encoderName": "libopus",
      "profileName": "test",
      "outputOptions": []
    },
    {
      "encoderName": "libvpx-vp9",
      "profileName": "test",
      "outputOptions": []
    }
  ],

  "live": []
}

Encoders priorities

Don't forget the double quotes for fields and values

{
  "vod": [
    {
      "encoderName": string,
      "streamType": 'audio' | 'video',
      "priority": number
    }
  ]

  "live": [
    {
      "encoderName": string,
      "streamType": 'audio' | 'video',
      "priority": number
    }
  ]
}

For example:

{
  "vod": [
    {
      "encoderName": "libopus",
      "streamType": "audio",
      "priority": 1000
    },
   {
      "encoderName": "libvpx-vp9",
      "streamType": "video",
      "priority": 1000
    }
  ],

  "live": [ ]
}