aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/job-queue/handlers/video-import.ts
Commit message (Collapse)AuthorAgeFilesLines
* Fix shared importsChocobozzz2021-12-241-5/+6
|
* Fix video import transcodingChocobozzz2021-12-231-2/+2
|
* Fix audio only transcodingChocobozzz2021-12-231-5/+11
|
* chore(refactor): remove shared folder dependencies to the serverlutangar2021-12-161-1/+1
| | | | | | | | | | | Many files from the `shared` folder were importing files from the `server` folder. When attempting to use Typescript project references to describe dependencies, it highlighted a circular dependency beetween `shared` <-> `server`. The Typescript project forbid such usages. Using project references greatly improve performance by rebuilding only the updated project and not all source files. > see https://www.typescriptlang.org/docs/handbook/project-references.html
* Rewrite youtube-dl importChocobozzz2021-10-221-3/+3
| | | | | | | | Use python3 binary Allows to use a custom youtube-dl release URL Allows to use yt-dlp (youtube-dl fork) Remove proxy config from configuration to use HTTP_PROXY and HTTPS_PROXY env variables
* More robust webtorrent redundancy downloadChocobozzz2021-09-061-1/+1
| | | | | Avoid issues with inconsistencies between magnet infohash and torrent infohash, blocking webtorrent upload that will timeout
* esModuleInterop to trueChocobozzz2021-08-271-4/+4
|
* Add support for saving video files to object storage (#4290)Jelle Besseling2021-08-171-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add support for saving video files to object storage * Add support for custom url generation on s3 stored files Uses two config keys to support url generation that doesn't directly go to (compatible s3). Can be used to generate urls to any cache server or CDN. * Upload files to s3 concurrently and delete originals afterwards * Only publish after move to object storage is complete * Use base url instead of url template * Fix mistyped config field * Add rudenmentary way to download before transcode * Implement Chocobozzz suggestions https://github.com/Chocobozzz/PeerTube/pull/4290#issuecomment-891670478 The remarks in question: Try to use objectStorage prefix instead of s3 prefix for your function/variables/config names Prefer to use a tree for the config: s3.streaming_playlists_bucket -> object_storage.streaming_playlists.bucket Use uppercase for config: S3.STREAMING_PLAYLISTS_BUCKETINFO.bucket -> OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET (maybe BUCKET_NAME instead of BUCKET) I suggest to rename moveJobsRunning to pendingMovingJobs (or better, create a dedicated videoJobInfo table with a pendingMove & videoId columns so we could also use this table to track pending transcoding jobs) https://github.com/Chocobozzz/PeerTube/pull/4290/files#diff-3e26d41ca4bda1de8e1747af70ca2af642abcc1e9e0bfb94239ff2165acfbde5R19 uses a string instead of an integer I think we should store the origin object storage URL in fileUrl, without base_url injection. Instead, inject the base_url at "runtime" so admins can easily change this configuration without running a script to update DB URLs * Import correct function * Support multipart upload * Remove import of node 15.0 module stream/promises * Extend maximum upload job length Using the same value as for redundancy downloading seems logical * Use dynamic part size for really large uploads Also adds very small part size for local testing * Fix decreasePendingMove query * Resolve various PR comments * Move to object storage after optimize * Make upload size configurable and increase default * Prune webtorrent files that are stored in object storage * Move files after transcoding jobs * Fix federation * Add video path manager * Support move to external storage job in client * Fix live object storage tests Co-authored-by: Chocobozzz <me@florianbigard.com>
* Improve target bitrate calculationChocobozzz2021-08-061-3/+3
|
* Refactor notifierChocobozzz2021-08-021-2/+2
|
* Generate random uuid for video filesChocobozzz2021-07-261-2/+2
|
* Fix lintChocobozzz2021-06-081-1/+0
|
* Fix video upload with a capitalized extChocobozzz2021-06-081-1/+2
|
* Instance homepage support (#4007)Chocobozzz2021-05-271-3/+3
| | | | | | | | | | | | | | | | | * Prepare homepage parsers * Add ability to update instance hompage * Add ability to set homepage as landing page * Add homepage preview in admin * Dynamically update left menu for homepage * Inject home content in homepage * Add videos list and channel miniature custom markup * Remove unused elements in markup service
* Use a class for youtube-dlChocobozzz2021-05-111-2/+5
|
* CleanupChocobozzz2021-02-181-1/+1
|
* Dissociate video file names and video uuidChocobozzz2021-02-181-3/+5
|
* Remove previous thumbnail if neededChocobozzz2021-02-161-2/+10
|
* Guess if we need to generate the thumbnail for importsChocobozzz2021-02-121-15/+6
|
* Painfully debug concurrent import jobsChocobozzz2021-02-091-22/+41
|
* Add priority to transcoding jobsChocobozzz2021-01-251-2/+2
| | | | | | | | | | (1 = highest priority) 100 for new resolutions 10 for original file optimization Add a malus for transcoding jobs depending on how many uploads the user did in the last 7 days
* Fix (again) youtube importChocobozzz2021-01-191-1/+1
|
* stricter youtubedl format selectors (#3516)Rigel Kent2021-01-151-1/+5
| | | | | | | | | | | | | | * stricter youtubedl format selectors make sure selectors avoid av1, and otherwise match as closely to the maximum resolution enabled for transcoding * add support for merge formats in youtubedl * avoid vp9.2 in youtubedl to avoid any HDR * move getEnabledResolutions, safer replace of imported extension * add test for youtube-dl selectors
* Split ffmpeg utils with ffprobe utilsChocobozzz2020-11-251-1/+1
|
* Check live duration and sizeChocobozzz2020-11-091-1/+2
|
* Split types and typingsChocobozzz2020-06-181-2/+2
|
* Add server plugin filter hooks for import with torrent and url (#2621)Rigel Kent2020-05-141-19/+57
| | | | | | | | | | | * Add server plugin filter hooks for import with torrent and url * WIP: pre and post-import filter hooks * Rebased * Cleanup filters to accept imports Co-authored-by: Chocobozzz <me@florianbigard.com>
* Avoir some circular dependenciesChocobozzz2020-05-041-20/+3
|
* Add thumbnail / preview generation from url on the fly (#2646)Kim2020-04-201-35/+7
| | | | | | | | | | | * Add thumbnails generation on the fly to URL import * Display generated preview to import first edit * Use ternary to get type inference * Move preview/thumbnail test just after import Co-authored-by: kimsible <kimsible@users.noreply.github.com>
* Support audio files importChocobozzz2020-04-031-14/+21
|
* Move to eslintcontainChocobozzz2020-02-031-1/+1
|
* Add ability to disable webtorrentChocobozzz2019-11-251-6/+6
| | | | In favour of HLS
* Add auto follow back support for instancesChocobozzz2019-09-041-1/+4
|
* Cleanup model typesChocobozzz2019-08-201-11/+11
|
* Stronger model typingsChocobozzz2019-08-191-17/+21
|
* Correctly notify on auto blacklistChocobozzz2019-07-241-2/+2
|
* Add audio support in uploadChocobozzz2019-05-161-0/+1
|
* Upgrade sequelizeChocobozzz2019-04-241-13/+7
|
* Create a dedicated table to track video thumbnailsChocobozzz2019-04-241-18/+23
|
* Don't expose constants directly in initializers/Chocobozzz2019-04-111-1/+2
|
* Move config in its own fileChocobozzz2019-04-111-2/+3
|
* add quarantine videos feature (#1637)Josh Morel2019-04-021-1/+6
| | | | | | | | | | | | | | | | | | | | * add quarantine videos feature * increase Notification settings test timeout to 20000ms. was completing 7000 locally but timing out after 10000 on travis * fix quarantine video test issues -propagate misspelling -remove skip from server/tests/client.ts * WIP use blacklist for moderator video approval instead of video.quarantine boolean * finish auto-blacklist feature
* Rename video-file job to video-transcodingChocobozzz2019-03-191-1/+1
|
* Add import finished and video published notifsChocobozzz2019-01-091-0/+3
|
* Add notification settings migrationChocobozzz2019-01-091-3/+4
|
* Add user notification base codeChocobozzz2019-01-091-0/+2
|
* Use move instead renameChocobozzz2018-12-111-2/+2
| | | | To avoid EXDEV errors
* Add tmp and redundancy directoriesChocobozzz2018-12-041-5/+4
|
* Fix images size when downloading themChocobozzz2018-11-161-5/+5
|
* Add timeout on youtube dl to cleaup filesChocobozzz2018-10-011-3/+3
|