mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 10:19:35 +02:00
Support transcoding options/encoders by plugins
This commit is contained in:
parent
529b37527c
commit
1896bca09e
32 changed files with 754 additions and 135 deletions
|
@ -27,6 +27,14 @@ function getLoggerReplacer () {
|
|||
seen.add(value)
|
||||
}
|
||||
|
||||
if (value instanceof Set) {
|
||||
return Array.from(value)
|
||||
}
|
||||
|
||||
if (value instanceof Map) {
|
||||
return Array.from(value.entries())
|
||||
}
|
||||
|
||||
if (value instanceof Error) {
|
||||
const error = {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue