aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video/video.ts
Commit message (Collapse)AuthorAgeFilesLines
* store uploaded video filename (#4885)kontrollanten2022-06-211-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * store uploaded video filename closes #4731 * dont crash if videos channel exist * migration: use raw query * video source: fixes after code review * cleanup * bump migration * updates after code review * refactor: use checkUserCanManageVideo * videoSource: add openapi doc * test(check-params/video-source): fix timeout * Styling * Correctly set original filename as source Co-authored-by: Chocobozzz <me@florianbigard.com>
* Fix my videos total counterChocobozzz2022-05-241-4/+6
|
* Support live session in serverChocobozzz2022-05-031-1/+1
|
* Support video views/viewers stats in serverChocobozzz2022-04-151-1/+1
| | | | | | | | | | * Add "currentTime" and "event" body params to view endpoint * Merge watching and view endpoints * Introduce WatchAction AP activity * Add tables to store viewer information of local videos * Add endpoints to fetch video views/viewers stats of local videos * Refactor views/viewers handlers * Support "views" and "viewers" counters for both VOD and live videos
* Don't store remote rates of remote videosChocobozzz2022-03-181-1/+15
| | | | | In the future we'll stop to expose all available rates to improve users privacy
* Process video torrents in orderChocobozzz2022-03-161-0/+18
| | | | Prevent update before video torrent generation for example
* Add basic video editor supportChocobozzz2022-02-281-3/+3
|
* Implement avatar miniatures (#4639)kontrollanten2022-02-281-7/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * client: remove unused file * refactor(client/my-actor-avatar): size from input Read size from component input instead of scss, to make it possible to use smaller avatar images when implemented. * implement avatar miniatures close #4560 * fix(test): max file size * fix(search-index): normalize res acc to avatarMini * refactor avatars to an array * client/search: resize channel avatar to 120 * refactor(client/videos): remove unused function * client(actor-avatar): set default size * fix tests and avatars full result When findOne is used only an array containting one avatar is returned. * update migration version and version notations * server/search: harmonize normalizing * Cleanup avatar miniature PR Co-authored-by: Chocobozzz <me@florianbigard.com>
* Update server dependenciesChocobozzz2022-01-141-1/+2
|
* Fix audio transcoding with video only fileChocobozzz2022-01-061-4/+12
|
* Move uuid stuff in extra utilsChocobozzz2021-12-291-1/+2
| | | | Since it requires an external dependency
* Fix shared importsChocobozzz2021-12-241-6/+15
|
* Move test functions outside extra-utilsChocobozzz2021-12-171-2/+1
|
* Move typescript utils in its own directoryChocobozzz2021-12-161-2/+3
|
* 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
* Fix torrent metadata update for hlsChocobozzz2021-12-091-15/+0
|
* Update torrent metadata on video updateChocobozzz2021-12-081-0/+15
|
* Stop killing peertube in ci scriptChocobozzz2021-11-181-1/+1
|
* Add ability to run transcoding jobsChocobozzz2021-11-181-5/+4
|
* Add ability to remove hls/webtorrent filesChocobozzz2021-11-181-2/+2
|
* Add ability to filter out public videos from adminChocobozzz2021-11-121-2/+13
|
* Fix video update transactionChocobozzz2021-11-101-2/+2
|
* Fix thumbnail updateChocobozzz2021-11-101-3/+1
|
* Add migrate-to-object-storage script (#4481)kontrollanten2021-11-091-2/+7
| | | | | | | | | | | | | | | | | | * add migrate-to-object-storage-script closes #4467 * add migrate-to-unique-playlist-filenames script * fix(migrate-to-unique-playlist-filenames): update master/segments256 run updateMasterHLSPlaylist and updateSha256VODSegments after file rename. * Improve move to object storage scripts * PR remarks Co-authored-by: Chocobozzz <me@florianbigard.com>
* Add ability to filter by file typeChocobozzz2021-11-031-11/+33
|
* Add video file size info in admin videos listChocobozzz2021-10-291-14/+20
|
* Deprecate filter video queryChocobozzz2021-10-291-57/+29
| | | | Introduce include and isLocal instead
* Fix sequelize order typingsChocobozzz2021-10-221-1/+1
|
* Fix my live videos filterChocobozzz2021-10-201-2/+2
|
* Add channel filters for my videos/followersChocobozzz2021-10-201-1/+8
|
* Fix notification on create transcoding jobChocobozzz2021-10-111-2/+2
|
* esModuleInterop to trueChocobozzz2021-08-271-1/+1
|
* Add support for saving video files to object storage (#4290)Jelle Besseling2021-08-171-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 modelsChocobozzz2021-07-291-57/+53
|
* Refactor search query optionsChocobozzz2021-07-291-1/+2
|
* Add ability to search by uuids/actor namesChocobozzz2021-07-281-0/+3
|
* Filter host for channels and playlists searchChocobozzz2021-07-281-1/+1
|
* Add ability to search by host in serverChocobozzz2021-07-271-2/+4
|
* Refactor video links buildersChocobozzz2021-07-261-3/+4
|
* Use random names for VOD HLS playlistsChocobozzz2021-07-261-5/+7
|
* Fix hooks definitionChocobozzz2021-07-011-1/+0
|
* Fix missing delete cascade video -> channelChocobozzz2021-07-011-1/+2
|
* Don't check enum for video modelChocobozzz2021-06-291-6/+0
| | | | Licence, language and category could be extended by a remote plugin
* Refactor live managerChocobozzz2021-06-171-1/+1
|
* Include transaction in video hooksChocobozzz2021-06-111-11/+6
|
* Cleanup video model scopesChocobozzz2021-06-111-55/+7
|
* Move get* video methods to formatterChocobozzz2021-06-111-20/+0
|
* Use raw SQL for most of video queriesChocobozzz2021-06-111-120/+30
|
* Fetch directly all video attributes for get APIChocobozzz2021-06-111-3/+3
|
* Use raw SQL for video get requestChocobozzz2021-06-101-26/+3
|