aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/ffmpeg
Commit message (Collapse)AuthorAgeFilesLines
* Migrate server to ESMChocobozzz2023-08-115-171/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sorry for the very big commit that may lead to git log issues and merge conflicts, but it's a major step forward: * Server can be faster at startup because imports() are async and we can easily lazy import big modules * Angular doesn't seem to support ES import (with .js extension), so we had to correctly organize peertube into a monorepo: * Use yarn workspace feature * Use typescript reference projects for dependencies * Shared projects have been moved into "packages", each one is now a node module (with a dedicated package.json/tsconfig.json) * server/tools have been moved into apps/ and is now a dedicated app bundled and published on NPM so users don't have to build peertube cli tools manually * server/tests have been moved into packages/ so we don't compile them every time we want to run the server * Use isolatedModule option: * Had to move from const enum to const (https://www.typescriptlang.org/docs/handbook/enums.html#objects-vs-enums) * Had to explictely specify "type" imports when used in decorators * Prefer tsx (that uses esbuild under the hood) instead of ts-node to load typescript files (tests with mocha or scripts): * To reduce test complexity as esbuild doesn't support decorator metadata, we only test server files that do not import server models * We still build tests files into js files for a faster CI * Remove unmaintained peertube CLI import script * Removed some barrels to speed up execution (less imports)
* Fix audio transcoding copyChocobozzz2023-05-091-1/+1
|
* Implement remote runner jobs in serverChocobozzz2023-05-0913-1423/+171
| | | | Move ffmpeg functions to @shared
* Reencode the video on cutChocobozzz2023-02-141-7/+20
| | | | | Unfortunately copying audio/video is not precise enough and could lead to inconsistencies
* Fix audio out of synced on studio cutChocobozzz2023-02-141-1/+4
|
* Fix server lintChocobozzz2022-11-151-1/+1
|
* Fix retranscoding of odd resolutionChocobozzz2022-11-071-1/+3
|
* Fix running again transcoding on a video only fileChocobozzz2022-11-071-1/+4
|
* Put private videos under a specific subdirectoryChocobozzz2022-10-241-1/+12
|
* Correctly handle RTMP streams without audioChocobozzz2022-09-281-3/+21
|
* Don't use hexa for av01 codecChocobozzz2022-09-121-3/+6
|
* Fix level for AV1Chocobozzz2022-09-091-5/+3
|
* Prefer using our pick functionChocobozzz2022-08-171-1/+1
|
* Fix transcoding of quad audio channelsChocobozzz2022-08-101-1/+1
|
* Move to bullmqChocobozzz2022-08-092-3/+3
|
* Limit import depending on transcoding resolutionsChocobozzz2022-08-091-8/+14
|
* Add option to not transcode original resolutionChocobozzz2022-08-092-13/+25
|
* Add ability to delete a specific video fileChocobozzz2022-08-011-4/+4
|
* Correctly set mp3 codec string in hls playlistChocobozzz2022-07-131-0/+1
|
* Add program date time to live playlistChocobozzz2022-04-191-1/+1
|
* Add latency setting supportChocobozzz2022-03-091-7/+32
|
* Add basic video editor supportChocobozzz2022-02-289-0/+1328