aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils/videos
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Fix tests timeoutChocobozzz2020-12-141-1/+6
|
* Fix live testsChocobozzz2020-12-091-11/+12
|
* emit more specific status codes on video upload (#3423)Rigel Kent2020-12-082-3/+9
| | | | | - reduce http status codes list to potentially useful codes - convert more codes to typed ones - factorize html generator for error responses
* replace numbers with typed http status codes (#3409)Rigel Kent2020-12-0712-74/+141
|
* Add permanent live supportChocobozzz2020-12-031-0/+10
|
* Try to fix live testChocobozzz2020-11-261-0/+5
|
* Fix live FPS limitChocobozzz2020-11-261-0/+1
|
* Add transcoding module commentsChocobozzz2020-11-251-2/+11
|
* Add live transcoding bit rate testsChocobozzz2020-11-252-16/+9
|
* Add admin view to manage commentsChocobozzz2020-11-161-1/+36
|
* Cleanup lives on server restartChocobozzz2020-11-131-0/+15
|
* Increase tests waitsChocobozzz2020-11-121-1/+1
|
* Remove deprecated abuse apiChocobozzz2020-11-101-114/+0
|
* Add live notification testsChocobozzz2020-11-091-0/+15
|
* Add save replay live testsChocobozzz2020-11-092-10/+58
|
* Add check constraints live testsChocobozzz2020-11-091-4/+42
|
* Begin live testsChocobozzz2020-11-091-6/+8
|