aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils/videos/videos.ts
Commit message (Collapse)AuthorAgeFilesLines
* Provide origin URL to client and fix remote shareChocobozzz2021-10-221-1/+2
|
* Generate random uuid for video filesChocobozzz2021-07-261-28/+61
|
* Reorganize importsChocobozzz2021-07-201-1/+1
|
* Refactor requestsChocobozzz2021-07-201-1/+1
|
* Use an object to represent a serverChocobozzz2021-07-201-5/+5
|
* Shorter server command namesChocobozzz2021-07-201-5/+5
|
* Introduce videos commandChocobozzz2021-07-201-690/+24
|
* Introduce user commandChocobozzz2021-07-201-2/+2
|
* Introduce server commandsChocobozzz2021-07-201-23/+7
|
* Introduce playlist commandChocobozzz2021-07-201-23/+0
|
* Introduce search commandChocobozzz2021-07-201-4/+4
|
* Support short uuid for GET video/playlistChocobozzz2021-06-291-3/+3
|
* 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-101-54/+204
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
|
* Add ability to cleanup remote AP interactionsChocobozzz2021-03-031-1/+1
|
* Async torrent creationChocobozzz2021-02-251-3/+24
|
* Dissociate video file names and video uuidChocobozzz2021-02-181-3/+19
|
* 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
* emit more specific status codes on video upload (#3423)Rigel Kent2020-12-081-2/+2
| | | | | - 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-071-21/+28
|
* Add live transcoding bit rate testsChocobozzz2020-11-251-11/+4
|
* Add save replay live testsChocobozzz2020-11-091-0/+9
|
* Split notification testsChocobozzz2020-06-161-11/+37
|
* Block comments from muted accounts/serversChocobozzz2020-05-291-1/+8
| | | | | | | | | | | | Add better control for users of comments displayed on their videos: * Do not forward comments from muted remote accounts/servers (muted by the current server or by the video owner) * Do not list threads and hide replies (with their children) of accounts/servers muted by the video owner * Hide from RSS comments of muted accounts/servers by video owners Use case: * Try to limit spam propagation in the federation * Add ability for users to automatically hide comments on their videos from undesirable accounts/servers (the comment section belongs to videomakers, so they choose what's posted there)
* Add video file metadata to download modal, via ffprobe (#2411)Rigel Kent2020-03-101-0/+9
| | | | | | | | | | | | | | | | | | | * Add video file metadata via ffprobe * Federate video file metadata * Add tests for file metadata generation * Complete tests for videoFile metadata federation * Lint migration and video-file for metadata * Objectify metadata from getter in ffmpeg-utils * Add metadataUrl to all videoFiles * Simplify metadata API middleware * Load playlist in videoFile when requesting metadata
* Move to eslintcontainChocobozzz2020-02-031-10/+11
|
* Add ability to list redundanciesChocobozzz2020-01-281-2/+16
|
* Remove HLS torrentsChocobozzz2020-01-241-1/+1
|
* Fix e2e testsChocobozzz2020-01-231-8/+6
|
* Add ability to skip count queryChocobozzz2020-01-081-1/+2
|
* Update validator dependencyChocobozzz2020-01-071-1/+1
|
* Add test to search in my videosChocobozzz2019-12-301-1/+2
|
* Add ability to disable webtorrentChocobozzz2019-11-251-2/+1
| | | | In favour of HLS
* Add avatar to prune scriptChocobozzz2019-08-091-4/+2
|
* Fix multiple server testsChocobozzz2019-08-011-1/+2
|
* Fix upload scriptChocobozzz2019-06-111-1/+4
|
* Server: Bulk update videos support fieldChocobozzz2019-05-311-0/+1
|
* Remove unused actor uuid fieldChocobozzz2019-05-311-1/+0
|
* All API tests in parallelChocobozzz2019-05-151-2/+2
|
* Shared utils -> extra-utilsChocobozzz2019-04-241-0/+648
Because they need dev dependencies