aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/live
Commit message (Collapse)AuthorAgeFilesLines
* More robust live ending jobChocobozzz2022-05-251-1/+1
|
* Fix saving permanent live replay on quick restreamChocobozzz2022-05-251-0/+34
|
* Fix quota inconstistencies with livesChocobozzz2022-05-041-0/+25
|
* Fix live constraints testsChocobozzz2022-05-031-9/+4
|
* Support live session in serverChocobozzz2022-05-034-11/+138
|
* Fix getting live by anonymous userChocobozzz2022-05-032-107/+79
|
* Fix lintChocobozzz2022-04-221-4/+4
|
* Add ability to save replay of permanent livesChocobozzz2022-04-214-24/+144
|
* Support video views/viewers stats in serverChocobozzz2022-04-153-135/+2
| | | | | | | | | | * 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
* Add latency setting supportChocobozzz2022-03-091-1/+8
|
* Add basic video editor supportChocobozzz2022-02-281-2/+2
|
* Increase timeoutChocobozzz2021-12-241-1/+1
|
* Move test functions outside extra-utilsChocobozzz2021-12-177-28/+25
|
* shared/ typescript types dir server-commandsChocobozzz2021-12-177-7/+7
|
* Auto update publishedAt in live restreamChocobozzz2021-11-261-0/+6
|
* Increase live transcoding test timeoutChocobozzz2021-11-151-1/+1
|
* Fix live testsChocobozzz2021-11-151-2/+0
|
* Refactor video viewsChocobozzz2021-11-091-51/+58
| | | | | | | | Introduce viewers attribute for live videos Count views for live videos Reduce delay to see the viewer update for lives Add ability to configure video views buffer interval and view ip expiration
* Support RTMPSChocobozzz2021-11-052-0/+147
|
* Added 144p encoding (#4492)Florian CUNY2021-11-052-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added 144p encoding Implements https://github.com/Chocobozzz/PeerTube/issues/4428 * Fixed typo in core-utils * Increased BitPerPixel for 144p * Disabled 144p by default in test.yaml * Another try at fixing tests * Fixed test in video-transcoder (api-3) * Fixed test in video-imports (api-4) * Fixed test in live-constraints (api-2) * Tried to fix tests in api-3 again * Revert "Tried to fix tests in api-3 again" This reverts commit 266e1143fa37f333d149c2c2791c7bd33621ac14. * Fixed test in config.ts (api-2) * Try to fix test in video-hls.ts (api-3) * Fixed test in video-transcoder.ts (api-3) * Fix tests Co-authored-by: Chocobozzz <me@florianbigard.com>
* Fix bitrate testsChocobozzz2021-10-121-5/+12
|
* Increase live tests timeoutChocobozzz2021-10-081-2/+2
|
* Add support for saving video files to object storage (#4290)Jelle Besseling2021-08-171-20/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Improve target bitrate calculationChocobozzz2021-08-061-1/+1
|
* Limit live bitrateChocobozzz2021-08-061-6/+34
|
* Use random names for VOD HLS playlistsChocobozzz2021-07-263-13/+19
|
* Reorganize importsChocobozzz2021-07-206-11/+17
|
* Refactor requestsChocobozzz2021-07-202-2/+2
|
* Use an object to represent a serverChocobozzz2021-07-206-26/+25
|
* Shorter server command namesChocobozzz2021-07-206-119/+119
|
* Introduce videos commandChocobozzz2021-07-206-110/+78
|
* Introduce user commandChocobozzz2021-07-201-6/+2
|
* Introduce server commandsChocobozzz2021-07-201-2/+1
|
* Introduce sql commandChocobozzz2021-07-201-1/+1
|
* Introduce streaming playlists commandChocobozzz2021-07-201-5/+11
|
* Introduce blacklist commandChocobozzz2021-07-202-5/+3
|
* Shorter live methodsChocobozzz2021-07-206-44/+44
|
* Introduce live commandChocobozzz2021-07-206-118/+92
|
* Introduce socket io commandChocobozzz2021-07-201-6/+5
|
* Introduce config commandChocobozzz2021-07-206-75/+87
|
* Refactor live managerChocobozzz2021-06-174-225/+334
|
* Fix live files includeChocobozzz2021-06-111-1/+1
|
* Increase permanent live test timeoutChocobozzz2021-06-081-1/+1
|
* Refactor a little bit live testsChocobozzz2021-05-073-75/+27
|
* Add ability to filter my videos by liveChocobozzz2021-05-031-0/+65
|
* Increase ffmpeg tests timeoutChocobozzz2021-04-151-5/+5
|
* Increase timeoutsChocobozzz2021-03-041-2/+2
|
* Fix stats testsChocobozzz2021-02-191-3/+16
|
* Fix testsChocobozzz2021-02-191-1/+11
|
* Try to speed up server testsChocobozzz2021-02-192-23/+36
|