aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video/video.ts
Commit message (Collapse)AuthorAgeFilesLines
* Refactor model utilsChocobozzz2023-01-101-4/+3
|
* Fix running again transcoding on a video only fileChocobozzz2022-11-071-1/+3
|
* Fix follow constraint check with an accountChocobozzz2022-11-071-0/+6
|
* Correctly delete live files from object storageChocobozzz2022-10-251-4/+4
|
* Correctly cleanup files from object storageChocobozzz2022-10-251-3/+2
|
* Use private ACL for private videos in s3Chocobozzz2022-10-241-6/+28
|
* Put private videos under a specific subdirectoryChocobozzz2022-10-241-16/+8
|
* Fix saved live master playlist bandwidthChocobozzz2022-09-091-0/+2
|
* Avoid concurrency issue on transcodingChocobozzz2022-08-091-7/+6
|
* Add ability to delete a specific video fileChocobozzz2022-08-011-3/+7
|
* Add more tracingChocobozzz2022-07-281-0/+5
|
* Add live and viewers otel metricsChocobozzz2022-07-271-7/+10
|
* Regenerate video filenames on transcodingChocobozzz2022-07-251-1/+20
| | | | | In particular when using manual transcoding, to invalidate potential HTTP caches in front of peertube
* Fix my videos counterChocobozzz2022-07-181-1/+3
|
* Fix lintChocobozzz2022-07-131-1/+1
|
* Fix videos statsChocobozzz2022-07-081-1/+0
|
* Introduce experimental telemetryChocobozzz2022-07-061-11/+13
|
* Rename video full loadingChocobozzz2022-06-281-2/+2
|
* 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
|