Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix sequelize order typings | Chocobozzz | 2021-10-22 | 1 | -1/+1 |
| | |||||
* | Fix my live videos filter | Chocobozzz | 2021-10-20 | 1 | -2/+2 |
| | |||||
* | Add channel filters for my videos/followers | Chocobozzz | 2021-10-20 | 1 | -1/+8 |
| | |||||
* | Fix notification on create transcoding job | Chocobozzz | 2021-10-11 | 1 | -2/+2 |
| | |||||
* | esModuleInterop to true | Chocobozzz | 2021-08-27 | 1 | -1/+1 |
| | |||||
* | Add support for saving video files to object storage (#4290) | Jelle Besseling | 2021-08-17 | 1 | -13/+38 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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> | ||||
* | Refactor options in models | Chocobozzz | 2021-07-29 | 1 | -57/+53 |
| | |||||
* | Refactor search query options | Chocobozzz | 2021-07-29 | 1 | -1/+2 |
| | |||||
* | Add ability to search by uuids/actor names | Chocobozzz | 2021-07-28 | 1 | -0/+3 |
| | |||||
* | Filter host for channels and playlists search | Chocobozzz | 2021-07-28 | 1 | -1/+1 |
| | |||||
* | Add ability to search by host in server | Chocobozzz | 2021-07-27 | 1 | -2/+4 |
| | |||||
* | Refactor video links builders | Chocobozzz | 2021-07-26 | 1 | -3/+4 |
| | |||||
* | Use random names for VOD HLS playlists | Chocobozzz | 2021-07-26 | 1 | -5/+7 |
| | |||||
* | Fix hooks definition | Chocobozzz | 2021-07-01 | 1 | -1/+0 |
| | |||||
* | Fix missing delete cascade video -> channel | Chocobozzz | 2021-07-01 | 1 | -1/+2 |
| | |||||
* | Don't check enum for video model | Chocobozzz | 2021-06-29 | 1 | -6/+0 |
| | | | | Licence, language and category could be extended by a remote plugin | ||||
* | Refactor live manager | Chocobozzz | 2021-06-17 | 1 | -1/+1 |
| | |||||
* | Include transaction in video hooks | Chocobozzz | 2021-06-11 | 1 | -11/+6 |
| | |||||
* | Cleanup video model scopes | Chocobozzz | 2021-06-11 | 1 | -55/+7 |
| | |||||
* | Move get* video methods to formatter | Chocobozzz | 2021-06-11 | 1 | -20/+0 |
| | |||||
* | Use raw SQL for most of video queries | Chocobozzz | 2021-06-11 | 1 | -120/+30 |
| | |||||
* | Fetch directly all video attributes for get API | Chocobozzz | 2021-06-11 | 1 | -3/+3 |
| | |||||
* | Use raw SQL for video get request | Chocobozzz | 2021-06-10 | 1 | -26/+3 |
| | |||||
* | Refactor video query builder | Chocobozzz | 2021-06-10 | 1 | -168/+19 |
| | |||||
* | Try to speed up AP update transaction | Chocobozzz | 2021-06-08 | 1 | -1/+1 |
| | |||||
* | Add tags to live logger | Chocobozzz | 2021-05-28 | 1 | -3/+3 |
| | |||||
* | Support '/w/' and '/w/p/' for watch page | Chocobozzz | 2021-05-28 | 1 | -1/+1 |
| | | | | And use them as default in client | ||||
* | Merge branch 'release/3.2.0' into develop | Chocobozzz | 2021-05-26 | 1 | -0/+1 |
|\ | |||||
| * | Fix broken lives handling | Chocobozzz | 2021-05-26 | 1 | -0/+1 |
| | | |||||
* | | Stricter models typing | Chocobozzz | 2021-05-12 | 1 | -4/+5 |
| | | |||||
* | | Cleanup models directory organization | Chocobozzz | 2021-05-11 | 1 | -4/+4 |
|/ | |||||
* | Update channel updatedAt when uploading a video | Chocobozzz | 2021-05-10 | 1 | -5/+2 |
| | |||||
* | Add ability to filter my videos by live | Chocobozzz | 2021-05-03 | 1 | -13/+39 |
| | |||||
* | Don't save other attributes when set as refreshed | Chocobozzz | 2021-04-12 | 1 | -2/+4 |
| | |||||
* | Merge branch 'release/3.1.0' into develop | Chocobozzz | 2021-04-08 | 1 | -1/+1 |
|\ | |||||
| * | Fix outbox fetch with subtitled videos | Chocobozzz | 2021-04-08 | 1 | -1/+1 |
| | | |||||
* | | Update data in DB when regenerate thumbnails | Chocobozzz | 2021-04-08 | 1 | -9/+0 |
| | | |||||
* | | Agnostic actor image storage | Chocobozzz | 2021-04-08 | 1 | -4/+6 |
|/ | |||||
* | Fix abuse tests | Chocobozzz | 2021-03-09 | 1 | -12/+12 |
| | |||||
* | Optimize views sort sql query | Chocobozzz | 2021-03-03 | 1 | -1/+6 |
| | |||||
* | Add ability to cleanup remote AP interactions | Chocobozzz | 2021-03-03 | 1 | -1/+19 |
| | |||||
* | Fix separate SQL query for video get | Chocobozzz | 2021-02-25 | 1 | -2/+3 |
| | |||||
* | Fix feeds | Chocobozzz | 2021-02-18 | 1 | -3/+3 |
| | |||||
* | Don't guess remote tracker URL | Chocobozzz | 2021-02-18 | 1 | -23/+31 |
| | |||||
* | Dissociate video file names and video uuid | Chocobozzz | 2021-02-18 | 1 | -47/+13 |
| | |||||
* | Generate a name for thumbnails | Chocobozzz | 2021-02-16 | 1 | -2/+3 |
| | | | | Allows aggressive caching | ||||
* | Allow to specify transcoding and import jobs concurrency | Chocobozzz | 2021-02-08 | 1 | -3/+1 |
| | |||||
* | Optimize videos list API endpoint | Chocobozzz | 2021-02-08 | 1 | -10/+11 |
| | |||||
* | add best trending strategy based on Reddit's best | Rigel Kent | 2021-02-04 | 1 | -2/+4 |
| | | | | | | inspired from https://www.reddit.com/r/changelog/comments/7spgg0/best_is_the_new_hotness/ this implementation only adds freshness, and doesn't personalize based on subscribed communities yet. | ||||
* | Support transcoding options/encoders by plugins | Chocobozzz | 2021-01-28 | 1 | -2/+2 |
| |