はじまりの大地
このコミットが含まれているのは:
@@ -0,0 +1,92 @@
|
||||
async function register ({ transcodingManager }) {
|
||||
|
||||
// Output options
|
||||
{
|
||||
{
|
||||
const builder = () => {
|
||||
return {
|
||||
outputOptions: [
|
||||
'-r 10'
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
transcodingManager.addVODProfile('libx264', 'low-vod', builder)
|
||||
}
|
||||
|
||||
{
|
||||
const builder = (options) => {
|
||||
return {
|
||||
outputOptions: [
|
||||
'-r:' + options.streamNum + ' 50'
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
transcodingManager.addLiveProfile('libx264', 'high-live', builder)
|
||||
}
|
||||
}
|
||||
|
||||
// Input options
|
||||
{
|
||||
{
|
||||
const builder = () => {
|
||||
return {
|
||||
inputOptions: [
|
||||
'-r 5'
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
transcodingManager.addVODProfile('libx264', 'input-options-vod', builder)
|
||||
}
|
||||
|
||||
{
|
||||
const builder = () => {
|
||||
return {
|
||||
inputOptions: [
|
||||
'-r 50'
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
transcodingManager.addLiveProfile('libx264', 'input-options-live', builder)
|
||||
}
|
||||
}
|
||||
|
||||
// Scale filters
|
||||
{
|
||||
{
|
||||
const builder = () => {
|
||||
return {
|
||||
scaleFilter: {
|
||||
name: 'Glomgold'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
transcodingManager.addVODProfile('libx264', 'bad-scale-vod', builder)
|
||||
}
|
||||
|
||||
{
|
||||
const builder = () => {
|
||||
return {
|
||||
scaleFilter: {
|
||||
name: 'Flintheart'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
transcodingManager.addLiveProfile('libx264', 'bad-scale-live', builder)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async function unregister () {
|
||||
return
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
register,
|
||||
unregister
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "peertube-plugin-test-transcoding-one",
|
||||
"version": "0.0.1",
|
||||
"description": "Plugin test transcoding 1",
|
||||
"engine": {
|
||||
"peertube": ">=1.3.0"
|
||||
},
|
||||
"keywords": [
|
||||
"peertube",
|
||||
"plugin"
|
||||
],
|
||||
"homepage": "https://github.com/Chocobozzz/PeerTube",
|
||||
"author": "Chocobozzz",
|
||||
"bugs": "https://github.com/Chocobozzz/PeerTube/issues",
|
||||
"library": "./main.js",
|
||||
"staticDirs": {},
|
||||
"css": [],
|
||||
"clientScripts": [],
|
||||
"translations": {}
|
||||
}
|
||||
新しい課題から参照
ユーザをブロックする