aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils/videos
Commit message (Collapse)AuthorAgeFilesLines
* Add support for saving video files to object storage (#4290)Jelle Besseling2021-08-175-8/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Fix send rtmp commandChocobozzz2021-08-061-2/+2
|
* Limit live bitrateChocobozzz2021-08-062-7/+21
|
* Search channels against handles and not namesChocobozzz2021-07-293-3/+5
|
* Use random names for VOD HLS playlistsChocobozzz2021-07-262-8/+15
|
* Generate random uuid for video filesChocobozzz2021-07-262-29/+64
|
* Rename captions commandsChocobozzz2021-07-212-5/+5
|
* Add ability for instances to follow any actorChocobozzz2021-07-212-0/+31
|
* Reorganize importsChocobozzz2021-07-2012-27/+19
|
* Refactor requestsChocobozzz2021-07-2015-31/+34
|
* Centralize test URLsChocobozzz2021-07-201-38/+0
|
* Use an object to represent a serverChocobozzz2021-07-205-16/+16
|
* Shorter server command namesChocobozzz2021-07-207-18/+18
|
* Introduce videos commandChocobozzz2021-07-205-704/+618
|
* Introduce user commandChocobozzz2021-07-202-6/+4
|
* Introduce server commandsChocobozzz2021-07-205-32/+15
|
* Introduce notifications commandChocobozzz2021-07-201-1/+1
|
* Introduce comments commandChocobozzz2021-07-204-140/+135
|
* Introduce channels commandChocobozzz2021-07-204-194/+180
|
* Introduce streaming playlists commandChocobozzz2021-07-204-83/+123
|
* Introduce import commandChocobozzz2021-07-203-91/+87
|
* Introduce history commandChocobozzz2021-07-203-50/+60
|
* Introduce playlist commandChocobozzz2021-07-205-344/+307
|
* Introduce change ownership commandChocobozzz2021-07-203-73/+70
|
* Introduce captions commandChocobozzz2021-07-204-73/+85
|
* Introduce blacklist commandChocobozzz2021-07-203-80/+78
|
* Specify if we want to fallback to the server tokenChocobozzz2021-07-202-0/+4
|
* Shorter live methodsChocobozzz2021-07-202-16/+16
|
* Introduce services commandChocobozzz2021-07-203-25/+29
|
* Introduce live commandChocobozzz2021-07-203-133/+175
|
* Introduce search commandChocobozzz2021-07-201-4/+4
|
* Support short uuid for GET video/playlistChocobozzz2021-06-291-3/+3
|
* Refactor live managerChocobozzz2021-06-171-0/+7
|
* Fix video upload with a capitalized extChocobozzz2021-06-081-2/+3
|
* Refactor AP video create/updateChocobozzz2021-06-021-0/+2
|
* Resumable video uploads (#3933)kontrollanten2021-05-102-56/+213
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * WIP: resumable video uploads relates to #324 * fix review comments * video upload: error handling * fix audio upload * fixes after self review * Update server/controllers/api/videos/index.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * Update server/middlewares/validators/videos/videos.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * Update server/controllers/api/videos/index.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * update after code review * refactor upload route - restore multipart upload route - move resumable to dedicated upload-resumable route - move checks to middleware - do not leak internal fs structure in response * fix yarn.lock upon rebase * factorize addVideo for reuse in both endpoints * add resumable upload API to openapi spec * add initial test and test helper for resumable upload * typings for videoAddResumable middleware * avoid including aws and google packages via node-uploadx, by only including uploadx/core * rename ex-isAudioBg to more explicit name mentioning it is a preview file for audio * add video-upload-tmp-folder-cleaner job * stronger typing of video upload middleware * reduce dependency to @uploadx/core * add audio upload test * refactor resumable uploads cleanup from job to scheduler * refactor resumable uploads scheduler to compare to last execution time * make resumable upload validator to always cleanup on failure * move legacy upload request building outside of uploadVideo test helper * filter upload-resumable middlewares down to POST, PUT, DELETE also begin to type metadata * merge add duration functions * stronger typings and documentation for uploadx behaviour, move init validator up * refactor(client/video-edit): options > uploadxOptions * refactor(client/video-edit): remove obsolete else * scheduler/remove-dangling-resum: rename tag * refactor(server/video): add UploadVideoFiles type * refactor(mw/validators): restructure eslint disable * refactor(mw/validators/videos): rename import * refactor(client/vid-upload): rename html elem id * refactor(sched/remove-dangl): move fn to method * refactor(mw/async): add method typing * refactor(mw/vali/video): double quote > single * refactor(server/upload-resum): express use > all * proper http methud enum server/middlewares/async.ts * properly type http methods * factorize common video upload validation steps * add check for maximum partially uploaded file size * fix audioBg use * fix extname(filename) in addVideo * document parameters for uploadx's resumable protocol * clear META files in scheduler * last audio refactor before cramming preview in the initial POST form data * refactor as mulitpart/form-data initial post request this allows preview/thumbnail uploads alongside the initial request, and cleans up the upload form * Add more tests for resumable uploads * Refactor remove dangling resumable uploads * Prepare changelog * Add more resumable upload tests * Remove user quota check for resumable uploads * Fix upload error handler * Update nginx template for upload-resumable * Cleanup comment * Remove unused express methods * Prefer to use got instead of raw http * Don't retry on error 500 Co-authored-by: Rigel Kent <par@rigelk.eu> Co-authored-by: Rigel Kent <sendmemail@rigelk.eu> Co-authored-by: Chocobozzz <me@florianbigard.com>
* Add ability to filter my videos by liveChocobozzz2021-05-031-1/+15
|
* Increase ffmpeg error test timeoutChocobozzz2021-04-151-1/+1
|
* Add banner testsChocobozzz2021-04-081-6/+23
|
* Add ability to cleanup remote AP interactionsChocobozzz2021-03-031-1/+1
|
* Async torrent creationChocobozzz2021-02-251-3/+24
|
* Fix stats testsChocobozzz2021-02-191-0/+12
|
* Dissociate video file names and video uuidChocobozzz2021-02-181-3/+19
|
* Painfully debug concurrent import jobsChocobozzz2021-02-091-1/+1
|
* Update server dependenciesChocobozzz2021-02-031-1/+1
|
* Fix redundancy with HLS only filesChocobozzz2021-02-011-1/+1
|
* Use veryfast preset for default transcoding profileChocobozzz2021-01-291-0/+2
|
* Allow users/visitors to search through an account's videos (#3589)Rigel Kent2021-01-191-1/+4
| | | | | | | * WIP: account search * add search to account view * add tests for account search
* stricter youtubedl format selectors (#3516)Rigel Kent2021-01-151-1/+23
| | | | | | | | | | | | | | * 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
* Allow user to search through their watch history (#3576)Rigel Kent2021-01-131-1/+4
| | | | | | | * allow user to search through their watch history * add tests for search in watch history * Update client/src/app/shared/shared-main/users/user-history.service.ts