aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-resolution.enum.ts
Commit message (Collapse)AuthorAgeFilesLines
* Reorganize shared modelsChocobozzz2020-08-071-1/+1
|
* More robust max bitrate calculationChocobozzz2020-06-171-31/+34
|
* Improve 4k resolution bitrateChocobozzz2019-12-051-2/+2
|
* Ensure local actors preferredName don't already existChocobozzz2019-12-051-11/+11
| | | | | | | | | | | | Before applying this commit, check you don't have duplicates local actors in your database: select "preferredUsername" from actor where "serverId" is null group by "preferredUsername" having count(*) > 0 If you have some results, it seems you have duplicate channels/accounts. For every entry, you'll have to change the preferredUsername of the entry you want (so they are unique). The updated actors could have some federations issues. Sorry.
* Add audio-only option to transcoders and playerfrankdelange2019-11-251-0/+5
| | | | | | | | This patch adds an audio-only option to PeerTube by means of a new transcoding configuration which creates mp4 files which only contain an audio stream. This new transcoder has a resolution of '0' and is presented in the preferences and in the player resolution menu as 'Audio-only' (localised). When playing such streams the player shows the file thumbnail as background and disables controls autohide. Audio-only files can be shared and streamed just like any other file. They can be downloaded as well, the resulting file will be an mp4 container with a single audio stream. This patch is a proof of concept to show the feasibility of 'true' audio-only support. There are better ways of doing this which also enable multiple audio streams for a given video stream (e.g. DASH) but as this would entail a fundamental change in the way PeerTube works it is a bridge too far for a simple proof of concept.
* Add CLI plugins testsChocobozzz2019-07-241-24/+29
|
* Improve 4K video quality after transcodingChocobozzz2019-06-061-3/+7
|
* Add Nederlands and Português (Portugal)Chocobozzz2019-04-031-21/+21
|
* tslint updateChocobozzz2019-04-021-21/+21
|
* Fix testsChocobozzz2018-10-171-4/+2
|
* dont export base bitrateFelix Ableitner2018-10-171-1/+1
|
* more documentationFelix Ableitner2018-10-171-3/+9
|
* better documentationFelix Ableitner2018-10-171-3/+5
|
* Scale bitrate linearly with FPSFelix Ableitner2018-10-171-15/+22
|
* Try to cache video_high_bitrate_1080p in travisChocobozzz2018-10-081-8/+8
|
* Set bitrate limits for transcoding (fixes #638) (#1135)Felix Ableitner2018-10-081-0/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Set bitrate limits for transcoding (fixes #638) * added optimization script and test, changed stuff * fix test, improve docs * re-add optimize-old-videos script * added documentation * Don't optimize videos without valid UUID, or redundancy videos * move getUUIDFromFilename * fix tests? * update torrent and file size, some more fixes/improvements * use higher bitrate for high fps video, adjust bitrates * add test video * don't throw error if resolution is undefined * generate test fixture on the fly * use random noise video for bitrate test, add promise * shorten test video to avoid timeout * use existing function to optimize video * various fixes * increase test timeout * limit test fixture size, add link * test fixes * add await * more test fixes, add -b:v parameter * replace ffmpeg wiki link * fix ffmpeg params * fix unit test * add test fixture to .gitgnore * add video transcoding fps model * add missing file
* Change how we handle resolutionChocobozzz2017-10-091-1/+0
| | | | It was an enum before, now we just use video height
* Implement video transcoding on server sideChocobozzz2017-10-031-0/+8