From df3eb84f1b4e7ad08243b0470b2b56260e397b0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Leszko?= Date: Tue, 29 Aug 2023 20:23:17 +0200 Subject: [PATCH 1/7] Add CRF param to transcode requests --- video/profiles.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/video/profiles.go b/video/profiles.go index d35d811e1..c4e2ad56c 100644 --- a/video/profiles.go +++ b/video/profiles.go @@ -12,6 +12,7 @@ const ( MaxVideoBitrate = 288_000_000 TrackTypeVideo = "video" TrackTypeAudio = "audio" + defaultCRF = 23 ) type InputVideo struct { @@ -73,6 +74,7 @@ var DefaultProfile360p = EncodedProfile{ Bitrate: 1_000_000, Width: 640, Height: 360, + CRF: defaultCRF, } var DefaultProfile720p = EncodedProfile{ Name: "720p0", @@ -80,6 +82,7 @@ var DefaultProfile720p = EncodedProfile{ Bitrate: 4_000_000, Width: 1280, Height: 720, + CRF: defaultCRF, } // DefaultTranscodeProfiles defines the default set of encoding profiles to use when none are specified @@ -119,6 +122,7 @@ func GenerateSingleProfileWithTargetBitrate(videoTrack InputTrack, videoBitrate FPS: 0, Width: videoTrack.Width, Height: videoTrack.Height, + CRF: defaultCRF, }) return profiles } @@ -149,6 +153,7 @@ func GetDefaultPlaybackProfiles(video InputTrack) ([]EncodedProfile, error) { FPS: 0, Width: nearestEven(video.Width), Height: nearestEven(video.Height), + CRF: defaultCRF, }) return profiles, nil } @@ -170,6 +175,7 @@ func lowBitrateProfile(video InputTrack) EncodedProfile { Bitrate: bitrate, Width: nearestEven(video.Width), Height: nearestEven(video.Height), + CRF: defaultCRF, } } @@ -189,6 +195,7 @@ type EncodedProfile struct { Encoder string `json:"encoder,omitempty"` ColorDepth int64 `json:"colorDepth,omitempty"` ChromaFormat int64 `json:"chromaFormat,omitempty"` + CRF uint `json:"crf"` } type OutputVideo struct { From f661dab68e652fc660be98dc245c1af6c48e69f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Leszko?= Date: Wed, 6 Sep 2023 17:05:44 +0200 Subject: [PATCH 2/7] Adjust transcode quality params --- video/profiles.go | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/video/profiles.go b/video/profiles.go index c4e2ad56c..cd8ffe1b1 100644 --- a/video/profiles.go +++ b/video/profiles.go @@ -12,7 +12,7 @@ const ( MaxVideoBitrate = 288_000_000 TrackTypeVideo = "video" TrackTypeAudio = "audio" - defaultCRF = 23 + defaultCRF = 27 ) type InputVideo struct { @@ -106,23 +106,27 @@ func SetTranscodeProfiles(inputVideoStats InputVideo, reqTranscodeProfiles []Enc // a single profile that matches the input video's specs with the target bitrate } else if len(reqTranscodeProfiles) == 1 { if reqTranscodeProfiles[0].Width == 0 && reqTranscodeProfiles[0].Height == 0 && reqTranscodeProfiles[0].Bitrate != 0 { - transcodeProfiles = GenerateSingleProfileWithTargetBitrate(videoTrack, reqTranscodeProfiles[0].Bitrate) + transcodeProfiles = GenerateSingleProfileWithTargetParams(videoTrack, reqTranscodeProfiles[0]) return transcodeProfiles, nil } } return reqTranscodeProfiles, nil } -func GenerateSingleProfileWithTargetBitrate(videoTrack InputTrack, videoBitrate int64) []EncodedProfile { +func GenerateSingleProfileWithTargetParams(videoTrack InputTrack, videoProfile EncodedProfile) []EncodedProfile { profiles := make([]EncodedProfile, 0) + var CRF uint = defaultCRF + if videoProfile.CRF != 0 { + CRF = videoProfile.CRF + } profiles = append(profiles, EncodedProfile{ Name: strconv.FormatInt(videoTrack.Height, 10) + "p0", - Bitrate: videoBitrate, + Bitrate: videoProfile.Bitrate, FPS: 0, Width: videoTrack.Width, Height: videoTrack.Height, - CRF: defaultCRF, + CRF: CRF, }) return profiles } @@ -138,7 +142,10 @@ func GetDefaultPlaybackProfiles(video InputTrack) ([]EncodedProfile, error) { // check it here. lowerQualityThanSrc := profile.Height < video.Height && profile.Bitrate < video.Bitrate if lowerQualityThanSrc { - relativeBitrate := float64(profile.Width*profile.Height) * (float64(videoBitrate) / float64(video.Width*video.Height)) + // relativeBitrate needs to be slightly higher than the proportional average bitrate of the source video. + // Livepeer network uses bitrate to set max bitrate for encoding, so for the video to look good, we multiply + // it by a factor of 1.2. + relativeBitrate := 1.2 * float64(profile.Width*profile.Height) * (float64(videoBitrate) / float64(video.Width*video.Height)) br := math.Min(relativeBitrate, float64(profile.Bitrate)) profile.Bitrate = int64(br) profiles = append(profiles, profile) From 9dcabffb95d72592c944f8d127872370be8fb5a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Leszko?= Date: Fri, 8 Sep 2023 09:50:34 +0200 Subject: [PATCH 3/7] Rename `crf` to `quality` --- video/profiles.go | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/video/profiles.go b/video/profiles.go index cd8ffe1b1..90a9199bf 100644 --- a/video/profiles.go +++ b/video/profiles.go @@ -12,7 +12,7 @@ const ( MaxVideoBitrate = 288_000_000 TrackTypeVideo = "video" TrackTypeAudio = "audio" - defaultCRF = 27 + defaultQuality = 27 ) type InputVideo struct { @@ -74,7 +74,7 @@ var DefaultProfile360p = EncodedProfile{ Bitrate: 1_000_000, Width: 640, Height: 360, - CRF: defaultCRF, + Quality: defaultQuality, } var DefaultProfile720p = EncodedProfile{ Name: "720p0", @@ -82,7 +82,7 @@ var DefaultProfile720p = EncodedProfile{ Bitrate: 4_000_000, Width: 1280, Height: 720, - CRF: defaultCRF, + Quality: defaultQuality, } // DefaultTranscodeProfiles defines the default set of encoding profiles to use when none are specified @@ -115,9 +115,9 @@ func SetTranscodeProfiles(inputVideoStats InputVideo, reqTranscodeProfiles []Enc func GenerateSingleProfileWithTargetParams(videoTrack InputTrack, videoProfile EncodedProfile) []EncodedProfile { profiles := make([]EncodedProfile, 0) - var CRF uint = defaultCRF - if videoProfile.CRF != 0 { - CRF = videoProfile.CRF + var quality uint = defaultQuality + if videoProfile.Quality != 0 { + quality = videoProfile.Quality } profiles = append(profiles, EncodedProfile{ @@ -126,7 +126,7 @@ func GenerateSingleProfileWithTargetParams(videoTrack InputTrack, videoProfile E FPS: 0, Width: videoTrack.Width, Height: videoTrack.Height, - CRF: CRF, + Quality: quality, }) return profiles } @@ -160,7 +160,7 @@ func GetDefaultPlaybackProfiles(video InputTrack) ([]EncodedProfile, error) { FPS: 0, Width: nearestEven(video.Width), Height: nearestEven(video.Height), - CRF: defaultCRF, + Quality: defaultQuality, }) return profiles, nil } @@ -182,7 +182,7 @@ func lowBitrateProfile(video InputTrack) EncodedProfile { Bitrate: bitrate, Width: nearestEven(video.Width), Height: nearestEven(video.Height), - CRF: defaultCRF, + Quality: defaultQuality, } } @@ -202,7 +202,7 @@ type EncodedProfile struct { Encoder string `json:"encoder,omitempty"` ColorDepth int64 `json:"colorDepth,omitempty"` ChromaFormat int64 `json:"chromaFormat,omitempty"` - CRF uint `json:"crf"` + Quality uint `json:"quality"` } type OutputVideo struct { From 7a62999a7c686942e37fe9fa9fee712b64d1392d Mon Sep 17 00:00:00 2001 From: Max Holland Date: Fri, 8 Sep 2023 09:25:16 +0100 Subject: [PATCH 4/7] update fixtures and include a regen facility --- .../profiles_tests/1000_1000_10700000.json | 2 +- .../profiles_tests/1000_1000_1100000.json | 2 +- .../profiles_tests/1000_1000_11500000.json | 2 +- .../profiles_tests/1000_1000_1200000.json | 2 +- .../profiles_tests/1000_1000_1300000.json | 2 +- .../profiles_tests/1000_1000_13500000.json | 2 +- .../profiles_tests/1000_1000_1400000.json | 2 +- .../profiles_tests/1000_1000_1600000.json | 2 +- .../profiles_tests/1000_1000_1700000.json | 2 +- .../profiles_tests/1000_1000_200000.json | 2 +- .../profiles_tests/1000_1000_2100000.json | 2 +- .../profiles_tests/1000_1000_3000000.json | 2 +- .../profiles_tests/1000_1000_5300000.json | 2 +- .../profiles_tests/1000_1000_7500000.json | 2 +- .../profiles_tests/1000_1000_800000.json | 2 +- .../profiles_tests/1000_1000_8200000.json | 2 +- .../profiles_tests/1000_1000_900000.json | 2 +- .../profiles_tests/1000_1400_10700000.json | 2 +- .../profiles_tests/1024_1024_100000.json | 2 +- .../profiles_tests/1024_1024_10500000.json | 2 +- .../profiles_tests/1024_1024_10600000.json | 2 +- .../profiles_tests/1024_1024_12100000.json | 2 +- .../profiles_tests/1024_1024_13200000.json | 2 +- .../profiles_tests/1024_1024_1800000.json | 2 +- .../profiles_tests/1024_1024_1900000.json | 2 +- .../profiles_tests/1024_1024_2000000.json | 2 +- .../profiles_tests/1024_1024_2100000.json | 2 +- .../profiles_tests/1024_1024_2800000.json | 2 +- .../profiles_tests/1024_1024_3500000.json | 2 +- .../profiles_tests/1024_1024_3800000.json | 2 +- .../profiles_tests/1024_1024_4200000.json | 2 +- .../profiles_tests/1024_1024_5600000.json | 2 +- .../profiles_tests/1024_1024_700000.json | 2 +- .../profiles_tests/1024_1024_7300000.json | 2 +- .../profiles_tests/1024_1024_8600000.json | 2 +- .../profiles_tests/1024_1024_900000.json | 2 +- .../profiles_tests/1024_576_7700000.json | 2 +- .../profiles_tests/1030_720_2000000.json | 2 +- .../profiles_tests/1038_1202_1300000.json | 2 +- .../profiles_tests/1076_604_800000.json | 2 +- .../profiles_tests/1080_1080_10000000.json | 2 +- .../profiles_tests/1080_1080_10300000.json | 2 +- .../profiles_tests/1080_1080_10400000.json | 2 +- .../profiles_tests/1080_1080_10500000.json | 2 +- .../profiles_tests/1080_1080_10700000.json | 2 +- .../profiles_tests/1080_1080_10800000.json | 2 +- .../profiles_tests/1080_1080_11400000.json | 2 +- .../profiles_tests/1080_1080_11600000.json | 2 +- .../profiles_tests/1080_1080_11700000.json | 2 +- .../profiles_tests/1080_1080_11900000.json | 2 +- .../profiles_tests/1080_1080_12100000.json | 2 +- .../profiles_tests/1080_1080_14900000.json | 2 +- .../profiles_tests/1080_1080_1500000.json | 2 +- .../profiles_tests/1080_1080_15000000.json | 2 +- .../profiles_tests/1080_1080_1600000.json | 2 +- .../profiles_tests/1080_1080_200000.json | 2 +- .../profiles_tests/1080_1080_20400000.json | 2 +- .../profiles_tests/1080_1080_2100000.json | 2 +- .../profiles_tests/1080_1080_2400000.json | 2 +- .../profiles_tests/1080_1080_28500000.json | 2 +- .../profiles_tests/1080_1080_300000.json | 2 +- .../profiles_tests/1080_1080_3000000.json | 2 +- .../profiles_tests/1080_1080_39300000.json | 2 +- .../profiles_tests/1080_1080_400000.json | 2 +- .../profiles_tests/1080_1080_4200000.json | 2 +- .../profiles_tests/1080_1080_500000.json | 2 +- .../profiles_tests/1080_1080_5400000.json | 2 +- .../profiles_tests/1080_1080_600000.json | 2 +- .../profiles_tests/1080_1080_6400000.json | 2 +- .../profiles_tests/1080_1080_6500000.json | 2 +- .../profiles_tests/1080_1080_7700000.json | 2 +- .../profiles_tests/1080_1080_8000000.json | 2 +- .../profiles_tests/1080_1080_8100000.json | 2 +- .../profiles_tests/1080_1080_8400000.json | 2 +- .../profiles_tests/1080_1080_8500000.json | 2 +- .../profiles_tests/1080_1080_8700000.json | 2 +- .../profiles_tests/1080_1080_8900000.json | 2 +- .../profiles_tests/1080_1080_900000.json | 2 +- .../profiles_tests/1080_1080_9000000.json | 2 +- .../profiles_tests/1080_1080_9100000.json | 2 +- .../profiles_tests/1080_1080_9200000.json | 2 +- .../profiles_tests/1080_1080_9500000.json | 2 +- .../profiles_tests/1080_1080_9900000.json | 2 +- .../profiles_tests/1080_1440_11000000.json | 2 +- .../profiles_tests/1080_1440_200000.json | 2 +- .../profiles_tests/1080_1440_2100000.json | 2 +- .../profiles_tests/1080_1620_10700000.json | 2 +- .../profiles_tests/1080_1620_10900000.json | 2 +- .../profiles_tests/1080_1834_4600000.json | 2 +- .../profiles_tests/1080_1908_14500000.json | 2 +- .../profiles_tests/1080_1920_10000000.json | 2 +- .../profiles_tests/1080_1920_10200000.json | 2 +- .../profiles_tests/1080_1920_10300000.json | 2 +- .../profiles_tests/1080_1920_11400000.json | 2 +- .../profiles_tests/1080_1920_11800000.json | 2 +- .../profiles_tests/1080_1920_12100000.json | 2 +- .../profiles_tests/1080_1920_12200000.json | 2 +- .../profiles_tests/1080_1920_12300000.json | 2 +- .../profiles_tests/1080_1920_12400000.json | 2 +- .../profiles_tests/1080_1920_12500000.json | 2 +- .../profiles_tests/1080_1920_1400000.json | 2 +- .../profiles_tests/1080_1920_14900000.json | 2 +- .../profiles_tests/1080_1920_15100000.json | 2 +- .../profiles_tests/1080_1920_15200000.json | 2 +- .../profiles_tests/1080_1920_15300000.json | 2 +- .../profiles_tests/1080_1920_15900000.json | 2 +- .../profiles_tests/1080_1920_1600000.json | 2 +- .../profiles_tests/1080_1920_16900000.json | 2 +- .../profiles_tests/1080_1920_1700000.json | 2 +- .../profiles_tests/1080_1920_17000000.json | 2 +- .../profiles_tests/1080_1920_1900000.json | 2 +- .../profiles_tests/1080_1920_2000000.json | 2 +- .../profiles_tests/1080_1920_2100000.json | 2 +- .../profiles_tests/1080_1920_2200000.json | 2 +- .../profiles_tests/1080_1920_2300000.json | 2 +- .../profiles_tests/1080_1920_2500000.json | 2 +- .../profiles_tests/1080_1920_2600000.json | 2 +- .../profiles_tests/1080_1920_2700000.json | 2 +- .../profiles_tests/1080_1920_2800000.json | 2 +- .../profiles_tests/1080_1920_2900000.json | 2 +- .../profiles_tests/1080_1920_3000000.json | 2 +- .../profiles_tests/1080_1920_3100000.json | 2 +- .../profiles_tests/1080_1920_3200000.json | 2 +- .../profiles_tests/1080_1920_3400000.json | 2 +- .../profiles_tests/1080_1920_3600000.json | 2 +- .../profiles_tests/1080_1920_3700000.json | 2 +- .../profiles_tests/1080_1920_3900000.json | 2 +- .../profiles_tests/1080_1920_4000000.json | 2 +- .../profiles_tests/1080_1920_4100000.json | 2 +- .../profiles_tests/1080_1920_4200000.json | 2 +- .../profiles_tests/1080_1920_43700000.json | 2 +- .../profiles_tests/1080_1920_4600000.json | 2 +- .../profiles_tests/1080_1920_4700000.json | 2 +- .../profiles_tests/1080_1920_4900000.json | 2 +- .../profiles_tests/1080_1920_5000000.json | 2 +- .../profiles_tests/1080_1920_5300000.json | 2 +- .../profiles_tests/1080_1920_600000.json | 2 +- .../profiles_tests/1080_1920_6000000.json | 2 +- .../profiles_tests/1080_1920_6100000.json | 2 +- .../profiles_tests/1080_1920_6500000.json | 2 +- .../profiles_tests/1080_1920_6800000.json | 2 +- .../profiles_tests/1080_1920_700000.json | 2 +- .../profiles_tests/1080_1920_7100000.json | 2 +- .../profiles_tests/1080_1920_7700000.json | 2 +- .../profiles_tests/1080_1920_800000.json | 2 +- .../profiles_tests/1080_1920_8000000.json | 2 +- .../profiles_tests/1080_1920_8400000.json | 2 +- .../profiles_tests/1080_1920_8500000.json | 2 +- .../profiles_tests/1080_1920_900000.json | 2 +- .../profiles_tests/1080_1920_9500000.json | 2 +- .../profiles_tests/1080_2400_3800000.json | 2 +- .../profiles_tests/1080_442_4900000.json | 2 +- .../profiles_tests/1080_642_1200000.json | 2 +- .../profiles_tests/1080_720_1100000.json | 2 +- .../profiles_tests/1094_622_100000.json | 2 +- .../profiles_tests/1100_1100_18400000.json | 2 +- .../profiles_tests/1200_1200_13800000.json | 2 +- .../profiles_tests/1200_1200_1600000.json | 2 +- .../profiles_tests/1200_1200_2400000.json | 2 +- .../profiles_tests/1200_1200_2600000.json | 2 +- .../profiles_tests/1200_1200_300000.json | 2 +- .../profiles_tests/1200_1200_3000000.json | 2 +- .../profiles_tests/1200_1200_4100000.json | 2 +- .../profiles_tests/1200_1200_4700000.json | 2 +- .../profiles_tests/1200_1200_5000000.json | 2 +- .../profiles_tests/1200_1200_6200000.json | 2 +- .../profiles_tests/1200_1200_6900000.json | 2 +- .../profiles_tests/1200_1200_8000000.json | 2 +- .../profiles_tests/1200_1200_9100000.json | 2 +- .../profiles_tests/1200_1680_20800000.json | 2 +- .../profiles_tests/1200_1680_21200000.json | 2 +- .../profiles_tests/1200_674_1300000.json | 2 +- .../profiles_tests/1260_1280_4700000.json | 2 +- .../profiles_tests/1278_660_8400000.json | 2 +- .../profiles_tests/1280_1280_1000000.json | 2 +- .../profiles_tests/1280_1280_1100000.json | 2 +- .../profiles_tests/1280_1280_20500000.json | 2 +- .../profiles_tests/1280_1280_3800000.json | 2 +- .../profiles_tests/1280_1280_5000000.json | 2 +- .../profiles_tests/1280_1280_800000.json | 2 +- .../profiles_tests/1280_1280_900000.json | 2 +- .../profiles_tests/1280_532_1900000.json | 2 +- video/fixtures/profiles_tests/1280_720_0.json | 2 +- .../profiles_tests/1280_720_1000000.json | 2 +- .../profiles_tests/1280_720_10000000.json | 2 +- .../profiles_tests/1280_720_1100000.json | 2 +- .../profiles_tests/1280_720_11300000.json | 2 +- .../profiles_tests/1280_720_11900000.json | 2 +- .../profiles_tests/1280_720_1200000.json | 2 +- .../profiles_tests/1280_720_12000000.json | 2 +- .../profiles_tests/1280_720_1400000.json | 2 +- .../profiles_tests/1280_720_1500000.json | 2 +- .../profiles_tests/1280_720_1600000.json | 2 +- .../profiles_tests/1280_720_16400000.json | 2 +- .../profiles_tests/1280_720_2000000.json | 2 +- .../profiles_tests/1280_720_2100000.json | 2 +- .../profiles_tests/1280_720_2200000.json | 2 +- .../profiles_tests/1280_720_2300000.json | 2 +- .../profiles_tests/1280_720_2400000.json | 2 +- .../profiles_tests/1280_720_2500000.json | 2 +- .../profiles_tests/1280_720_2600000.json | 2 +- .../profiles_tests/1280_720_2700000.json | 2 +- .../profiles_tests/1280_720_300000.json | 2 +- .../profiles_tests/1280_720_3000000.json | 2 +- .../profiles_tests/1280_720_400000.json | 2 +- .../profiles_tests/1280_720_500000.json | 2 +- .../profiles_tests/1280_720_5100000.json | 2 +- .../profiles_tests/1280_720_5300000.json | 2 +- .../profiles_tests/1280_720_600000.json | 2 +- .../profiles_tests/1280_720_6800000.json | 2 +- .../profiles_tests/1280_720_700000.json | 2 +- .../profiles_tests/1280_720_800000.json | 2 +- .../profiles_tests/1280_720_8600000.json | 2 +- .../profiles_tests/1280_720_900000.json | 2 +- .../profiles_tests/1280_852_3000000.json | 2 +- .../profiles_tests/1280_960_5100000.json | 2 +- .../profiles_tests/1400_1400_100000.json | 2 +- .../profiles_tests/1400_400_1000000.json | 2 +- .../profiles_tests/1400_400_2100000.json | 2 +- .../profiles_tests/1402_1920_15800000.json | 2 +- .../profiles_tests/1440_1440_17000000.json | 2 +- .../profiles_tests/1440_1440_3600000.json | 2 +- .../profiles_tests/1440_2174_12000000.json | 2 +- .../profiles_tests/1490_1990_19400000.json | 2 +- .../profiles_tests/1498_2100_45400000.json | 2 +- .../profiles_tests/1498_2100_46800000.json | 2 +- .../profiles_tests/1500_1000_13800000.json | 2 +- .../profiles_tests/1500_1500_10400000.json | 2 +- .../profiles_tests/1500_1500_1600000.json | 2 +- .../profiles_tests/1500_1500_2100000.json | 2 +- .../profiles_tests/1500_1500_2300000.json | 2 +- .../profiles_tests/1500_1500_2400000.json | 2 +- .../profiles_tests/1500_1500_2500000.json | 2 +- .../profiles_tests/1500_1500_3600000.json | 2 +- .../profiles_tests/1500_1500_8600000.json | 2 +- .../profiles_tests/1500_1500_8900000.json | 2 +- .../profiles_tests/1600_1600_18500000.json | 2 +- .../profiles_tests/1600_1600_26700000.json | 2 +- .../profiles_tests/1686_546_300000.json | 2 +- .../profiles_tests/1722_1350_25700000.json | 2 +- .../profiles_tests/1780_1742_7600000.json | 2 +- .../profiles_tests/1800_1800_10400000.json | 2 +- .../profiles_tests/1800_1800_15300000.json | 2 +- .../profiles_tests/1862_1396_17900000.json | 2 +- .../profiles_tests/1920_1076_10300000.json | 2 +- .../profiles_tests/1920_1076_1100000.json | 2 +- .../profiles_tests/1920_1076_2600000.json | 2 +- .../profiles_tests/1920_1076_3100000.json | 2 +- .../fixtures/profiles_tests/1920_1080_0.json | 2 +- .../profiles_tests/1920_1080_100000.json | 2 +- .../profiles_tests/1920_1080_1000000.json | 2 +- .../profiles_tests/1920_1080_10000000.json | 2 +- .../profiles_tests/1920_1080_10100000.json | 2 +- .../profiles_tests/1920_1080_10300000.json | 2 +- .../profiles_tests/1920_1080_10400000.json | 2 +- .../profiles_tests/1920_1080_10500000.json | 2 +- .../profiles_tests/1920_1080_10600000.json | 2 +- .../profiles_tests/1920_1080_10700000.json | 2 +- .../profiles_tests/1920_1080_1100000.json | 2 +- .../profiles_tests/1920_1080_11200000.json | 2 +- .../profiles_tests/1920_1080_11300000.json | 2 +- .../profiles_tests/1920_1080_11400000.json | 2 +- .../profiles_tests/1920_1080_11900000.json | 2 +- .../profiles_tests/1920_1080_1200000.json | 2 +- .../profiles_tests/1920_1080_12000000.json | 2 +- .../profiles_tests/1920_1080_12100000.json | 2 +- .../profiles_tests/1920_1080_12300000.json | 2 +- .../profiles_tests/1920_1080_12400000.json | 2 +- .../profiles_tests/1920_1080_12500000.json | 2 +- .../profiles_tests/1920_1080_1300000.json | 2 +- .../profiles_tests/1920_1080_13500000.json | 2 +- .../profiles_tests/1920_1080_13900000.json | 2 +- .../profiles_tests/1920_1080_1400000.json | 2 +- .../profiles_tests/1920_1080_14200000.json | 2 +- .../profiles_tests/1920_1080_14700000.json | 2 +- .../profiles_tests/1920_1080_14800000.json | 2 +- .../profiles_tests/1920_1080_14900000.json | 2 +- .../profiles_tests/1920_1080_1500000.json | 2 +- .../profiles_tests/1920_1080_15000000.json | 2 +- .../profiles_tests/1920_1080_16000000.json | 2 +- .../profiles_tests/1920_1080_16600000.json | 2 +- .../profiles_tests/1920_1080_16900000.json | 2 +- .../profiles_tests/1920_1080_17000000.json | 2 +- .../profiles_tests/1920_1080_1800000.json | 2 +- .../profiles_tests/1920_1080_18400000.json | 2 +- .../profiles_tests/1920_1080_19300000.json | 2 +- .../profiles_tests/1920_1080_19400000.json | 2 +- .../profiles_tests/1920_1080_19500000.json | 2 +- .../profiles_tests/1920_1080_19700000.json | 2 +- .../profiles_tests/1920_1080_19900000.json | 2 +- .../profiles_tests/1920_1080_2000000.json | 2 +- .../profiles_tests/1920_1080_20000000.json | 2 +- .../profiles_tests/1920_1080_20100000.json | 2 +- .../profiles_tests/1920_1080_20200000.json | 2 +- .../profiles_tests/1920_1080_21100000.json | 2 +- .../profiles_tests/1920_1080_2200000.json | 2 +- .../profiles_tests/1920_1080_22000000.json | 2 +- .../profiles_tests/1920_1080_23700000.json | 2 +- .../profiles_tests/1920_1080_23800000.json | 2 +- .../profiles_tests/1920_1080_24600000.json | 2 +- .../profiles_tests/1920_1080_2500000.json | 2 +- .../profiles_tests/1920_1080_25000000.json | 2 +- .../profiles_tests/1920_1080_25200000.json | 2 +- .../profiles_tests/1920_1080_2600000.json | 2 +- .../profiles_tests/1920_1080_2700000.json | 2 +- .../profiles_tests/1920_1080_2800000.json | 2 +- .../profiles_tests/1920_1080_2900000.json | 2 +- .../profiles_tests/1920_1080_3100000.json | 2 +- .../profiles_tests/1920_1080_3200000.json | 2 +- .../profiles_tests/1920_1080_3300000.json | 2 +- .../profiles_tests/1920_1080_3500000.json | 2 +- .../profiles_tests/1920_1080_3700000.json | 2 +- .../profiles_tests/1920_1080_37700000.json | 2 +- .../profiles_tests/1920_1080_3800000.json | 2 +- .../profiles_tests/1920_1080_400000.json | 2 +- .../profiles_tests/1920_1080_4100000.json | 2 +- .../profiles_tests/1920_1080_4200000.json | 2 +- .../profiles_tests/1920_1080_4400000.json | 2 +- .../profiles_tests/1920_1080_4500000.json | 2 +- .../profiles_tests/1920_1080_4800000.json | 2 +- .../profiles_tests/1920_1080_5000000.json | 2 +- .../profiles_tests/1920_1080_5200000.json | 2 +- .../profiles_tests/1920_1080_5600000.json | 2 +- .../profiles_tests/1920_1080_5700000.json | 2 +- .../profiles_tests/1920_1080_5900000.json | 2 +- .../profiles_tests/1920_1080_600000.json | 2 +- .../profiles_tests/1920_1080_6100000.json | 2 +- .../profiles_tests/1920_1080_6800000.json | 2 +- .../profiles_tests/1920_1080_7000000.json | 2 +- .../profiles_tests/1920_1080_7700000.json | 2 +- .../profiles_tests/1920_1080_7800000.json | 2 +- .../profiles_tests/1920_1080_800000.json | 2 +- .../profiles_tests/1920_1080_8200000.json | 2 +- .../profiles_tests/1920_1080_8300000.json | 2 +- .../profiles_tests/1920_1080_8400000.json | 2 +- .../profiles_tests/1920_1080_8700000.json | 2 +- .../profiles_tests/1920_1080_9100000.json | 2 +- .../profiles_tests/1920_1080_9400000.json | 2 +- .../profiles_tests/1920_1080_9800000.json | 2 +- .../profiles_tests/1920_1080_9900000.json | 2 +- .../profiles_tests/1920_1440_15000000.json | 2 +- .../profiles_tests/1920_1440_19700000.json | 2 +- .../profiles_tests/1920_1440_22500000.json | 2 +- .../profiles_tests/1920_1920_10200000.json | 2 +- .../profiles_tests/1920_1920_10600000.json | 2 +- .../profiles_tests/1920_1920_1100000.json | 2 +- .../profiles_tests/1920_1920_15400000.json | 2 +- .../profiles_tests/1920_1920_25000000.json | 2 +- .../profiles_tests/1920_1920_29000000.json | 2 +- .../profiles_tests/1920_1920_3800000.json | 2 +- .../profiles_tests/1920_1920_52500000.json | 2 +- .../profiles_tests/1920_1920_5300000.json | 2 +- .../profiles_tests/1920_1920_5500000.json | 2 +- .../profiles_tests/1920_1920_6600000.json | 2 +- .../profiles_tests/1920_600_10400000.json | 2 +- .../profiles_tests/1980_1980_24700000.json | 2 +- .../profiles_tests/2000_1500_5600000.json | 2 +- .../profiles_tests/2000_2000_10300000.json | 2 +- .../profiles_tests/2000_2000_10900000.json | 2 +- .../profiles_tests/2000_2000_11400000.json | 2 +- .../profiles_tests/2000_2000_13200000.json | 2 +- .../profiles_tests/2000_2000_14600000.json | 2 +- .../profiles_tests/2000_2000_15100000.json | 2 +- .../profiles_tests/2000_2000_16900000.json | 2 +- .../profiles_tests/2000_2000_19500000.json | 2 +- .../profiles_tests/2000_2000_22800000.json | 2 +- .../profiles_tests/2000_2000_24500000.json | 2 +- .../profiles_tests/2000_2000_2900000.json | 2 +- .../profiles_tests/2000_2000_29900000.json | 2 +- .../profiles_tests/2000_2000_30000000.json | 2 +- .../profiles_tests/2000_2000_4100000.json | 2 +- .../profiles_tests/2000_2000_4400000.json | 2 +- .../profiles_tests/2000_2000_4900000.json | 2 +- .../profiles_tests/2000_2000_8100000.json | 2 +- .../profiles_tests/2000_2000_8400000.json | 2 +- .../profiles_tests/2000_2000_9800000.json | 2 +- .../profiles_tests/2000_2000_9900000.json | 2 +- .../profiles_tests/2000_3000_22400000.json | 2 +- .../profiles_tests/2000_3000_6800000.json | 2 +- .../profiles_tests/2048_1152_400000.json | 2 +- .../profiles_tests/2048_2048_10800000.json | 2 +- .../profiles_tests/2048_2048_20300000.json | 2 +- .../profiles_tests/2048_2048_24500000.json | 2 +- .../profiles_tests/2048_2048_26900000.json | 2 +- .../profiles_tests/2048_2048_2700000.json | 2 +- .../profiles_tests/2048_2048_27100000.json | 2 +- .../profiles_tests/2048_2048_27200000.json | 2 +- .../profiles_tests/2048_2048_27600000.json | 2 +- .../profiles_tests/2048_2048_27700000.json | 2 +- .../profiles_tests/2048_2048_2800000.json | 2 +- .../profiles_tests/2048_2048_37100000.json | 2 +- .../profiles_tests/2048_2048_37900000.json | 2 +- .../profiles_tests/2048_2048_38200000.json | 2 +- .../profiles_tests/2048_2048_4300000.json | 2 +- .../profiles_tests/2048_2048_7400000.json | 2 +- .../profiles_tests/2048_2048_7700000.json | 2 +- .../profiles_tests/2048_2048_8000000.json | 2 +- .../profiles_tests/2048_2048_8800000.json | 2 +- .../profiles_tests/2048_2048_9900000.json | 2 +- .../profiles_tests/2112_2112_67900000.json | 2 +- .../profiles_tests/2160_2160_10000000.json | 2 +- .../profiles_tests/2160_2160_10200000.json | 2 +- .../profiles_tests/2160_2160_16000000.json | 2 +- .../profiles_tests/2160_2160_25400000.json | 2 +- .../profiles_tests/2160_2160_30800000.json | 2 +- .../profiles_tests/2160_2160_400000.json | 2 +- .../profiles_tests/2160_2160_59700000.json | 2 +- .../profiles_tests/2160_2160_65000000.json | 2 +- .../profiles_tests/2160_2160_8800000.json | 2 +- .../profiles_tests/2160_2160_9600000.json | 2 +- .../profiles_tests/2160_2160_9900000.json | 2 +- .../profiles_tests/2160_3840_14900000.json | 2 +- .../profiles_tests/2160_3840_19000000.json | 2 +- .../profiles_tests/2160_3840_31100000.json | 2 +- .../profiles_tests/2160_3840_38000000.json | 2 +- .../profiles_tests/2160_720_7200000.json | 2 +- .../profiles_tests/2210_2164_4700000.json | 2 +- .../profiles_tests/2304_2304_20600000.json | 2 +- .../profiles_tests/2304_2304_49100000.json | 2 +- .../profiles_tests/2304_2304_92700000.json | 2 +- .../profiles_tests/2340_1612_4600000.json | 2 +- .../profiles_tests/2384_1576_5400000.json | 2 +- .../profiles_tests/2400_2400_9400000.json | 2 +- .../profiles_tests/2408_3508_74700000.json | 2 +- .../profiles_tests/2432_2380_10600000.json | 2 +- .../profiles_tests/2500_1400_11800000.json | 2 +- .../profiles_tests/2500_2500_2300000.json | 2 +- .../profiles_tests/2500_2500_6300000.json | 2 +- .../profiles_tests/2500_2500_7200000.json | 2 +- .../profiles_tests/2500_3000_10300000.json | 2 +- .../profiles_tests/250_442_400000.json | 2 +- .../profiles_tests/2560_1440_12200000.json | 2 +- .../profiles_tests/2560_1440_13800000.json | 2 +- .../profiles_tests/2560_1440_1500000.json | 2 +- .../profiles_tests/264_480_700000.json | 2 +- .../profiles_tests/2720_1530_10300000.json | 2 +- .../profiles_tests/280_580_200000.json | 2 +- .../profiles_tests/2880_2880_1500000.json | 2 +- .../profiles_tests/3000_1688_81700000.json | 2 +- .../profiles_tests/3000_3000_5300000.json | 2 +- .../profiles_tests/300_270_100000.json | 2 +- .../profiles_tests/300_428_300000.json | 2 +- video/fixtures/profiles_tests/320_240_0.json | 2 +- .../profiles_tests/320_240_300000.json | 2 +- .../profiles_tests/320_320_300000.json | 2 +- .../profiles_tests/320_400_200000.json | 2 +- .../profiles_tests/320_432_700000.json | 2 +- .../profiles_tests/3434_3454_32100000.json | 2 +- .../profiles_tests/350_480_600000.json | 2 +- .../profiles_tests/3520_4160_24500000.json | 2 +- .../profiles_tests/352_640_1100000.json | 2 +- .../profiles_tests/352_640_200000.json | 2 +- .../profiles_tests/352_640_900000.json | 2 +- .../profiles_tests/360_360_200000.json | 2 +- .../profiles_tests/360_558_1100000.json | 2 +- .../profiles_tests/360_640_2500000.json | 2 +- .../profiles_tests/360_640_500000.json | 2 +- .../profiles_tests/368_600_1200000.json | 2 +- .../profiles_tests/368_640_500000.json | 2 +- .../profiles_tests/368_640_600000.json | 2 +- .../profiles_tests/368_640_900000.json | 2 +- .../profiles_tests/368_656_1400000.json | 2 +- .../profiles_tests/380_640_400000.json | 2 +- .../profiles_tests/382_690_1200000.json | 2 +- .../profiles_tests/3840_1644_7100000.json | 2 +- .../profiles_tests/3840_2160_10300000.json | 2 +- .../profiles_tests/3840_2160_107800000.json | 2 +- .../profiles_tests/3840_2160_18300000.json | 2 +- .../profiles_tests/3840_2160_20000000.json | 2 +- .../profiles_tests/3840_2160_20200000.json | 2 +- .../profiles_tests/3840_2160_20700000.json | 2 +- .../profiles_tests/3840_2160_21700000.json | 2 +- .../profiles_tests/3840_2160_23200000.json | 2 +- .../profiles_tests/3840_2160_23300000.json | 2 +- .../profiles_tests/3840_2160_24300000.json | 2 +- .../profiles_tests/3840_2160_24400000.json | 2 +- .../profiles_tests/3840_2160_24600000.json | 2 +- .../profiles_tests/3840_2160_26900000.json | 2 +- .../profiles_tests/3840_2160_29200000.json | 2 +- .../profiles_tests/3840_2160_37400000.json | 2 +- .../profiles_tests/3840_2160_37700000.json | 2 +- .../profiles_tests/3840_2160_500000.json | 2 +- .../profiles_tests/3840_2160_53000000.json | 2 +- .../profiles_tests/3840_2160_5600000.json | 2 +- .../profiles_tests/3840_2160_56300000.json | 2 +- .../profiles_tests/3840_2160_59100000.json | 2 +- .../profiles_tests/3840_2160_59800000.json | 2 +- .../profiles_tests/3840_2160_62600000.json | 2 +- .../profiles_tests/3840_2160_6400000.json | 2 +- .../profiles_tests/3840_2160_79200000.json | 2 +- .../profiles_tests/3840_2160_79800000.json | 2 +- .../profiles_tests/3840_2160_8800000.json | 2 +- .../profiles_tests/4000_4000_10300000.json | 2 +- .../profiles_tests/400_224_100000.json | 2 +- .../profiles_tests/400_400_3500000.json | 2 +- .../profiles_tests/400_880_900000.json | 2 +- .../profiles_tests/4096_2160_24400000.json | 2 +- .../profiles_tests/4096_4096_23000000.json | 2 +- .../profiles_tests/416_640_700000.json | 2 +- .../profiles_tests/426_240_100000.json | 2 +- .../profiles_tests/448_768_2100000.json | 2 +- .../profiles_tests/450_450_800000.json | 2 +- .../profiles_tests/458_512_800000.json | 2 +- .../profiles_tests/460_352_200000.json | 2 +- .../profiles_tests/460_640_500000.json | 2 +- .../profiles_tests/460_816_800000.json | 2 +- .../profiles_tests/464_848_1100000.json | 2 +- .../profiles_tests/464_848_1400000.json | 2 +- .../profiles_tests/464_848_1600000.json | 2 +- .../profiles_tests/480_264_700000.json | 2 +- .../profiles_tests/480_270_300000.json | 2 +- .../profiles_tests/480_336_500000.json | 2 +- .../profiles_tests/480_480_2200000.json | 2 +- .../profiles_tests/480_480_500000.json | 2 +- .../profiles_tests/480_504_400000.json | 2 +- .../profiles_tests/480_600_300000.json | 2 +- .../profiles_tests/480_600_400000.json | 2 +- .../profiles_tests/480_600_500000.json | 2 +- .../profiles_tests/480_664_500000.json | 2 +- .../profiles_tests/480_672_600000.json | 2 +- .../profiles_tests/480_724_500000.json | 2 +- .../profiles_tests/480_852_1000000.json | 2 +- .../profiles_tests/480_852_300000.json | 2 +- .../profiles_tests/480_852_500000.json | 2 +- .../profiles_tests/480_854_1100000.json | 2 +- .../profiles_tests/480_854_1700000.json | 2 +- .../profiles_tests/480_854_200000.json | 2 +- .../profiles_tests/480_854_4300000.json | 2 +- .../profiles_tests/480_854_500000.json | 2 +- .../profiles_tests/480_854_600000.json | 2 +- .../profiles_tests/480_864_1600000.json | 2 +- .../profiles_tests/498_280_200000.json | 2 +- .../profiles_tests/498_476_800000.json | 2 +- .../profiles_tests/500_500_100000.json | 2 +- .../profiles_tests/500_500_400000.json | 2 +- .../profiles_tests/500_878_800000.json | 2 +- .../profiles_tests/512_512_100000.json | 2 +- .../profiles_tests/512_512_200000.json | 2 +- .../profiles_tests/512_512_3300000.json | 2 +- .../profiles_tests/512_512_5200000.json | 2 +- .../profiles_tests/528_848_300000.json | 2 +- .../profiles_tests/540_540_2400000.json | 2 +- .../profiles_tests/540_540_300000.json | 2 +- .../profiles_tests/540_540_400000.json | 2 +- .../profiles_tests/540_960_4400000.json | 2 +- .../profiles_tests/540_960_700000.json | 2 +- .../profiles_tests/544_960_1700000.json | 2 +- .../profiles_tests/544_960_1900000.json | 2 +- .../profiles_tests/544_960_2000000.json | 2 +- .../profiles_tests/544_960_2200000.json | 2 +- .../profiles_tests/544_960_2300000.json | 2 +- .../profiles_tests/544_960_2800000.json | 2 +- .../profiles_tests/544_960_700000.json | 2 +- .../profiles_tests/544_960_800000.json | 2 +- .../profiles_tests/552_640_5900000.json | 2 +- .../profiles_tests/558_540_200000.json | 2 +- .../profiles_tests/558_560_3300000.json | 2 +- .../profiles_tests/568_320_700000.json | 2 +- .../profiles_tests/574_1024_10700000.json | 2 +- .../profiles_tests/574_1024_11900000.json | 2 +- .../profiles_tests/576_1024_1100000.json | 2 +- .../profiles_tests/576_1024_1200000.json | 2 +- .../profiles_tests/576_1024_1400000.json | 2 +- .../profiles_tests/576_1024_1500000.json | 2 +- .../profiles_tests/576_1024_1600000.json | 2 +- .../profiles_tests/576_1024_1800000.json | 2 +- .../profiles_tests/576_1024_200000.json | 2 +- .../profiles_tests/576_1024_2200000.json | 2 +- .../profiles_tests/576_1024_300000.json | 2 +- .../profiles_tests/576_1024_400000.json | 2 +- .../profiles_tests/576_1024_4200000.json | 2 +- .../profiles_tests/576_1024_500000.json | 2 +- .../profiles_tests/576_1024_5900000.json | 2 +- .../profiles_tests/576_1024_600000.json | 2 +- .../profiles_tests/576_324_400000.json | 2 +- .../profiles_tests/576_360_100000.json | 2 +- .../profiles_tests/576_576_3100000.json | 2 +- .../profiles_tests/576_576_700000.json | 2 +- .../profiles_tests/576_640_400000.json | 2 +- .../profiles_tests/576_728_300000.json | 2 +- .../profiles_tests/576_816_200000.json | 2 +- .../profiles_tests/576_896_400000.json | 2 +- .../profiles_tests/578_1028_500000.json | 2 +- .../profiles_tests/5920_3000_10400000.json | 2 +- .../profiles_tests/600_600_1500000.json | 2 +- .../profiles_tests/600_600_4400000.json | 2 +- .../profiles_tests/600_600_800000.json | 2 +- .../profiles_tests/600_750_2500000.json | 2 +- .../profiles_tests/608_1080_1100000.json | 2 +- .../profiles_tests/608_1080_1200000.json | 2 +- .../profiles_tests/608_1080_1600000.json | 2 +- .../profiles_tests/608_1080_200000.json | 2 +- .../profiles_tests/624_1280_1000000.json | 2 +- .../profiles_tests/624_526_700000.json | 2 +- .../profiles_tests/624_832_1600000.json | 2 +- .../profiles_tests/628_698_200000.json | 2 +- .../profiles_tests/636_1000_1400000.json | 2 +- .../profiles_tests/640_1138_1000000.json | 2 +- .../profiles_tests/640_1138_5400000.json | 2 +- .../profiles_tests/640_332_2500000.json | 2 +- .../profiles_tests/640_332_300000.json | 2 +- .../profiles_tests/640_352_1900000.json | 2 +- .../profiles_tests/640_360_200000.json | 2 +- .../profiles_tests/640_360_300000.json | 2 +- .../profiles_tests/640_360_400000.json | 2 +- .../profiles_tests/640_360_500000.json | 2 +- .../profiles_tests/640_360_600000.json | 2 +- .../profiles_tests/640_360_800000.json | 2 +- .../profiles_tests/640_368_400000.json | 2 +- .../profiles_tests/640_640_1400000.json | 2 +- .../profiles_tests/640_640_1500000.json | 2 +- .../profiles_tests/640_640_1700000.json | 2 +- .../profiles_tests/640_640_400000.json | 2 +- .../profiles_tests/640_640_600000.json | 2 +- .../profiles_tests/640_640_700000.json | 2 +- .../profiles_tests/658_1080_800000.json | 2 +- .../profiles_tests/684_1216_1900000.json | 2 +- .../profiles_tests/704_1280_2700000.json | 2 +- .../profiles_tests/704_1280_500000.json | 2 +- .../profiles_tests/718_720_600000.json | 2 +- .../profiles_tests/720_1120_1200000.json | 2 +- .../profiles_tests/720_1126_800000.json | 2 +- .../profiles_tests/720_1280_1000000.json | 2 +- .../profiles_tests/720_1280_1100000.json | 2 +- .../profiles_tests/720_1280_1200000.json | 2 +- .../profiles_tests/720_1280_1300000.json | 2 +- .../profiles_tests/720_1280_1400000.json | 2 +- .../profiles_tests/720_1280_1500000.json | 2 +- .../profiles_tests/720_1280_1600000.json | 2 +- .../profiles_tests/720_1280_1700000.json | 2 +- .../profiles_tests/720_1280_1800000.json | 2 +- .../profiles_tests/720_1280_1900000.json | 2 +- .../profiles_tests/720_1280_2000000.json | 2 +- .../profiles_tests/720_1280_2100000.json | 2 +- .../profiles_tests/720_1280_2200000.json | 2 +- .../profiles_tests/720_1280_2300000.json | 2 +- .../profiles_tests/720_1280_2400000.json | 2 +- .../profiles_tests/720_1280_2500000.json | 2 +- .../profiles_tests/720_1280_2600000.json | 2 +- .../profiles_tests/720_1280_2900000.json | 2 +- .../profiles_tests/720_1280_300000.json | 2 +- .../profiles_tests/720_1280_3000000.json | 2 +- .../profiles_tests/720_1280_3100000.json | 2 +- .../profiles_tests/720_1280_3500000.json | 2 +- .../profiles_tests/720_1280_3700000.json | 2 +- .../profiles_tests/720_1280_400000.json | 2 +- .../profiles_tests/720_1280_500000.json | 2 +- .../profiles_tests/720_1280_5700000.json | 2 +- .../profiles_tests/720_1280_600000.json | 2 +- .../profiles_tests/720_1280_6300000.json | 2 +- .../profiles_tests/720_1280_6400000.json | 2 +- .../profiles_tests/720_1280_700000.json | 2 +- .../profiles_tests/720_1280_7100000.json | 2 +- .../profiles_tests/720_1280_7200000.json | 2 +- .../profiles_tests/720_1280_800000.json | 2 +- .../profiles_tests/720_1280_900000.json | 2 +- .../profiles_tests/720_404_300000.json | 2 +- .../profiles_tests/720_416_1000000.json | 2 +- .../profiles_tests/720_416_1100000.json | 2 +- .../profiles_tests/720_416_1200000.json | 2 +- .../profiles_tests/720_416_1900000.json | 2 +- .../profiles_tests/720_416_2000000.json | 2 +- .../profiles_tests/720_416_2100000.json | 2 +- .../profiles_tests/720_416_2300000.json | 2 +- .../profiles_tests/720_416_2400000.json | 2 +- .../profiles_tests/720_720_1000000.json | 2 +- .../profiles_tests/720_720_1100000.json | 2 +- .../profiles_tests/720_720_1200000.json | 2 +- .../profiles_tests/720_720_1700000.json | 2 +- .../profiles_tests/720_720_2500000.json | 2 +- .../profiles_tests/720_720_300000.json | 2 +- .../profiles_tests/720_720_400000.json | 2 +- .../profiles_tests/720_720_600000.json | 2 +- .../profiles_tests/720_720_700000.json | 2 +- .../profiles_tests/720_900_1300000.json | 2 +- .../profiles_tests/720_900_1800000.json | 2 +- .../profiles_tests/720_900_200000.json | 2 +- .../profiles_tests/720_900_4400000.json | 2 +- .../profiles_tests/720_900_500000.json | 2 +- .../profiles_tests/720_966_1700000.json | 2 +- .../profiles_tests/720_978_1800000.json | 2 +- .../profiles_tests/726_1280_2600000.json | 2 +- .../profiles_tests/734_1016_10200000.json | 2 +- .../profiles_tests/734_1016_3700000.json | 2 +- .../profiles_tests/734_1016_5900000.json | 2 +- .../profiles_tests/734_1016_6400000.json | 2 +- .../profiles_tests/734_1016_9500000.json | 2 +- .../profiles_tests/736_1280_3000000.json | 2 +- .../profiles_tests/740_1080_1000000.json | 2 +- .../profiles_tests/750_814_10700000.json | 2 +- .../profiles_tests/756_756_14800000.json | 2 +- .../profiles_tests/768_1024_17600000.json | 2 +- .../profiles_tests/768_1024_23100000.json | 2 +- .../profiles_tests/770_1000_7400000.json | 2 +- .../profiles_tests/800_450_1800000.json | 2 +- .../profiles_tests/800_450_700000.json | 2 +- .../profiles_tests/800_450_800000.json | 2 +- .../profiles_tests/800_450_900000.json | 2 +- .../profiles_tests/800_600_2400000.json | 2 +- .../profiles_tests/800_700_10100000.json | 2 +- .../profiles_tests/800_800_3600000.json | 2 +- .../profiles_tests/800_800_3900000.json | 2 +- .../profiles_tests/800_800_5900000.json | 2 +- .../profiles_tests/800_800_6100000.json | 2 +- .../profiles_tests/800_800_6600000.json | 2 +- .../profiles_tests/800_800_7900000.json | 2 +- .../profiles_tests/800_800_8000000.json | 2 +- .../profiles_tests/800_800_8500000.json | 2 +- .../profiles_tests/816_712_200000.json | 2 +- .../profiles_tests/820_1188_16900000.json | 2 +- .../profiles_tests/840_1196_16700000.json | 2 +- .../profiles_tests/848_464_1100000.json | 2 +- .../profiles_tests/854_1200_16600000.json | 2 +- .../profiles_tests/854_480_700000.json | 2 +- .../profiles_tests/880_880_800000.json | 2 +- .../profiles_tests/886_534_12700000.json | 2 +- .../profiles_tests/900_1200_10900000.json | 2 +- .../profiles_tests/954_392_500000.json | 2 +- .../profiles_tests/960_540_600000.json | 2 +- .../profiles_tests/960_540_7000000.json | 2 +- .../profiles_tests/960_544_1900000.json | 2 +- .../profiles_tests/960_720_1900000.json | 2 +- .../profiles_tests/960_720_2100000.json | 2 +- .../profiles_tests/960_720_500000.json | 2 +- .../profiles_tests/960_960_2800000.json | 2 +- .../profiles_tests/992_1302_2900000.json | 2 +- video/profiles_test.go | 31 +++++++++---------- 727 files changed, 741 insertions(+), 742 deletions(-) diff --git a/video/fixtures/profiles_tests/1000_1000_10700000.json b/video/fixtures/profiles_tests/1000_1000_10700000.json index 72dea8152..f58a78742 100644 --- a/video/fixtures/profiles_tests/1000_1000_10700000.json +++ b/video/fixtures/profiles_tests/1000_1000_10700000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":10700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":10700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":10700000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_1100000.json b/video/fixtures/profiles_tests/1000_1000_1100000.json index 2fe3c4b4e..aa30a4c4d 100644 --- a/video/fixtures/profiles_tests/1000_1000_1100000.json +++ b/video/fixtures/profiles_tests/1000_1000_1100000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":253440,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":304128,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_11500000.json b/video/fixtures/profiles_tests/1000_1000_11500000.json index 5a169e9c3..abc7eaf07 100644 --- a/video/fixtures/profiles_tests/1000_1000_11500000.json +++ b/video/fixtures/profiles_tests/1000_1000_11500000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":11500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":11500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":11500000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":11500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":11500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_1200000.json b/video/fixtures/profiles_tests/1000_1000_1200000.json index 8cf8e8391..dc3cc1eab 100644 --- a/video/fixtures/profiles_tests/1000_1000_1200000.json +++ b/video/fixtures/profiles_tests/1000_1000_1200000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":1200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":1200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":276480,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":1200000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":331776,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_1300000.json b/video/fixtures/profiles_tests/1000_1000_1300000.json index 19c0df31a..0042196e3 100644 --- a/video/fixtures/profiles_tests/1000_1000_1300000.json +++ b/video/fixtures/profiles_tests/1000_1000_1300000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":1300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":1300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":299520,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":1300000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":359424,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_13500000.json b/video/fixtures/profiles_tests/1000_1000_13500000.json index 32434fe2f..7f9c6288f 100644 --- a/video/fixtures/profiles_tests/1000_1000_13500000.json +++ b/video/fixtures/profiles_tests/1000_1000_13500000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":13500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":13500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":13500000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":13500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":13500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_1400000.json b/video/fixtures/profiles_tests/1000_1000_1400000.json index ecfb6baa8..de1543bea 100644 --- a/video/fixtures/profiles_tests/1000_1000_1400000.json +++ b/video/fixtures/profiles_tests/1000_1000_1400000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":1400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":1400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":322560,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":1400000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":387072,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_1600000.json b/video/fixtures/profiles_tests/1000_1000_1600000.json index b35bf5ee0..276a16295 100644 --- a/video/fixtures/profiles_tests/1000_1000_1600000.json +++ b/video/fixtures/profiles_tests/1000_1000_1600000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":1600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":1600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":368640,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":1600000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":442368,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_1700000.json b/video/fixtures/profiles_tests/1000_1000_1700000.json index 0dada7dc5..208fbffaf 100644 --- a/video/fixtures/profiles_tests/1000_1000_1700000.json +++ b/video/fixtures/profiles_tests/1000_1000_1700000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":1700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":1700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":391680,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":1700000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":470016,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_200000.json b/video/fixtures/profiles_tests/1000_1000_200000.json index 03777f52c..4e3ae848f 100644 --- a/video/fixtures/profiles_tests/1000_1000_200000.json +++ b/video/fixtures/profiles_tests/1000_1000_200000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":100000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":100000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":100000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_2100000.json b/video/fixtures/profiles_tests/1000_1000_2100000.json index 49b11f739..d7b5c2a4c 100644 --- a/video/fixtures/profiles_tests/1000_1000_2100000.json +++ b/video/fixtures/profiles_tests/1000_1000_2100000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":2100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":2100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":483840,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":2100000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":580608,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_3000000.json b/video/fixtures/profiles_tests/1000_1000_3000000.json index 89f34d3a5..0b51b6053 100644 --- a/video/fixtures/profiles_tests/1000_1000_3000000.json +++ b/video/fixtures/profiles_tests/1000_1000_3000000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":3000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":3000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":691200,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":3000000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":829440,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_5300000.json b/video/fixtures/profiles_tests/1000_1000_5300000.json index 5592dc0fb..af459c522 100644 --- a/video/fixtures/profiles_tests/1000_1000_5300000.json +++ b/video/fixtures/profiles_tests/1000_1000_5300000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":5300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":5300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":5300000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":5300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_7500000.json b/video/fixtures/profiles_tests/1000_1000_7500000.json index 9b35123ee..8262ba0be 100644 --- a/video/fixtures/profiles_tests/1000_1000_7500000.json +++ b/video/fixtures/profiles_tests/1000_1000_7500000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":7500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":7500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":7500000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":7500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":7500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_800000.json b/video/fixtures/profiles_tests/1000_1000_800000.json index f0853096e..96cceb9cb 100644 --- a/video/fixtures/profiles_tests/1000_1000_800000.json +++ b/video/fixtures/profiles_tests/1000_1000_800000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":400000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":400000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":400000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_8200000.json b/video/fixtures/profiles_tests/1000_1000_8200000.json index b7c858284..307c25e02 100644 --- a/video/fixtures/profiles_tests/1000_1000_8200000.json +++ b/video/fixtures/profiles_tests/1000_1000_8200000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":8200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":8200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":8200000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":8200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":8200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_900000.json b/video/fixtures/profiles_tests/1000_1000_900000.json index 1df71295c..31864d134 100644 --- a/video/fixtures/profiles_tests/1000_1000_900000.json +++ b/video/fixtures/profiles_tests/1000_1000_900000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":900000,"ExpectedOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":450000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":900000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":450000,"fps":0},{"name":"1000p0","width":1000,"height":1000,"bitrate":900000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":450000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1400_10700000.json b/video/fixtures/profiles_tests/1000_1400_10700000.json index 414e84532..8ea1d6af0 100644 --- a/video/fixtures/profiles_tests/1000_1400_10700000.json +++ b/video/fixtures/profiles_tests/1000_1400_10700000.json @@ -1 +1 @@ -{"Width":1000,"Height":1400,"Bitrate":10700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1400p0","width":1000,"height":1400,"bitrate":10700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1400p0","width":1000,"height":1400,"bitrate":10700000,"fps":0}]} \ No newline at end of file +{"Width":1000,"Height":1400,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1400p0","width":1000,"height":1400,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_100000.json b/video/fixtures/profiles_tests/1024_1024_100000.json index 9551db572..672b41e37 100644 --- a/video/fixtures/profiles_tests/1024_1024_100000.json +++ b/video/fixtures/profiles_tests/1024_1024_100000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":100000,"ExpectedOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":50000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":100000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":50000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":100000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":50000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_10500000.json b/video/fixtures/profiles_tests/1024_1024_10500000.json index f9f58b246..c116a55d4 100644 --- a/video/fixtures/profiles_tests/1024_1024_10500000.json +++ b/video/fixtures/profiles_tests/1024_1024_10500000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":10500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":10500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":10500000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":10500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":10500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_10600000.json b/video/fixtures/profiles_tests/1024_1024_10600000.json index c3888aac1..50703a7bd 100644 --- a/video/fixtures/profiles_tests/1024_1024_10600000.json +++ b/video/fixtures/profiles_tests/1024_1024_10600000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":10600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":10600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":10600000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":10600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":10600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_12100000.json b/video/fixtures/profiles_tests/1024_1024_12100000.json index 1d6285bb6..9f8d57bd0 100644 --- a/video/fixtures/profiles_tests/1024_1024_12100000.json +++ b/video/fixtures/profiles_tests/1024_1024_12100000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":12100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":12100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":12100000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":12100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":12100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_13200000.json b/video/fixtures/profiles_tests/1024_1024_13200000.json index e12284820..665e78478 100644 --- a/video/fixtures/profiles_tests/1024_1024_13200000.json +++ b/video/fixtures/profiles_tests/1024_1024_13200000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":13200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":13200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":13200000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":13200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":13200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_1800000.json b/video/fixtures/profiles_tests/1024_1024_1800000.json index 6fc9ff1b9..9623d0304 100644 --- a/video/fixtures/profiles_tests/1024_1024_1800000.json +++ b/video/fixtures/profiles_tests/1024_1024_1800000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":1800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":1800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":395507,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":1800000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":474609,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_1900000.json b/video/fixtures/profiles_tests/1024_1024_1900000.json index 50dba4aec..dd04f06c4 100644 --- a/video/fixtures/profiles_tests/1024_1024_1900000.json +++ b/video/fixtures/profiles_tests/1024_1024_1900000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":1900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":1900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":417480,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":1900000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":500976,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_2000000.json b/video/fixtures/profiles_tests/1024_1024_2000000.json index 7900cd71b..35ad3fab0 100644 --- a/video/fixtures/profiles_tests/1024_1024_2000000.json +++ b/video/fixtures/profiles_tests/1024_1024_2000000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":2000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":2000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":439453,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":2000000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":527343,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_2100000.json b/video/fixtures/profiles_tests/1024_1024_2100000.json index 7f870319a..9025d4cb2 100644 --- a/video/fixtures/profiles_tests/1024_1024_2100000.json +++ b/video/fixtures/profiles_tests/1024_1024_2100000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":2100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":2100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":461425,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":2100000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":553710,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_2800000.json b/video/fixtures/profiles_tests/1024_1024_2800000.json index 31567cb5a..593b1af74 100644 --- a/video/fixtures/profiles_tests/1024_1024_2800000.json +++ b/video/fixtures/profiles_tests/1024_1024_2800000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":2800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":2800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":615234,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":2800000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":738281,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":2800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_3500000.json b/video/fixtures/profiles_tests/1024_1024_3500000.json index 9accccb0e..86acf235e 100644 --- a/video/fixtures/profiles_tests/1024_1024_3500000.json +++ b/video/fixtures/profiles_tests/1024_1024_3500000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":3500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":3500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":769042,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":3500000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":3500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":922851,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":3500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_3800000.json b/video/fixtures/profiles_tests/1024_1024_3800000.json index 274d29b20..52d2f8b86 100644 --- a/video/fixtures/profiles_tests/1024_1024_3800000.json +++ b/video/fixtures/profiles_tests/1024_1024_3800000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":3800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":3800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":834960,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":3800000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":3800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_4200000.json b/video/fixtures/profiles_tests/1024_1024_4200000.json index 3d3ed09cb..1f79c67fc 100644 --- a/video/fixtures/profiles_tests/1024_1024_4200000.json +++ b/video/fixtures/profiles_tests/1024_1024_4200000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":4200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":4200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":922851,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3691406,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":4200000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_5600000.json b/video/fixtures/profiles_tests/1024_1024_5600000.json index 6bfcb1a31..90899e2af 100644 --- a/video/fixtures/profiles_tests/1024_1024_5600000.json +++ b/video/fixtures/profiles_tests/1024_1024_5600000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":5600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":5600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":5600000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":5600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":5600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_700000.json b/video/fixtures/profiles_tests/1024_1024_700000.json index ae35e73c7..73691a10d 100644 --- a/video/fixtures/profiles_tests/1024_1024_700000.json +++ b/video/fixtures/profiles_tests/1024_1024_700000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":350000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":350000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":350000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_7300000.json b/video/fixtures/profiles_tests/1024_1024_7300000.json index 6f6058c91..540bb20d1 100644 --- a/video/fixtures/profiles_tests/1024_1024_7300000.json +++ b/video/fixtures/profiles_tests/1024_1024_7300000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":7300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":7300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":7300000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":7300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":7300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_8600000.json b/video/fixtures/profiles_tests/1024_1024_8600000.json index cb6165718..10aa22396 100644 --- a/video/fixtures/profiles_tests/1024_1024_8600000.json +++ b/video/fixtures/profiles_tests/1024_1024_8600000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":8600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":8600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":8600000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":8600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":8600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_900000.json b/video/fixtures/profiles_tests/1024_1024_900000.json index f9ca71dcc..f279cd875 100644 --- a/video/fixtures/profiles_tests/1024_1024_900000.json +++ b/video/fixtures/profiles_tests/1024_1024_900000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":900000,"ExpectedOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":450000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":900000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":450000,"fps":0},{"name":"1024p0","width":1024,"height":1024,"bitrate":900000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":450000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_576_7700000.json b/video/fixtures/profiles_tests/1024_576_7700000.json index b9887124d..feb3e287b 100644 --- a/video/fixtures/profiles_tests/1024_576_7700000.json +++ b/video/fixtures/profiles_tests/1024_576_7700000.json @@ -1 +1 @@ -{"Width":1024,"Height":576,"Bitrate":7700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"576p0","width":1024,"height":576,"bitrate":7700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"576p0","width":1024,"height":576,"bitrate":7700000,"fps":0}]} \ No newline at end of file +{"Width":1024,"Height":576,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"576p0","width":1024,"height":576,"bitrate":7700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1030_720_2000000.json b/video/fixtures/profiles_tests/1030_720_2000000.json index 0c3c88c79..90f7383f3 100644 --- a/video/fixtures/profiles_tests/1030_720_2000000.json +++ b/video/fixtures/profiles_tests/1030_720_2000000.json @@ -1 +1 @@ -{"Width":1030,"Height":720,"Bitrate":2000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1030,"height":720,"bitrate":2000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":621359,"fps":0},{"name":"720p0","width":1030,"height":720,"bitrate":2000000,"fps":0}]} \ No newline at end of file +{"Width":1030,"Height":720,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":745631,"fps":0,"quality":27},{"name":"720p0","width":1030,"height":720,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1038_1202_1300000.json b/video/fixtures/profiles_tests/1038_1202_1300000.json index 3389897ae..a853be1bd 100644 --- a/video/fixtures/profiles_tests/1038_1202_1300000.json +++ b/video/fixtures/profiles_tests/1038_1202_1300000.json @@ -1 +1 @@ -{"Width":1038,"Height":1202,"Bitrate":1300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1202p0","width":1038,"height":1202,"bitrate":1300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":240062,"fps":0},{"name":"1202p0","width":1038,"height":1202,"bitrate":1300000,"fps":0}]} \ No newline at end of file +{"Width":1038,"Height":1202,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":288074,"fps":0,"quality":27},{"name":"1202p0","width":1038,"height":1202,"bitrate":1300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1076_604_800000.json b/video/fixtures/profiles_tests/1076_604_800000.json index 1acbecbfe..21b948e9f 100644 --- a/video/fixtures/profiles_tests/1076_604_800000.json +++ b/video/fixtures/profiles_tests/1076_604_800000.json @@ -1 +1 @@ -{"Width":1076,"Height":604,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":1076,"height":604,"bitrate":400000,"fps":0},{"name":"604p0","width":1076,"height":604,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1076,"height":604,"bitrate":400000,"fps":0},{"name":"604p0","width":1076,"height":604,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":1076,"Height":604,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1076,"height":604,"bitrate":400000,"fps":0,"quality":27},{"name":"604p0","width":1076,"height":604,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_10000000.json b/video/fixtures/profiles_tests/1080_1080_10000000.json index 6e336afd4..a8029425e 100644 --- a/video/fixtures/profiles_tests/1080_1080_10000000.json +++ b/video/fixtures/profiles_tests/1080_1080_10000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":10000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":10000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":10000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_10300000.json b/video/fixtures/profiles_tests/1080_1080_10300000.json index c1954e1b8..7b6132fee 100644 --- a/video/fixtures/profiles_tests/1080_1080_10300000.json +++ b/video/fixtures/profiles_tests/1080_1080_10300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":10300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":10300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":10300000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_10400000.json b/video/fixtures/profiles_tests/1080_1080_10400000.json index e8f14d218..19fb9157c 100644 --- a/video/fixtures/profiles_tests/1080_1080_10400000.json +++ b/video/fixtures/profiles_tests/1080_1080_10400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":10400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":10400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":10400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_10500000.json b/video/fixtures/profiles_tests/1080_1080_10500000.json index 00d9ba1e3..68554745c 100644 --- a/video/fixtures/profiles_tests/1080_1080_10500000.json +++ b/video/fixtures/profiles_tests/1080_1080_10500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":10500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":10500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":10500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":10500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_10700000.json b/video/fixtures/profiles_tests/1080_1080_10700000.json index 45463e460..f991385cb 100644 --- a/video/fixtures/profiles_tests/1080_1080_10700000.json +++ b/video/fixtures/profiles_tests/1080_1080_10700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":10700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":10700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":10700000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_10800000.json b/video/fixtures/profiles_tests/1080_1080_10800000.json index 1c166fd39..c728ef98a 100644 --- a/video/fixtures/profiles_tests/1080_1080_10800000.json +++ b/video/fixtures/profiles_tests/1080_1080_10800000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":10800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":10800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":10800000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":10800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_11400000.json b/video/fixtures/profiles_tests/1080_1080_11400000.json index 1e773963f..17b4d15b1 100644 --- a/video/fixtures/profiles_tests/1080_1080_11400000.json +++ b/video/fixtures/profiles_tests/1080_1080_11400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":11400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":11400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":11400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":11400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":11400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_11600000.json b/video/fixtures/profiles_tests/1080_1080_11600000.json index 385f3a30b..47775a404 100644 --- a/video/fixtures/profiles_tests/1080_1080_11600000.json +++ b/video/fixtures/profiles_tests/1080_1080_11600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":11600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":11600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":11600000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":11600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":11600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_11700000.json b/video/fixtures/profiles_tests/1080_1080_11700000.json index 0fab7d6f8..c069ba0b2 100644 --- a/video/fixtures/profiles_tests/1080_1080_11700000.json +++ b/video/fixtures/profiles_tests/1080_1080_11700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":11700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":11700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":11700000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":11700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":11700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_11900000.json b/video/fixtures/profiles_tests/1080_1080_11900000.json index 6659cae2a..2a6ae14d3 100644 --- a/video/fixtures/profiles_tests/1080_1080_11900000.json +++ b/video/fixtures/profiles_tests/1080_1080_11900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":11900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":11900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":11900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":11900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":11900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_12100000.json b/video/fixtures/profiles_tests/1080_1080_12100000.json index 41b3ed796..ece50ece3 100644 --- a/video/fixtures/profiles_tests/1080_1080_12100000.json +++ b/video/fixtures/profiles_tests/1080_1080_12100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":12100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":12100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":12100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":12100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":12100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_14900000.json b/video/fixtures/profiles_tests/1080_1080_14900000.json index 6f3267145..b6c51b384 100644 --- a/video/fixtures/profiles_tests/1080_1080_14900000.json +++ b/video/fixtures/profiles_tests/1080_1080_14900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":14900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":14900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":14900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":14900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":14900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_1500000.json b/video/fixtures/profiles_tests/1080_1080_1500000.json index 68de4f9b2..02bce572b 100644 --- a/video/fixtures/profiles_tests/1080_1080_1500000.json +++ b/video/fixtures/profiles_tests/1080_1080_1500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":1500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":1500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":296296,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":1500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":355555,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_15000000.json b/video/fixtures/profiles_tests/1080_1080_15000000.json index c0543caa0..78cbc48d0 100644 --- a/video/fixtures/profiles_tests/1080_1080_15000000.json +++ b/video/fixtures/profiles_tests/1080_1080_15000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":15000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":15000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":15000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":15000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":15000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_1600000.json b/video/fixtures/profiles_tests/1080_1080_1600000.json index e8b3ab8ac..05ec09294 100644 --- a/video/fixtures/profiles_tests/1080_1080_1600000.json +++ b/video/fixtures/profiles_tests/1080_1080_1600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":1600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":1600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":316049,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":1600000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":379259,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_200000.json b/video/fixtures/profiles_tests/1080_1080_200000.json index 72bb8190c..574511f71 100644 --- a/video/fixtures/profiles_tests/1080_1080_200000.json +++ b/video/fixtures/profiles_tests/1080_1080_200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":100000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":100000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":100000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_20400000.json b/video/fixtures/profiles_tests/1080_1080_20400000.json index 83ded5457..6c91c3ee1 100644 --- a/video/fixtures/profiles_tests/1080_1080_20400000.json +++ b/video/fixtures/profiles_tests/1080_1080_20400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":20400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":20400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":20400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":20400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":20400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_2100000.json b/video/fixtures/profiles_tests/1080_1080_2100000.json index e8b965ab7..5835398ec 100644 --- a/video/fixtures/profiles_tests/1080_1080_2100000.json +++ b/video/fixtures/profiles_tests/1080_1080_2100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":2100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":2100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":414814,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":2100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":497777,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_2400000.json b/video/fixtures/profiles_tests/1080_1080_2400000.json index 96a94dd04..a6b91253e 100644 --- a/video/fixtures/profiles_tests/1080_1080_2400000.json +++ b/video/fixtures/profiles_tests/1080_1080_2400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":2400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":2400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":474074,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":2400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":568888,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_28500000.json b/video/fixtures/profiles_tests/1080_1080_28500000.json index 9fbe2c366..1cb0a5310 100644 --- a/video/fixtures/profiles_tests/1080_1080_28500000.json +++ b/video/fixtures/profiles_tests/1080_1080_28500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":28500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":28500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":28500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":28500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":28500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_300000.json b/video/fixtures/profiles_tests/1080_1080_300000.json index ead232e63..e24427dcf 100644 --- a/video/fixtures/profiles_tests/1080_1080_300000.json +++ b/video/fixtures/profiles_tests/1080_1080_300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":150000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":150000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":150000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_3000000.json b/video/fixtures/profiles_tests/1080_1080_3000000.json index 9ebb04cd0..31d572939 100644 --- a/video/fixtures/profiles_tests/1080_1080_3000000.json +++ b/video/fixtures/profiles_tests/1080_1080_3000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":3000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":3000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":592592,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":3000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":711111,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_39300000.json b/video/fixtures/profiles_tests/1080_1080_39300000.json index 88d452489..a5e025c3f 100644 --- a/video/fixtures/profiles_tests/1080_1080_39300000.json +++ b/video/fixtures/profiles_tests/1080_1080_39300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":39300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":39300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":39300000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":39300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":39300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_400000.json b/video/fixtures/profiles_tests/1080_1080_400000.json index 37187610a..ca87cd04b 100644 --- a/video/fixtures/profiles_tests/1080_1080_400000.json +++ b/video/fixtures/profiles_tests/1080_1080_400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":200000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":200000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":200000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_4200000.json b/video/fixtures/profiles_tests/1080_1080_4200000.json index 1b4848ff4..a30e1ee75 100644 --- a/video/fixtures/profiles_tests/1080_1080_4200000.json +++ b/video/fixtures/profiles_tests/1080_1080_4200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":4200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":4200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":829629,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3318518,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":4200000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":995555,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3982222,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_500000.json b/video/fixtures/profiles_tests/1080_1080_500000.json index 831b37bcc..70c5ec4ca 100644 --- a/video/fixtures/profiles_tests/1080_1080_500000.json +++ b/video/fixtures/profiles_tests/1080_1080_500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":250000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":250000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":250000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_5400000.json b/video/fixtures/profiles_tests/1080_1080_5400000.json index a9914e60c..3bd7d0d25 100644 --- a/video/fixtures/profiles_tests/1080_1080_5400000.json +++ b/video/fixtures/profiles_tests/1080_1080_5400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":5400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":5400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":5400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":5400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":5400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_600000.json b/video/fixtures/profiles_tests/1080_1080_600000.json index 00aca187a..8e7ec2c4c 100644 --- a/video/fixtures/profiles_tests/1080_1080_600000.json +++ b/video/fixtures/profiles_tests/1080_1080_600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":300000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":300000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":300000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_6400000.json b/video/fixtures/profiles_tests/1080_1080_6400000.json index f15686341..36d8d7fc8 100644 --- a/video/fixtures/profiles_tests/1080_1080_6400000.json +++ b/video/fixtures/profiles_tests/1080_1080_6400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":6400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":6400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":6400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":6400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":6400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_6500000.json b/video/fixtures/profiles_tests/1080_1080_6500000.json index 3a2433008..fd828f712 100644 --- a/video/fixtures/profiles_tests/1080_1080_6500000.json +++ b/video/fixtures/profiles_tests/1080_1080_6500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":6500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":6500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":6500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":6500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":6500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_7700000.json b/video/fixtures/profiles_tests/1080_1080_7700000.json index 305e4664c..4855edba9 100644 --- a/video/fixtures/profiles_tests/1080_1080_7700000.json +++ b/video/fixtures/profiles_tests/1080_1080_7700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":7700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":7700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":7700000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":7700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_8000000.json b/video/fixtures/profiles_tests/1080_1080_8000000.json index 582583408..db6643653 100644 --- a/video/fixtures/profiles_tests/1080_1080_8000000.json +++ b/video/fixtures/profiles_tests/1080_1080_8000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":8000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":8000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":8000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":8000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_8100000.json b/video/fixtures/profiles_tests/1080_1080_8100000.json index 8761e81f6..275f85a01 100644 --- a/video/fixtures/profiles_tests/1080_1080_8100000.json +++ b/video/fixtures/profiles_tests/1080_1080_8100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":8100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":8100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":8100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":8100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":8100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_8400000.json b/video/fixtures/profiles_tests/1080_1080_8400000.json index 321d59824..46b3533fd 100644 --- a/video/fixtures/profiles_tests/1080_1080_8400000.json +++ b/video/fixtures/profiles_tests/1080_1080_8400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":8400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":8400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":8400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":8400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_8500000.json b/video/fixtures/profiles_tests/1080_1080_8500000.json index bcd929e05..f0f97d240 100644 --- a/video/fixtures/profiles_tests/1080_1080_8500000.json +++ b/video/fixtures/profiles_tests/1080_1080_8500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":8500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":8500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":8500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":8500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":8500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_8700000.json b/video/fixtures/profiles_tests/1080_1080_8700000.json index 97eae10d6..b4558e729 100644 --- a/video/fixtures/profiles_tests/1080_1080_8700000.json +++ b/video/fixtures/profiles_tests/1080_1080_8700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":8700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":8700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":8700000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":8700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":8700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_8900000.json b/video/fixtures/profiles_tests/1080_1080_8900000.json index 0471bb111..f6f756390 100644 --- a/video/fixtures/profiles_tests/1080_1080_8900000.json +++ b/video/fixtures/profiles_tests/1080_1080_8900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":8900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":8900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":8900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":8900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":8900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_900000.json b/video/fixtures/profiles_tests/1080_1080_900000.json index f19d0f3e7..9217c5a2f 100644 --- a/video/fixtures/profiles_tests/1080_1080_900000.json +++ b/video/fixtures/profiles_tests/1080_1080_900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":900000,"ExpectedOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":450000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":900000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":450000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":450000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_9000000.json b/video/fixtures/profiles_tests/1080_1080_9000000.json index fe02dfc82..28b5a9c62 100644 --- a/video/fixtures/profiles_tests/1080_1080_9000000.json +++ b/video/fixtures/profiles_tests/1080_1080_9000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":9000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":9000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":9000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":9000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_9100000.json b/video/fixtures/profiles_tests/1080_1080_9100000.json index 9db8a1486..ff0a34e8a 100644 --- a/video/fixtures/profiles_tests/1080_1080_9100000.json +++ b/video/fixtures/profiles_tests/1080_1080_9100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":9100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":9100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":9100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":9100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_9200000.json b/video/fixtures/profiles_tests/1080_1080_9200000.json index 151cd1c81..828ca7bbb 100644 --- a/video/fixtures/profiles_tests/1080_1080_9200000.json +++ b/video/fixtures/profiles_tests/1080_1080_9200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":9200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":9200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":9200000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":9200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_9500000.json b/video/fixtures/profiles_tests/1080_1080_9500000.json index 7dd2cbcc8..543f37a34 100644 --- a/video/fixtures/profiles_tests/1080_1080_9500000.json +++ b/video/fixtures/profiles_tests/1080_1080_9500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":9500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":9500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":9500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":9500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_9900000.json b/video/fixtures/profiles_tests/1080_1080_9900000.json index 6f48d9863..7c170f5af 100644 --- a/video/fixtures/profiles_tests/1080_1080_9900000.json +++ b/video/fixtures/profiles_tests/1080_1080_9900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":9900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":9900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1080,"height":1080,"bitrate":9900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1440_11000000.json b/video/fixtures/profiles_tests/1080_1440_11000000.json index 5f3fdf756..0892ba8b9 100644 --- a/video/fixtures/profiles_tests/1080_1440_11000000.json +++ b/video/fixtures/profiles_tests/1080_1440_11000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1440,"Bitrate":11000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1440p0","width":1080,"height":1440,"bitrate":11000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1440p0","width":1080,"height":1440,"bitrate":11000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1440,"Bitrate":11000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1080,"height":1440,"bitrate":11000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1440_200000.json b/video/fixtures/profiles_tests/1080_1440_200000.json index e5d5f2d45..efee86bc4 100644 --- a/video/fixtures/profiles_tests/1080_1440_200000.json +++ b/video/fixtures/profiles_tests/1080_1440_200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1440,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":1080,"height":1440,"bitrate":100000,"fps":0},{"name":"1440p0","width":1080,"height":1440,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1440,"bitrate":100000,"fps":0},{"name":"1440p0","width":1080,"height":1440,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1440,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1440,"bitrate":100000,"fps":0,"quality":27},{"name":"1440p0","width":1080,"height":1440,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1440_2100000.json b/video/fixtures/profiles_tests/1080_1440_2100000.json index aa2efcb18..638a053a2 100644 --- a/video/fixtures/profiles_tests/1080_1440_2100000.json +++ b/video/fixtures/profiles_tests/1080_1440_2100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1440,"Bitrate":2100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1440p0","width":1080,"height":1440,"bitrate":2100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":311111,"fps":0},{"name":"1440p0","width":1080,"height":1440,"bitrate":2100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1440,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":373333,"fps":0,"quality":27},{"name":"1440p0","width":1080,"height":1440,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1620_10700000.json b/video/fixtures/profiles_tests/1080_1620_10700000.json index 8c53746e4..983acee75 100644 --- a/video/fixtures/profiles_tests/1080_1620_10700000.json +++ b/video/fixtures/profiles_tests/1080_1620_10700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1620,"Bitrate":10700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1620p0","width":1080,"height":1620,"bitrate":10700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1620p0","width":1080,"height":1620,"bitrate":10700000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1620,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1620p0","width":1080,"height":1620,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1620_10900000.json b/video/fixtures/profiles_tests/1080_1620_10900000.json index 980979558..5bd2d1f26 100644 --- a/video/fixtures/profiles_tests/1080_1620_10900000.json +++ b/video/fixtures/profiles_tests/1080_1620_10900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1620,"Bitrate":10900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1620p0","width":1080,"height":1620,"bitrate":10900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1620p0","width":1080,"height":1620,"bitrate":10900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1620,"Bitrate":10900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1620p0","width":1080,"height":1620,"bitrate":10900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1834_4600000.json b/video/fixtures/profiles_tests/1080_1834_4600000.json index e7074bff5..7bded81b6 100644 --- a/video/fixtures/profiles_tests/1080_1834_4600000.json +++ b/video/fixtures/profiles_tests/1080_1834_4600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1834,"Bitrate":4600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1834p0","width":1080,"height":1834,"bitrate":4600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":535078,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2140312,"fps":0},{"name":"1834p0","width":1080,"height":1834,"bitrate":4600000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1834,"Bitrate":4600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":642093,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2568375,"fps":0,"quality":27},{"name":"1834p0","width":1080,"height":1834,"bitrate":4600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1908_14500000.json b/video/fixtures/profiles_tests/1080_1908_14500000.json index db0be8727..8c858134c 100644 --- a/video/fixtures/profiles_tests/1080_1908_14500000.json +++ b/video/fixtures/profiles_tests/1080_1908_14500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1908,"Bitrate":14500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1908p0","width":1080,"height":1908,"bitrate":14500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1908p0","width":1080,"height":1908,"bitrate":14500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1908,"Bitrate":14500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1908p0","width":1080,"height":1908,"bitrate":14500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_10000000.json b/video/fixtures/profiles_tests/1080_1920_10000000.json index ab009f88b..2405d0a4f 100644 --- a/video/fixtures/profiles_tests/1080_1920_10000000.json +++ b/video/fixtures/profiles_tests/1080_1920_10000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":10000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":10000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":10000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":10000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_10200000.json b/video/fixtures/profiles_tests/1080_1920_10200000.json index beaa29fbc..d455327e6 100644 --- a/video/fixtures/profiles_tests/1080_1920_10200000.json +++ b/video/fixtures/profiles_tests/1080_1920_10200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":10200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":10200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":10200000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":10200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":10200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_10300000.json b/video/fixtures/profiles_tests/1080_1920_10300000.json index 9f9c1930d..c1ee3e891 100644 --- a/video/fixtures/profiles_tests/1080_1920_10300000.json +++ b/video/fixtures/profiles_tests/1080_1920_10300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":10300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":10300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":10300000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_11400000.json b/video/fixtures/profiles_tests/1080_1920_11400000.json index c5140a069..49b558bde 100644 --- a/video/fixtures/profiles_tests/1080_1920_11400000.json +++ b/video/fixtures/profiles_tests/1080_1920_11400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":11400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":11400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":11400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":11400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":11400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_11800000.json b/video/fixtures/profiles_tests/1080_1920_11800000.json index 09e481abe..b94a00886 100644 --- a/video/fixtures/profiles_tests/1080_1920_11800000.json +++ b/video/fixtures/profiles_tests/1080_1920_11800000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":11800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":11800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":11800000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":11800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":11800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_12100000.json b/video/fixtures/profiles_tests/1080_1920_12100000.json index 21e8d7ee4..ef746f87c 100644 --- a/video/fixtures/profiles_tests/1080_1920_12100000.json +++ b/video/fixtures/profiles_tests/1080_1920_12100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":12100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":12100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":12100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":12100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_12200000.json b/video/fixtures/profiles_tests/1080_1920_12200000.json index d6ff60c28..3eafbcdc8 100644 --- a/video/fixtures/profiles_tests/1080_1920_12200000.json +++ b/video/fixtures/profiles_tests/1080_1920_12200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":12200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":12200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":12200000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":12200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_12300000.json b/video/fixtures/profiles_tests/1080_1920_12300000.json index e0f30c5a2..76f724ffe 100644 --- a/video/fixtures/profiles_tests/1080_1920_12300000.json +++ b/video/fixtures/profiles_tests/1080_1920_12300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":12300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":12300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":12300000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":12300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_12400000.json b/video/fixtures/profiles_tests/1080_1920_12400000.json index 9552c6a1e..194317ad5 100644 --- a/video/fixtures/profiles_tests/1080_1920_12400000.json +++ b/video/fixtures/profiles_tests/1080_1920_12400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":12400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":12400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":12400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":12400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_12500000.json b/video/fixtures/profiles_tests/1080_1920_12500000.json index 3dba18e5d..b5389a3d1 100644 --- a/video/fixtures/profiles_tests/1080_1920_12500000.json +++ b/video/fixtures/profiles_tests/1080_1920_12500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":12500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":12500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":12500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":12500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_1400000.json b/video/fixtures/profiles_tests/1080_1920_1400000.json index cb184ccc8..414e89300 100644 --- a/video/fixtures/profiles_tests/1080_1920_1400000.json +++ b/video/fixtures/profiles_tests/1080_1920_1400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":1400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":1400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":155555,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":1400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":186666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_14900000.json b/video/fixtures/profiles_tests/1080_1920_14900000.json index 80be49ebf..bd44230e9 100644 --- a/video/fixtures/profiles_tests/1080_1920_14900000.json +++ b/video/fixtures/profiles_tests/1080_1920_14900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":14900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":14900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":14900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":14900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":14900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_15100000.json b/video/fixtures/profiles_tests/1080_1920_15100000.json index 79880f6d6..bc82e4ca7 100644 --- a/video/fixtures/profiles_tests/1080_1920_15100000.json +++ b/video/fixtures/profiles_tests/1080_1920_15100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":15100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":15100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":15100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":15100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":15100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_15200000.json b/video/fixtures/profiles_tests/1080_1920_15200000.json index e9966d194..766bba091 100644 --- a/video/fixtures/profiles_tests/1080_1920_15200000.json +++ b/video/fixtures/profiles_tests/1080_1920_15200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":15200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":15200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":15200000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":15200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":15200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_15300000.json b/video/fixtures/profiles_tests/1080_1920_15300000.json index 21ca50325..521908eb4 100644 --- a/video/fixtures/profiles_tests/1080_1920_15300000.json +++ b/video/fixtures/profiles_tests/1080_1920_15300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":15300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":15300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":15300000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":15300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":15300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_15900000.json b/video/fixtures/profiles_tests/1080_1920_15900000.json index 67a184f29..92757e8cd 100644 --- a/video/fixtures/profiles_tests/1080_1920_15900000.json +++ b/video/fixtures/profiles_tests/1080_1920_15900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":15900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":15900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":15900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":15900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":15900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_1600000.json b/video/fixtures/profiles_tests/1080_1920_1600000.json index 671ca4235..80eed9651 100644 --- a/video/fixtures/profiles_tests/1080_1920_1600000.json +++ b/video/fixtures/profiles_tests/1080_1920_1600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":1600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":1600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":177777,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":1600000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":213333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_16900000.json b/video/fixtures/profiles_tests/1080_1920_16900000.json index 2e48b8bb9..6039eefb0 100644 --- a/video/fixtures/profiles_tests/1080_1920_16900000.json +++ b/video/fixtures/profiles_tests/1080_1920_16900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":16900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":16900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":16900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":16900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":16900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_1700000.json b/video/fixtures/profiles_tests/1080_1920_1700000.json index 3bf8aec94..b4a64987b 100644 --- a/video/fixtures/profiles_tests/1080_1920_1700000.json +++ b/video/fixtures/profiles_tests/1080_1920_1700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":1700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":1700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":188888,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":1700000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":226666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_17000000.json b/video/fixtures/profiles_tests/1080_1920_17000000.json index eb9060689..859b8cb0b 100644 --- a/video/fixtures/profiles_tests/1080_1920_17000000.json +++ b/video/fixtures/profiles_tests/1080_1920_17000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":17000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":17000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":17000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":17000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":17000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_1900000.json b/video/fixtures/profiles_tests/1080_1920_1900000.json index a40837821..64021e5ad 100644 --- a/video/fixtures/profiles_tests/1080_1920_1900000.json +++ b/video/fixtures/profiles_tests/1080_1920_1900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":1900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":1900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":211111,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":1900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":253333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2000000.json b/video/fixtures/profiles_tests/1080_1920_2000000.json index a60e4e97b..23abb55b8 100644 --- a/video/fixtures/profiles_tests/1080_1920_2000000.json +++ b/video/fixtures/profiles_tests/1080_1920_2000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":222222,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":266666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2100000.json b/video/fixtures/profiles_tests/1080_1920_2100000.json index 5f10cd86a..38284fca2 100644 --- a/video/fixtures/profiles_tests/1080_1920_2100000.json +++ b/video/fixtures/profiles_tests/1080_1920_2100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":233333,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":280000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2200000.json b/video/fixtures/profiles_tests/1080_1920_2200000.json index 423562f9a..e6a2aaa0e 100644 --- a/video/fixtures/profiles_tests/1080_1920_2200000.json +++ b/video/fixtures/profiles_tests/1080_1920_2200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":244444,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2200000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":293333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2300000.json b/video/fixtures/profiles_tests/1080_1920_2300000.json index e06c82e45..9381b998d 100644 --- a/video/fixtures/profiles_tests/1080_1920_2300000.json +++ b/video/fixtures/profiles_tests/1080_1920_2300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":255555,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2300000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":306666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2500000.json b/video/fixtures/profiles_tests/1080_1920_2500000.json index 5252fa01c..2fef6d160 100644 --- a/video/fixtures/profiles_tests/1080_1920_2500000.json +++ b/video/fixtures/profiles_tests/1080_1920_2500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":277777,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":333333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2600000.json b/video/fixtures/profiles_tests/1080_1920_2600000.json index 463574821..f967a44e4 100644 --- a/video/fixtures/profiles_tests/1080_1920_2600000.json +++ b/video/fixtures/profiles_tests/1080_1920_2600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":288888,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2600000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":346666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2700000.json b/video/fixtures/profiles_tests/1080_1920_2700000.json index 2c8ae383b..aefb037d6 100644 --- a/video/fixtures/profiles_tests/1080_1920_2700000.json +++ b/video/fixtures/profiles_tests/1080_1920_2700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":300000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2700000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2800000.json b/video/fixtures/profiles_tests/1080_1920_2800000.json index 915d0ef43..b79777705 100644 --- a/video/fixtures/profiles_tests/1080_1920_2800000.json +++ b/video/fixtures/profiles_tests/1080_1920_2800000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":311111,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2800000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":373333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2900000.json b/video/fixtures/profiles_tests/1080_1920_2900000.json index 54b73038d..143fb8c2e 100644 --- a/video/fixtures/profiles_tests/1080_1920_2900000.json +++ b/video/fixtures/profiles_tests/1080_1920_2900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":322222,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":2900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":386666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3000000.json b/video/fixtures/profiles_tests/1080_1920_3000000.json index f9031d4ad..5efc8bc64 100644 --- a/video/fixtures/profiles_tests/1080_1920_3000000.json +++ b/video/fixtures/profiles_tests/1080_1920_3000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":333333,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":400000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3100000.json b/video/fixtures/profiles_tests/1080_1920_3100000.json index 629b740f7..9c2708237 100644 --- a/video/fixtures/profiles_tests/1080_1920_3100000.json +++ b/video/fixtures/profiles_tests/1080_1920_3100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":344444,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":413333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3200000.json b/video/fixtures/profiles_tests/1080_1920_3200000.json index a16973071..4413a8d89 100644 --- a/video/fixtures/profiles_tests/1080_1920_3200000.json +++ b/video/fixtures/profiles_tests/1080_1920_3200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":355555,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3200000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":426666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3400000.json b/video/fixtures/profiles_tests/1080_1920_3400000.json index 1c644e62b..da5b143d4 100644 --- a/video/fixtures/profiles_tests/1080_1920_3400000.json +++ b/video/fixtures/profiles_tests/1080_1920_3400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":377777,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":453333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3600000.json b/video/fixtures/profiles_tests/1080_1920_3600000.json index efd27ab58..f560d51b9 100644 --- a/video/fixtures/profiles_tests/1080_1920_3600000.json +++ b/video/fixtures/profiles_tests/1080_1920_3600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":400000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3600000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3700000.json b/video/fixtures/profiles_tests/1080_1920_3700000.json index 66bd8c1c7..99a2da15b 100644 --- a/video/fixtures/profiles_tests/1080_1920_3700000.json +++ b/video/fixtures/profiles_tests/1080_1920_3700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":411111,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3700000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":493333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3900000.json b/video/fixtures/profiles_tests/1080_1920_3900000.json index f6b1d9c76..6200ead0b 100644 --- a/video/fixtures/profiles_tests/1080_1920_3900000.json +++ b/video/fixtures/profiles_tests/1080_1920_3900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":433333,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":3900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":520000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_4000000.json b/video/fixtures/profiles_tests/1080_1920_4000000.json index 1665a6fa8..6df3bfa2c 100644 --- a/video/fixtures/profiles_tests/1080_1920_4000000.json +++ b/video/fixtures/profiles_tests/1080_1920_4000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":4000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":4000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":444444,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":4000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":4000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":533333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_4100000.json b/video/fixtures/profiles_tests/1080_1920_4100000.json index 7f015ecfb..9b08f3a13 100644 --- a/video/fixtures/profiles_tests/1080_1920_4100000.json +++ b/video/fixtures/profiles_tests/1080_1920_4100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":4100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":4100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":455555,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1822222,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":4100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":4100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":546666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2186666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_4200000.json b/video/fixtures/profiles_tests/1080_1920_4200000.json index 3422481ab..ffdd2950c 100644 --- a/video/fixtures/profiles_tests/1080_1920_4200000.json +++ b/video/fixtures/profiles_tests/1080_1920_4200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":4200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":4200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":466666,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1866666,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":4200000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":560000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2240000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_43700000.json b/video/fixtures/profiles_tests/1080_1920_43700000.json index 2d7c10c57..0d3880910 100644 --- a/video/fixtures/profiles_tests/1080_1920_43700000.json +++ b/video/fixtures/profiles_tests/1080_1920_43700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":43700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":43700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":43700000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":43700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":43700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_4600000.json b/video/fixtures/profiles_tests/1080_1920_4600000.json index 20e936107..b6db53df9 100644 --- a/video/fixtures/profiles_tests/1080_1920_4600000.json +++ b/video/fixtures/profiles_tests/1080_1920_4600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":4600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":4600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":511111,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2044444,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":4600000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":4600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":613333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2453333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_4700000.json b/video/fixtures/profiles_tests/1080_1920_4700000.json index 8e8684d4f..010b07d2c 100644 --- a/video/fixtures/profiles_tests/1080_1920_4700000.json +++ b/video/fixtures/profiles_tests/1080_1920_4700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":4700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":4700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":522222,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2088888,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":4700000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":4700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":626666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2506666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_4900000.json b/video/fixtures/profiles_tests/1080_1920_4900000.json index c3059e4ed..e541cda4b 100644 --- a/video/fixtures/profiles_tests/1080_1920_4900000.json +++ b/video/fixtures/profiles_tests/1080_1920_4900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":4900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":4900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":544444,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2177777,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":4900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":4900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":653333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2613333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_5000000.json b/video/fixtures/profiles_tests/1080_1920_5000000.json index 2d0affe0d..16f9bd878 100644 --- a/video/fixtures/profiles_tests/1080_1920_5000000.json +++ b/video/fixtures/profiles_tests/1080_1920_5000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":5000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":5000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":555555,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2222222,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":5000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":5000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":666666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2666666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":5000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_5300000.json b/video/fixtures/profiles_tests/1080_1920_5300000.json index d8e4d4060..f5cd4e1e7 100644 --- a/video/fixtures/profiles_tests/1080_1920_5300000.json +++ b/video/fixtures/profiles_tests/1080_1920_5300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":5300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":5300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":588888,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2355555,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":5300000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":706666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2826666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":5300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_600000.json b/video/fixtures/profiles_tests/1080_1920_600000.json index 7def13d8b..62e53d327 100644 --- a/video/fixtures/profiles_tests/1080_1920_600000.json +++ b/video/fixtures/profiles_tests/1080_1920_600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":300000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":300000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":300000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_6000000.json b/video/fixtures/profiles_tests/1080_1920_6000000.json index 7e6919b81..a9e81f6ec 100644 --- a/video/fixtures/profiles_tests/1080_1920_6000000.json +++ b/video/fixtures/profiles_tests/1080_1920_6000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":6000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":6000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":666666,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2666666,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":6000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":6000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":800000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3200000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":6000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_6100000.json b/video/fixtures/profiles_tests/1080_1920_6100000.json index 6de0b73bb..8886ca808 100644 --- a/video/fixtures/profiles_tests/1080_1920_6100000.json +++ b/video/fixtures/profiles_tests/1080_1920_6100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":6100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":6100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":677777,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2711111,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":6100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":6100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":813333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3253333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":6100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_6500000.json b/video/fixtures/profiles_tests/1080_1920_6500000.json index 208f4c01a..ee151c943 100644 --- a/video/fixtures/profiles_tests/1080_1920_6500000.json +++ b/video/fixtures/profiles_tests/1080_1920_6500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":6500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":6500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":722222,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2888888,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":6500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":6500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":866666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3466666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":6500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_6800000.json b/video/fixtures/profiles_tests/1080_1920_6800000.json index ab2604e3e..6f2ac36c7 100644 --- a/video/fixtures/profiles_tests/1080_1920_6800000.json +++ b/video/fixtures/profiles_tests/1080_1920_6800000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":6800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":6800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":755555,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3022222,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":6800000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":6800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":906666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3626666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":6800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_700000.json b/video/fixtures/profiles_tests/1080_1920_700000.json index 0aff4db8a..855aa28a0 100644 --- a/video/fixtures/profiles_tests/1080_1920_700000.json +++ b/video/fixtures/profiles_tests/1080_1920_700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":350000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":350000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":350000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_7100000.json b/video/fixtures/profiles_tests/1080_1920_7100000.json index 09ee8a50e..ae9e2a8c6 100644 --- a/video/fixtures/profiles_tests/1080_1920_7100000.json +++ b/video/fixtures/profiles_tests/1080_1920_7100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":7100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":7100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":788888,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3155555,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":7100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":7100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":946666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3786666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":7100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_7700000.json b/video/fixtures/profiles_tests/1080_1920_7700000.json index ea2193b93..460c46eca 100644 --- a/video/fixtures/profiles_tests/1080_1920_7700000.json +++ b/video/fixtures/profiles_tests/1080_1920_7700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":7700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":7700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":855555,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3422222,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":7700000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":7700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_800000.json b/video/fixtures/profiles_tests/1080_1920_800000.json index dd9705ea7..3ad43c0b7 100644 --- a/video/fixtures/profiles_tests/1080_1920_800000.json +++ b/video/fixtures/profiles_tests/1080_1920_800000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":400000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":400000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":400000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_8000000.json b/video/fixtures/profiles_tests/1080_1920_8000000.json index bd35b2403..b36d5fa50 100644 --- a/video/fixtures/profiles_tests/1080_1920_8000000.json +++ b/video/fixtures/profiles_tests/1080_1920_8000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":8000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":8000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":888888,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3555555,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":8000000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":8000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_8400000.json b/video/fixtures/profiles_tests/1080_1920_8400000.json index 2b04ba3d1..36f959859 100644 --- a/video/fixtures/profiles_tests/1080_1920_8400000.json +++ b/video/fixtures/profiles_tests/1080_1920_8400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":8400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":8400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":933333,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3733333,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":8400000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":8400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_8500000.json b/video/fixtures/profiles_tests/1080_1920_8500000.json index cd637213d..4ee4cdbc3 100644 --- a/video/fixtures/profiles_tests/1080_1920_8500000.json +++ b/video/fixtures/profiles_tests/1080_1920_8500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":8500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":8500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":944444,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3777777,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":8500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":8500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":8500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_900000.json b/video/fixtures/profiles_tests/1080_1920_900000.json index 7fbe443c7..546429c3a 100644 --- a/video/fixtures/profiles_tests/1080_1920_900000.json +++ b/video/fixtures/profiles_tests/1080_1920_900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":900000,"ExpectedOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":450000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":900000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":450000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":450000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_9500000.json b/video/fixtures/profiles_tests/1080_1920_9500000.json index 0eeb31415..75cc776b1 100644 --- a/video/fixtures/profiles_tests/1080_1920_9500000.json +++ b/video/fixtures/profiles_tests/1080_1920_9500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":9500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":9500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1080,"height":1920,"bitrate":9500000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":9500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":9500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_2400_3800000.json b/video/fixtures/profiles_tests/1080_2400_3800000.json index ed1b2ebcd..f54cf7e14 100644 --- a/video/fixtures/profiles_tests/1080_2400_3800000.json +++ b/video/fixtures/profiles_tests/1080_2400_3800000.json @@ -1 +1 @@ -{"Width":1080,"Height":2400,"Bitrate":3800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"2400p0","width":1080,"height":2400,"bitrate":3800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":337777,"fps":0},{"name":"2400p0","width":1080,"height":2400,"bitrate":3800000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":2400,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":405333,"fps":0,"quality":27},{"name":"2400p0","width":1080,"height":2400,"bitrate":3800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_442_4900000.json b/video/fixtures/profiles_tests/1080_442_4900000.json index 51060558a..39facc01d 100644 --- a/video/fixtures/profiles_tests/1080_442_4900000.json +++ b/video/fixtures/profiles_tests/1080_442_4900000.json @@ -1 +1 @@ -{"Width":1080,"Height":442,"Bitrate":4900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"442p0","width":1080,"height":442,"bitrate":4900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"442p0","width":1080,"height":442,"bitrate":4900000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":442,"Bitrate":4900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"442p0","width":1080,"height":442,"bitrate":4900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_642_1200000.json b/video/fixtures/profiles_tests/1080_642_1200000.json index c37ecdbe6..a38099fb2 100644 --- a/video/fixtures/profiles_tests/1080_642_1200000.json +++ b/video/fixtures/profiles_tests/1080_642_1200000.json @@ -1 +1 @@ -{"Width":1080,"Height":642,"Bitrate":1200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"642p0","width":1080,"height":642,"bitrate":1200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":398753,"fps":0},{"name":"642p0","width":1080,"height":642,"bitrate":1200000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":642,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":478504,"fps":0,"quality":27},{"name":"642p0","width":1080,"height":642,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_720_1100000.json b/video/fixtures/profiles_tests/1080_720_1100000.json index 7e2ccfebf..6c63b4e42 100644 --- a/video/fixtures/profiles_tests/1080_720_1100000.json +++ b/video/fixtures/profiles_tests/1080_720_1100000.json @@ -1 +1 @@ -{"Width":1080,"Height":720,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1080,"height":720,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":325925,"fps":0},{"name":"720p0","width":1080,"height":720,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":1080,"Height":720,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":391111,"fps":0,"quality":27},{"name":"720p0","width":1080,"height":720,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1094_622_100000.json b/video/fixtures/profiles_tests/1094_622_100000.json index 2bf891636..ec30ec2b6 100644 --- a/video/fixtures/profiles_tests/1094_622_100000.json +++ b/video/fixtures/profiles_tests/1094_622_100000.json @@ -1 +1 @@ -{"Width":1094,"Height":622,"Bitrate":100000,"ExpectedOutput":[{"name":"low-bitrate","width":1094,"height":622,"bitrate":50000,"fps":0},{"name":"622p0","width":1094,"height":622,"bitrate":100000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1094,"height":622,"bitrate":50000,"fps":0},{"name":"622p0","width":1094,"height":622,"bitrate":100000,"fps":0}]} \ No newline at end of file +{"Width":1094,"Height":622,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":1094,"height":622,"bitrate":50000,"fps":0,"quality":27},{"name":"622p0","width":1094,"height":622,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1100_1100_18400000.json b/video/fixtures/profiles_tests/1100_1100_18400000.json index fe43d7ca2..fc266db08 100644 --- a/video/fixtures/profiles_tests/1100_1100_18400000.json +++ b/video/fixtures/profiles_tests/1100_1100_18400000.json @@ -1 +1 @@ -{"Width":1100,"Height":1100,"Bitrate":18400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1100p0","width":1100,"height":1100,"bitrate":18400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1100p0","width":1100,"height":1100,"bitrate":18400000,"fps":0}]} \ No newline at end of file +{"Width":1100,"Height":1100,"Bitrate":18400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1100p0","width":1100,"height":1100,"bitrate":18400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_13800000.json b/video/fixtures/profiles_tests/1200_1200_13800000.json index 9b1e57ca4..56a6a049a 100644 --- a/video/fixtures/profiles_tests/1200_1200_13800000.json +++ b/video/fixtures/profiles_tests/1200_1200_13800000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":13800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":13800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":13800000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":13800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":13800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_1600000.json b/video/fixtures/profiles_tests/1200_1200_1600000.json index 5ddaf1417..92a9558d1 100644 --- a/video/fixtures/profiles_tests/1200_1200_1600000.json +++ b/video/fixtures/profiles_tests/1200_1200_1600000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":1600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":1600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":256000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":1600000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":307200,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_2400000.json b/video/fixtures/profiles_tests/1200_1200_2400000.json index a01219079..e2cf050cf 100644 --- a/video/fixtures/profiles_tests/1200_1200_2400000.json +++ b/video/fixtures/profiles_tests/1200_1200_2400000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":2400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":2400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":384000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":2400000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":460800,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_2600000.json b/video/fixtures/profiles_tests/1200_1200_2600000.json index c7d26053c..661fd25e1 100644 --- a/video/fixtures/profiles_tests/1200_1200_2600000.json +++ b/video/fixtures/profiles_tests/1200_1200_2600000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":2600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":2600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":416000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":2600000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":499200,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_300000.json b/video/fixtures/profiles_tests/1200_1200_300000.json index cf6b265d5..1baf8ae1f 100644 --- a/video/fixtures/profiles_tests/1200_1200_300000.json +++ b/video/fixtures/profiles_tests/1200_1200_300000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":1200,"height":1200,"bitrate":150000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1200,"height":1200,"bitrate":150000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":1200,"height":1200,"bitrate":150000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_3000000.json b/video/fixtures/profiles_tests/1200_1200_3000000.json index 39c7104d1..d9f192ddc 100644 --- a/video/fixtures/profiles_tests/1200_1200_3000000.json +++ b/video/fixtures/profiles_tests/1200_1200_3000000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":3000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":3000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":3000000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":576000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_4100000.json b/video/fixtures/profiles_tests/1200_1200_4100000.json index 4940b77c3..fc60792e4 100644 --- a/video/fixtures/profiles_tests/1200_1200_4100000.json +++ b/video/fixtures/profiles_tests/1200_1200_4100000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":4100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":4100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":656000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2624000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":4100000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":4100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":787200,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3148800,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":4100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_4700000.json b/video/fixtures/profiles_tests/1200_1200_4700000.json index 7172283a3..f0a6642b4 100644 --- a/video/fixtures/profiles_tests/1200_1200_4700000.json +++ b/video/fixtures/profiles_tests/1200_1200_4700000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":4700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":4700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":752000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3008000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":4700000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":4700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":902400,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3609600,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":4700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_5000000.json b/video/fixtures/profiles_tests/1200_1200_5000000.json index 4d4db0f92..1c7ccd11c 100644 --- a/video/fixtures/profiles_tests/1200_1200_5000000.json +++ b/video/fixtures/profiles_tests/1200_1200_5000000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":5000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":5000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":800000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3200000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":5000000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":5000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":960000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3840000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":5000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_6200000.json b/video/fixtures/profiles_tests/1200_1200_6200000.json index 0ce3ad813..4a7f7b450 100644 --- a/video/fixtures/profiles_tests/1200_1200_6200000.json +++ b/video/fixtures/profiles_tests/1200_1200_6200000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":6200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":6200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":992000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3968000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":6200000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":6200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":6200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_6900000.json b/video/fixtures/profiles_tests/1200_1200_6900000.json index ff082354f..fd289d1e3 100644 --- a/video/fixtures/profiles_tests/1200_1200_6900000.json +++ b/video/fixtures/profiles_tests/1200_1200_6900000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":6900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":6900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":6900000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":6900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":6900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_8000000.json b/video/fixtures/profiles_tests/1200_1200_8000000.json index 1dc3f3cdc..90662c412 100644 --- a/video/fixtures/profiles_tests/1200_1200_8000000.json +++ b/video/fixtures/profiles_tests/1200_1200_8000000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":8000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":8000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":8000000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":8000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_9100000.json b/video/fixtures/profiles_tests/1200_1200_9100000.json index 30262da6d..1a83bdcb5 100644 --- a/video/fixtures/profiles_tests/1200_1200_9100000.json +++ b/video/fixtures/profiles_tests/1200_1200_9100000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":9100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":9100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":1200,"height":1200,"bitrate":9100000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":9100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":9100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1680_20800000.json b/video/fixtures/profiles_tests/1200_1680_20800000.json index e8ffea62c..c284d8c2e 100644 --- a/video/fixtures/profiles_tests/1200_1680_20800000.json +++ b/video/fixtures/profiles_tests/1200_1680_20800000.json @@ -1 +1 @@ -{"Width":1200,"Height":1680,"Bitrate":20800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1680p0","width":1200,"height":1680,"bitrate":20800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1680p0","width":1200,"height":1680,"bitrate":20800000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1680,"Bitrate":20800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1680p0","width":1200,"height":1680,"bitrate":20800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1680_21200000.json b/video/fixtures/profiles_tests/1200_1680_21200000.json index 58c7fc113..40b33008a 100644 --- a/video/fixtures/profiles_tests/1200_1680_21200000.json +++ b/video/fixtures/profiles_tests/1200_1680_21200000.json @@ -1 +1 @@ -{"Width":1200,"Height":1680,"Bitrate":21200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1680p0","width":1200,"height":1680,"bitrate":21200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1680p0","width":1200,"height":1680,"bitrate":21200000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":1680,"Bitrate":21200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1680p0","width":1200,"height":1680,"bitrate":21200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_674_1300000.json b/video/fixtures/profiles_tests/1200_674_1300000.json index 6dee37c44..322eb9c61 100644 --- a/video/fixtures/profiles_tests/1200_674_1300000.json +++ b/video/fixtures/profiles_tests/1200_674_1300000.json @@ -1 +1 @@ -{"Width":1200,"Height":674,"Bitrate":1300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"674p0","width":1200,"height":674,"bitrate":1300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":370326,"fps":0},{"name":"674p0","width":1200,"height":674,"bitrate":1300000,"fps":0}]} \ No newline at end of file +{"Width":1200,"Height":674,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":444391,"fps":0,"quality":27},{"name":"674p0","width":1200,"height":674,"bitrate":1300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1260_1280_4700000.json b/video/fixtures/profiles_tests/1260_1280_4700000.json index 65db01f5e..c44c429ea 100644 --- a/video/fixtures/profiles_tests/1260_1280_4700000.json +++ b/video/fixtures/profiles_tests/1260_1280_4700000.json @@ -1 +1 @@ -{"Width":1260,"Height":1280,"Bitrate":4700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":1260,"height":1280,"bitrate":4700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":671428,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2685714,"fps":0},{"name":"1280p0","width":1260,"height":1280,"bitrate":4700000,"fps":0}]} \ No newline at end of file +{"Width":1260,"Height":1280,"Bitrate":4700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":805714,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3222857,"fps":0,"quality":27},{"name":"1280p0","width":1260,"height":1280,"bitrate":4700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1278_660_8400000.json b/video/fixtures/profiles_tests/1278_660_8400000.json index ba9a7f46d..2ac655027 100644 --- a/video/fixtures/profiles_tests/1278_660_8400000.json +++ b/video/fixtures/profiles_tests/1278_660_8400000.json @@ -1 +1 @@ -{"Width":1278,"Height":660,"Bitrate":8400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"660p0","width":1278,"height":660,"bitrate":8400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"660p0","width":1278,"height":660,"bitrate":8400000,"fps":0}]} \ No newline at end of file +{"Width":1278,"Height":660,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"660p0","width":1278,"height":660,"bitrate":8400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_1000000.json b/video/fixtures/profiles_tests/1280_1280_1000000.json index a6e8f305d..27ae6c4fe 100644 --- a/video/fixtures/profiles_tests/1280_1280_1000000.json +++ b/video/fixtures/profiles_tests/1280_1280_1000000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":1000000,"ExpectedOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":500000,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":1000000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":500000,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":1000000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":500000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_1100000.json b/video/fixtures/profiles_tests/1280_1280_1100000.json index de92dc519..31220e03b 100644 --- a/video/fixtures/profiles_tests/1280_1280_1100000.json +++ b/video/fixtures/profiles_tests/1280_1280_1100000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":154687,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":185625,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_20500000.json b/video/fixtures/profiles_tests/1280_1280_20500000.json index 36ccb5f7b..4fd60723f 100644 --- a/video/fixtures/profiles_tests/1280_1280_20500000.json +++ b/video/fixtures/profiles_tests/1280_1280_20500000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":20500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":20500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":20500000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":20500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":20500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_3800000.json b/video/fixtures/profiles_tests/1280_1280_3800000.json index 47fdbeb6f..6ed8ee952 100644 --- a/video/fixtures/profiles_tests/1280_1280_3800000.json +++ b/video/fixtures/profiles_tests/1280_1280_3800000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":3800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":3800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":534375,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":3800000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":641250,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":3800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_5000000.json b/video/fixtures/profiles_tests/1280_1280_5000000.json index 21adf425e..f0652ce31 100644 --- a/video/fixtures/profiles_tests/1280_1280_5000000.json +++ b/video/fixtures/profiles_tests/1280_1280_5000000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":5000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":5000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":703125,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2812500,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":5000000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":5000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":843750,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3375000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":5000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_800000.json b/video/fixtures/profiles_tests/1280_1280_800000.json index 7f0e86930..4f09bbde7 100644 --- a/video/fixtures/profiles_tests/1280_1280_800000.json +++ b/video/fixtures/profiles_tests/1280_1280_800000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":400000,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":400000,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":400000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_900000.json b/video/fixtures/profiles_tests/1280_1280_900000.json index b3fe11712..431d6e721 100644 --- a/video/fixtures/profiles_tests/1280_1280_900000.json +++ b/video/fixtures/profiles_tests/1280_1280_900000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":900000,"ExpectedOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":450000,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":900000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":450000,"fps":0},{"name":"1280p0","width":1280,"height":1280,"bitrate":900000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":450000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_532_1900000.json b/video/fixtures/profiles_tests/1280_532_1900000.json index 5fff9efff..e8de974a2 100644 --- a/video/fixtures/profiles_tests/1280_532_1900000.json +++ b/video/fixtures/profiles_tests/1280_532_1900000.json @@ -1 +1 @@ -{"Width":1280,"Height":532,"Bitrate":1900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"532p0","width":1280,"height":532,"bitrate":1900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":642857,"fps":0},{"name":"532p0","width":1280,"height":532,"bitrate":1900000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":532,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":771428,"fps":0,"quality":27},{"name":"532p0","width":1280,"height":532,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_0.json b/video/fixtures/profiles_tests/1280_720_0.json index 19120cbcf..ad6f32201 100644 --- a/video/fixtures/profiles_tests/1280_720_0.json +++ b/video/fixtures/profiles_tests/1280_720_0.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":0,"ExpectedOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":5000,"fps":0},{"name":"720p0","width":1280,"height":720,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":5000,"fps":0},{"name":"720p0","width":1280,"height":720,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":0,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":5000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_1000000.json b/video/fixtures/profiles_tests/1280_720_1000000.json index 2707ed8b8..a665f8e3c 100644 --- a/video/fixtures/profiles_tests/1280_720_1000000.json +++ b/video/fixtures/profiles_tests/1280_720_1000000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":1000000,"ExpectedOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":500000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1000000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":500000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1000000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":500000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_10000000.json b/video/fixtures/profiles_tests/1280_720_10000000.json index 2d5922db8..d64b08d43 100644 --- a/video/fixtures/profiles_tests/1280_720_10000000.json +++ b/video/fixtures/profiles_tests/1280_720_10000000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":10000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":10000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":10000000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":10000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_1100000.json b/video/fixtures/profiles_tests/1280_720_1100000.json index f04c8a44d..7f243e200 100644 --- a/video/fixtures/profiles_tests/1280_720_1100000.json +++ b/video/fixtures/profiles_tests/1280_720_1100000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":275000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":330000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_11300000.json b/video/fixtures/profiles_tests/1280_720_11300000.json index 8113e184c..b666eced6 100644 --- a/video/fixtures/profiles_tests/1280_720_11300000.json +++ b/video/fixtures/profiles_tests/1280_720_11300000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":11300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":11300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":11300000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":11300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":11300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_11900000.json b/video/fixtures/profiles_tests/1280_720_11900000.json index ed049aabf..1f454315b 100644 --- a/video/fixtures/profiles_tests/1280_720_11900000.json +++ b/video/fixtures/profiles_tests/1280_720_11900000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":11900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":11900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":11900000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":11900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":11900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_1200000.json b/video/fixtures/profiles_tests/1280_720_1200000.json index 399033659..2ba507b01 100644 --- a/video/fixtures/profiles_tests/1280_720_1200000.json +++ b/video/fixtures/profiles_tests/1280_720_1200000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":1200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":300000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1200000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_12000000.json b/video/fixtures/profiles_tests/1280_720_12000000.json index 22c03adbc..226db1f64 100644 --- a/video/fixtures/profiles_tests/1280_720_12000000.json +++ b/video/fixtures/profiles_tests/1280_720_12000000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":12000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":12000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":12000000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":12000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":12000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_1400000.json b/video/fixtures/profiles_tests/1280_720_1400000.json index 27bee0142..d62c4dc76 100644 --- a/video/fixtures/profiles_tests/1280_720_1400000.json +++ b/video/fixtures/profiles_tests/1280_720_1400000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":1400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":350000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1400000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":420000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_1500000.json b/video/fixtures/profiles_tests/1280_720_1500000.json index deb12405e..156721597 100644 --- a/video/fixtures/profiles_tests/1280_720_1500000.json +++ b/video/fixtures/profiles_tests/1280_720_1500000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":1500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":375000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1500000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":450000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_1600000.json b/video/fixtures/profiles_tests/1280_720_1600000.json index c67feeba1..60537f390 100644 --- a/video/fixtures/profiles_tests/1280_720_1600000.json +++ b/video/fixtures/profiles_tests/1280_720_1600000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":1600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":400000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1600000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_16400000.json b/video/fixtures/profiles_tests/1280_720_16400000.json index ed776d0a3..445bbed24 100644 --- a/video/fixtures/profiles_tests/1280_720_16400000.json +++ b/video/fixtures/profiles_tests/1280_720_16400000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":16400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":16400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":16400000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":16400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":16400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2000000.json b/video/fixtures/profiles_tests/1280_720_2000000.json index 49498ee7c..551e09d98 100644 --- a/video/fixtures/profiles_tests/1280_720_2000000.json +++ b/video/fixtures/profiles_tests/1280_720_2000000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":500000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2000000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2100000.json b/video/fixtures/profiles_tests/1280_720_2100000.json index 4aa38f807..ed175a7a1 100644 --- a/video/fixtures/profiles_tests/1280_720_2100000.json +++ b/video/fixtures/profiles_tests/1280_720_2100000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":525000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2100000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":630000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2200000.json b/video/fixtures/profiles_tests/1280_720_2200000.json index de9c1cf4f..2cc991133 100644 --- a/video/fixtures/profiles_tests/1280_720_2200000.json +++ b/video/fixtures/profiles_tests/1280_720_2200000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":550000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2200000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":660000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2300000.json b/video/fixtures/profiles_tests/1280_720_2300000.json index 9051ad156..1d48eece9 100644 --- a/video/fixtures/profiles_tests/1280_720_2300000.json +++ b/video/fixtures/profiles_tests/1280_720_2300000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":575000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2300000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":690000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2400000.json b/video/fixtures/profiles_tests/1280_720_2400000.json index d598f9a6c..2f2a415eb 100644 --- a/video/fixtures/profiles_tests/1280_720_2400000.json +++ b/video/fixtures/profiles_tests/1280_720_2400000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2400000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":720000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2500000.json b/video/fixtures/profiles_tests/1280_720_2500000.json index 4cb179e0b..2aa4a0837 100644 --- a/video/fixtures/profiles_tests/1280_720_2500000.json +++ b/video/fixtures/profiles_tests/1280_720_2500000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":625000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2500000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":750000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2600000.json b/video/fixtures/profiles_tests/1280_720_2600000.json index 3308a2350..2c84ecc6d 100644 --- a/video/fixtures/profiles_tests/1280_720_2600000.json +++ b/video/fixtures/profiles_tests/1280_720_2600000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":650000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2600000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":780000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2700000.json b/video/fixtures/profiles_tests/1280_720_2700000.json index 302a1f37b..57aee0e16 100644 --- a/video/fixtures/profiles_tests/1280_720_2700000.json +++ b/video/fixtures/profiles_tests/1280_720_2700000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":675000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2700000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":810000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_300000.json b/video/fixtures/profiles_tests/1280_720_300000.json index ef9acd315..ef8b464ac 100644 --- a/video/fixtures/profiles_tests/1280_720_300000.json +++ b/video/fixtures/profiles_tests/1280_720_300000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":150000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":150000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":150000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_3000000.json b/video/fixtures/profiles_tests/1280_720_3000000.json index eda644a0b..184a862c6 100644 --- a/video/fixtures/profiles_tests/1280_720_3000000.json +++ b/video/fixtures/profiles_tests/1280_720_3000000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":3000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":750000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3000000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":900000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_400000.json b/video/fixtures/profiles_tests/1280_720_400000.json index 8ccc48a0f..177b8f57e 100644 --- a/video/fixtures/profiles_tests/1280_720_400000.json +++ b/video/fixtures/profiles_tests/1280_720_400000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":200000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":200000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":200000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_500000.json b/video/fixtures/profiles_tests/1280_720_500000.json index c9d8d43f8..dfbb2dc78 100644 --- a/video/fixtures/profiles_tests/1280_720_500000.json +++ b/video/fixtures/profiles_tests/1280_720_500000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":250000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":250000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":250000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_5100000.json b/video/fixtures/profiles_tests/1280_720_5100000.json index bafc6e99b..377a5f17c 100644 --- a/video/fixtures/profiles_tests/1280_720_5100000.json +++ b/video/fixtures/profiles_tests/1280_720_5100000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":5100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":5100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":5100000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":5100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":5100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_5300000.json b/video/fixtures/profiles_tests/1280_720_5300000.json index ace3c6e7b..40ec7ef1e 100644 --- a/video/fixtures/profiles_tests/1280_720_5300000.json +++ b/video/fixtures/profiles_tests/1280_720_5300000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":5300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":5300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":5300000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":5300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_600000.json b/video/fixtures/profiles_tests/1280_720_600000.json index aecf555bc..bb7871acd 100644 --- a/video/fixtures/profiles_tests/1280_720_600000.json +++ b/video/fixtures/profiles_tests/1280_720_600000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":300000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":300000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":300000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_6800000.json b/video/fixtures/profiles_tests/1280_720_6800000.json index 1f90c0fcd..d4adce4b0 100644 --- a/video/fixtures/profiles_tests/1280_720_6800000.json +++ b/video/fixtures/profiles_tests/1280_720_6800000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":6800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":6800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":6800000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":6800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":6800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_700000.json b/video/fixtures/profiles_tests/1280_720_700000.json index 6891376a8..5b3c349ef 100644 --- a/video/fixtures/profiles_tests/1280_720_700000.json +++ b/video/fixtures/profiles_tests/1280_720_700000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":350000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":350000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":350000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_800000.json b/video/fixtures/profiles_tests/1280_720_800000.json index 4a7c9bb2a..816feda16 100644 --- a/video/fixtures/profiles_tests/1280_720_800000.json +++ b/video/fixtures/profiles_tests/1280_720_800000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":400000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":400000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":400000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_8600000.json b/video/fixtures/profiles_tests/1280_720_8600000.json index 39c531682..aae8f5354 100644 --- a/video/fixtures/profiles_tests/1280_720_8600000.json +++ b/video/fixtures/profiles_tests/1280_720_8600000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":8600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":8600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":8600000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":8600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":8600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_900000.json b/video/fixtures/profiles_tests/1280_720_900000.json index ba06cea96..aafa1b288 100644 --- a/video/fixtures/profiles_tests/1280_720_900000.json +++ b/video/fixtures/profiles_tests/1280_720_900000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":900000,"ExpectedOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":450000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":900000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":450000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":900000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":450000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_852_3000000.json b/video/fixtures/profiles_tests/1280_852_3000000.json index 3086ebed8..7506bcb95 100644 --- a/video/fixtures/profiles_tests/1280_852_3000000.json +++ b/video/fixtures/profiles_tests/1280_852_3000000.json @@ -1 +1 @@ -{"Width":1280,"Height":852,"Bitrate":3000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"852p0","width":1280,"height":852,"bitrate":3000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":633802,"fps":0},{"name":"852p0","width":1280,"height":852,"bitrate":3000000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":852,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":760563,"fps":0,"quality":27},{"name":"852p0","width":1280,"height":852,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_960_5100000.json b/video/fixtures/profiles_tests/1280_960_5100000.json index 61a67459c..c5347993a 100644 --- a/video/fixtures/profiles_tests/1280_960_5100000.json +++ b/video/fixtures/profiles_tests/1280_960_5100000.json @@ -1 +1 @@ -{"Width":1280,"Height":960,"Bitrate":5100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"960p0","width":1280,"height":960,"bitrate":5100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":956250,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3825000,"fps":0},{"name":"960p0","width":1280,"height":960,"bitrate":5100000,"fps":0}]} \ No newline at end of file +{"Width":1280,"Height":960,"Bitrate":5100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"960p0","width":1280,"height":960,"bitrate":5100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1400_1400_100000.json b/video/fixtures/profiles_tests/1400_1400_100000.json index 31b8eab3f..370c6b810 100644 --- a/video/fixtures/profiles_tests/1400_1400_100000.json +++ b/video/fixtures/profiles_tests/1400_1400_100000.json @@ -1 +1 @@ -{"Width":1400,"Height":1400,"Bitrate":100000,"ExpectedOutput":[{"name":"low-bitrate","width":1400,"height":1400,"bitrate":50000,"fps":0},{"name":"1400p0","width":1400,"height":1400,"bitrate":100000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1400,"height":1400,"bitrate":50000,"fps":0},{"name":"1400p0","width":1400,"height":1400,"bitrate":100000,"fps":0}]} \ No newline at end of file +{"Width":1400,"Height":1400,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":1400,"height":1400,"bitrate":50000,"fps":0,"quality":27},{"name":"1400p0","width":1400,"height":1400,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1400_400_1000000.json b/video/fixtures/profiles_tests/1400_400_1000000.json index aec1fd058..f2d27f142 100644 --- a/video/fixtures/profiles_tests/1400_400_1000000.json +++ b/video/fixtures/profiles_tests/1400_400_1000000.json @@ -1 +1 @@ -{"Width":1400,"Height":400,"Bitrate":1000000,"ExpectedOutput":[{"name":"low-bitrate","width":1400,"height":400,"bitrate":500000,"fps":0},{"name":"400p0","width":1400,"height":400,"bitrate":1000000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1400,"height":400,"bitrate":500000,"fps":0},{"name":"400p0","width":1400,"height":400,"bitrate":1000000,"fps":0}]} \ No newline at end of file +{"Width":1400,"Height":400,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":1400,"height":400,"bitrate":500000,"fps":0,"quality":27},{"name":"400p0","width":1400,"height":400,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1400_400_2100000.json b/video/fixtures/profiles_tests/1400_400_2100000.json index f59a785eb..6e790c63b 100644 --- a/video/fixtures/profiles_tests/1400_400_2100000.json +++ b/video/fixtures/profiles_tests/1400_400_2100000.json @@ -1 +1 @@ -{"Width":1400,"Height":400,"Bitrate":2100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"400p0","width":1400,"height":400,"bitrate":2100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":864000,"fps":0},{"name":"400p0","width":1400,"height":400,"bitrate":2100000,"fps":0}]} \ No newline at end of file +{"Width":1400,"Height":400,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"400p0","width":1400,"height":400,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1402_1920_15800000.json b/video/fixtures/profiles_tests/1402_1920_15800000.json index e74dc3477..90c601552 100644 --- a/video/fixtures/profiles_tests/1402_1920_15800000.json +++ b/video/fixtures/profiles_tests/1402_1920_15800000.json @@ -1 +1 @@ -{"Width":1402,"Height":1920,"Bitrate":15800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1402,"height":1920,"bitrate":15800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1402,"height":1920,"bitrate":15800000,"fps":0}]} \ No newline at end of file +{"Width":1402,"Height":1920,"Bitrate":15800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1402,"height":1920,"bitrate":15800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1440_1440_17000000.json b/video/fixtures/profiles_tests/1440_1440_17000000.json index 0fc1e41cc..4ec5dc89b 100644 --- a/video/fixtures/profiles_tests/1440_1440_17000000.json +++ b/video/fixtures/profiles_tests/1440_1440_17000000.json @@ -1 +1 @@ -{"Width":1440,"Height":1440,"Bitrate":17000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1440p0","width":1440,"height":1440,"bitrate":17000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1440p0","width":1440,"height":1440,"bitrate":17000000,"fps":0}]} \ No newline at end of file +{"Width":1440,"Height":1440,"Bitrate":17000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1440,"height":1440,"bitrate":17000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1440_1440_3600000.json b/video/fixtures/profiles_tests/1440_1440_3600000.json index 5acfdd28c..0fc914f90 100644 --- a/video/fixtures/profiles_tests/1440_1440_3600000.json +++ b/video/fixtures/profiles_tests/1440_1440_3600000.json @@ -1 +1 @@ -{"Width":1440,"Height":1440,"Bitrate":3600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1440p0","width":1440,"height":1440,"bitrate":3600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":400000,"fps":0},{"name":"1440p0","width":1440,"height":1440,"bitrate":3600000,"fps":0}]} \ No newline at end of file +{"Width":1440,"Height":1440,"Bitrate":3600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27},{"name":"1440p0","width":1440,"height":1440,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1440_2174_12000000.json b/video/fixtures/profiles_tests/1440_2174_12000000.json index aeed16840..e17a6238b 100644 --- a/video/fixtures/profiles_tests/1440_2174_12000000.json +++ b/video/fixtures/profiles_tests/1440_2174_12000000.json @@ -1 +1 @@ -{"Width":1440,"Height":2174,"Bitrate":12000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2174p0","width":1440,"height":2174,"bitrate":12000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":883164,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3532658,"fps":0},{"name":"2174p0","width":1440,"height":2174,"bitrate":12000000,"fps":0}]} \ No newline at end of file +{"Width":1440,"Height":2174,"Bitrate":12000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2174p0","width":1440,"height":2174,"bitrate":12000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1490_1990_19400000.json b/video/fixtures/profiles_tests/1490_1990_19400000.json index fe4d73eec..ec194b2f9 100644 --- a/video/fixtures/profiles_tests/1490_1990_19400000.json +++ b/video/fixtures/profiles_tests/1490_1990_19400000.json @@ -1 +1 @@ -{"Width":1490,"Height":1990,"Bitrate":19400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1990p0","width":1490,"height":1990,"bitrate":19400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1990p0","width":1490,"height":1990,"bitrate":19400000,"fps":0}]} \ No newline at end of file +{"Width":1490,"Height":1990,"Bitrate":19400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1990p0","width":1490,"height":1990,"bitrate":19400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1498_2100_45400000.json b/video/fixtures/profiles_tests/1498_2100_45400000.json index 3f598f27c..3197ba7a6 100644 --- a/video/fixtures/profiles_tests/1498_2100_45400000.json +++ b/video/fixtures/profiles_tests/1498_2100_45400000.json @@ -1 +1 @@ -{"Width":1498,"Height":2100,"Bitrate":45400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2100p0","width":1498,"height":2100,"bitrate":45400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2100p0","width":1498,"height":2100,"bitrate":45400000,"fps":0}]} \ No newline at end of file +{"Width":1498,"Height":2100,"Bitrate":45400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2100p0","width":1498,"height":2100,"bitrate":45400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1498_2100_46800000.json b/video/fixtures/profiles_tests/1498_2100_46800000.json index 7e03b8edb..dffe321c2 100644 --- a/video/fixtures/profiles_tests/1498_2100_46800000.json +++ b/video/fixtures/profiles_tests/1498_2100_46800000.json @@ -1 +1 @@ -{"Width":1498,"Height":2100,"Bitrate":46800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2100p0","width":1498,"height":2100,"bitrate":46800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2100p0","width":1498,"height":2100,"bitrate":46800000,"fps":0}]} \ No newline at end of file +{"Width":1498,"Height":2100,"Bitrate":46800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2100p0","width":1498,"height":2100,"bitrate":46800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1000_13800000.json b/video/fixtures/profiles_tests/1500_1000_13800000.json index f3e153b5a..2028a1407 100644 --- a/video/fixtures/profiles_tests/1500_1000_13800000.json +++ b/video/fixtures/profiles_tests/1500_1000_13800000.json @@ -1 +1 @@ -{"Width":1500,"Height":1000,"Bitrate":13800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1500,"height":1000,"bitrate":13800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":1500,"height":1000,"bitrate":13800000,"fps":0}]} \ No newline at end of file +{"Width":1500,"Height":1000,"Bitrate":13800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1500,"height":1000,"bitrate":13800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_10400000.json b/video/fixtures/profiles_tests/1500_1500_10400000.json index 007261755..c037530f1 100644 --- a/video/fixtures/profiles_tests/1500_1500_10400000.json +++ b/video/fixtures/profiles_tests/1500_1500_10400000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":10400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":10400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":10400000,"fps":0}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":10400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_1600000.json b/video/fixtures/profiles_tests/1500_1500_1600000.json index 3d42df86a..d90ad24a7 100644 --- a/video/fixtures/profiles_tests/1500_1500_1600000.json +++ b/video/fixtures/profiles_tests/1500_1500_1600000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":1600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":1600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":163840,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":1600000,"fps":0}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":196608,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_2100000.json b/video/fixtures/profiles_tests/1500_1500_2100000.json index 6cae8b4a9..b645691d1 100644 --- a/video/fixtures/profiles_tests/1500_1500_2100000.json +++ b/video/fixtures/profiles_tests/1500_1500_2100000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":2100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":2100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":215040,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":2100000,"fps":0}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":258048,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_2300000.json b/video/fixtures/profiles_tests/1500_1500_2300000.json index 043369170..429d1a86d 100644 --- a/video/fixtures/profiles_tests/1500_1500_2300000.json +++ b/video/fixtures/profiles_tests/1500_1500_2300000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":2300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":2300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":235519,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":2300000,"fps":0}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":282624,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_2400000.json b/video/fixtures/profiles_tests/1500_1500_2400000.json index c66c80e52..12f573c3e 100644 --- a/video/fixtures/profiles_tests/1500_1500_2400000.json +++ b/video/fixtures/profiles_tests/1500_1500_2400000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":2400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":2400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":245760,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":2400000,"fps":0}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":294912,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_2500000.json b/video/fixtures/profiles_tests/1500_1500_2500000.json index d5e6203b0..29590f574 100644 --- a/video/fixtures/profiles_tests/1500_1500_2500000.json +++ b/video/fixtures/profiles_tests/1500_1500_2500000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":2500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":2500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":256000,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":2500000,"fps":0}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":307200,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_3600000.json b/video/fixtures/profiles_tests/1500_1500_3600000.json index a40fa49da..2fe4fb225 100644 --- a/video/fixtures/profiles_tests/1500_1500_3600000.json +++ b/video/fixtures/profiles_tests/1500_1500_3600000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":3600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":3600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":368640,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":3600000,"fps":0}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":3600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":442368,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_8600000.json b/video/fixtures/profiles_tests/1500_1500_8600000.json index adb996324..edbe29689 100644 --- a/video/fixtures/profiles_tests/1500_1500_8600000.json +++ b/video/fixtures/profiles_tests/1500_1500_8600000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":8600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":8600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":880640,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3522560,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":8600000,"fps":0}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":8600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":8600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_8900000.json b/video/fixtures/profiles_tests/1500_1500_8900000.json index 6624abdf0..eddce9263 100644 --- a/video/fixtures/profiles_tests/1500_1500_8900000.json +++ b/video/fixtures/profiles_tests/1500_1500_8900000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":8900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":8900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":911360,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3645440,"fps":0},{"name":"1500p0","width":1500,"height":1500,"bitrate":8900000,"fps":0}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":8900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":8900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1600_1600_18500000.json b/video/fixtures/profiles_tests/1600_1600_18500000.json index 955f6349f..c19e7bf6c 100644 --- a/video/fixtures/profiles_tests/1600_1600_18500000.json +++ b/video/fixtures/profiles_tests/1600_1600_18500000.json @@ -1 +1 @@ -{"Width":1600,"Height":1600,"Bitrate":18500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1600p0","width":1600,"height":1600,"bitrate":18500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1600p0","width":1600,"height":1600,"bitrate":18500000,"fps":0}]} \ No newline at end of file +{"Width":1600,"Height":1600,"Bitrate":18500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1600p0","width":1600,"height":1600,"bitrate":18500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1600_1600_26700000.json b/video/fixtures/profiles_tests/1600_1600_26700000.json index 42018373e..c691d5911 100644 --- a/video/fixtures/profiles_tests/1600_1600_26700000.json +++ b/video/fixtures/profiles_tests/1600_1600_26700000.json @@ -1 +1 @@ -{"Width":1600,"Height":1600,"Bitrate":26700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1600p0","width":1600,"height":1600,"bitrate":26700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1600p0","width":1600,"height":1600,"bitrate":26700000,"fps":0}]} \ No newline at end of file +{"Width":1600,"Height":1600,"Bitrate":26700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1600p0","width":1600,"height":1600,"bitrate":26700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1686_546_300000.json b/video/fixtures/profiles_tests/1686_546_300000.json index ac1edb9a7..3f994dc50 100644 --- a/video/fixtures/profiles_tests/1686_546_300000.json +++ b/video/fixtures/profiles_tests/1686_546_300000.json @@ -1 +1 @@ -{"Width":1686,"Height":546,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":1686,"height":546,"bitrate":150000,"fps":0},{"name":"546p0","width":1686,"height":546,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1686,"height":546,"bitrate":150000,"fps":0},{"name":"546p0","width":1686,"height":546,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":1686,"Height":546,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":1686,"height":546,"bitrate":150000,"fps":0,"quality":27},{"name":"546p0","width":1686,"height":546,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1722_1350_25700000.json b/video/fixtures/profiles_tests/1722_1350_25700000.json index 7136b5292..50799986a 100644 --- a/video/fixtures/profiles_tests/1722_1350_25700000.json +++ b/video/fixtures/profiles_tests/1722_1350_25700000.json @@ -1 +1 @@ -{"Width":1722,"Height":1350,"Bitrate":25700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1350p0","width":1722,"height":1350,"bitrate":25700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1350p0","width":1722,"height":1350,"bitrate":25700000,"fps":0}]} \ No newline at end of file +{"Width":1722,"Height":1350,"Bitrate":25700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1350p0","width":1722,"height":1350,"bitrate":25700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1780_1742_7600000.json b/video/fixtures/profiles_tests/1780_1742_7600000.json index ec09acf89..0d8cdff63 100644 --- a/video/fixtures/profiles_tests/1780_1742_7600000.json +++ b/video/fixtures/profiles_tests/1780_1742_7600000.json @@ -1 +1 @@ -{"Width":1780,"Height":1742,"Bitrate":7600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1742p0","width":1780,"height":1742,"bitrate":7600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":564713,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2258852,"fps":0},{"name":"1742p0","width":1780,"height":1742,"bitrate":7600000,"fps":0}]} \ No newline at end of file +{"Width":1780,"Height":1742,"Bitrate":7600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":677655,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2710623,"fps":0,"quality":27},{"name":"1742p0","width":1780,"height":1742,"bitrate":7600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1800_1800_10400000.json b/video/fixtures/profiles_tests/1800_1800_10400000.json index 6f02ef8ef..2894c6727 100644 --- a/video/fixtures/profiles_tests/1800_1800_10400000.json +++ b/video/fixtures/profiles_tests/1800_1800_10400000.json @@ -1 +1 @@ -{"Width":1800,"Height":1800,"Bitrate":10400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1800p0","width":1800,"height":1800,"bitrate":10400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":739555,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2958222,"fps":0},{"name":"1800p0","width":1800,"height":1800,"bitrate":10400000,"fps":0}]} \ No newline at end of file +{"Width":1800,"Height":1800,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":887466,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3549866,"fps":0,"quality":27},{"name":"1800p0","width":1800,"height":1800,"bitrate":10400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1800_1800_15300000.json b/video/fixtures/profiles_tests/1800_1800_15300000.json index d6ac7f818..88367d844 100644 --- a/video/fixtures/profiles_tests/1800_1800_15300000.json +++ b/video/fixtures/profiles_tests/1800_1800_15300000.json @@ -1 +1 @@ -{"Width":1800,"Height":1800,"Bitrate":15300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1800p0","width":1800,"height":1800,"bitrate":15300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1800p0","width":1800,"height":1800,"bitrate":15300000,"fps":0}]} \ No newline at end of file +{"Width":1800,"Height":1800,"Bitrate":15300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1800p0","width":1800,"height":1800,"bitrate":15300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1862_1396_17900000.json b/video/fixtures/profiles_tests/1862_1396_17900000.json index d0863955a..00a4c9f2d 100644 --- a/video/fixtures/profiles_tests/1862_1396_17900000.json +++ b/video/fixtures/profiles_tests/1862_1396_17900000.json @@ -1 +1 @@ -{"Width":1862,"Height":1396,"Bitrate":17900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1396p0","width":1862,"height":1396,"bitrate":17900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1396p0","width":1862,"height":1396,"bitrate":17900000,"fps":0}]} \ No newline at end of file +{"Width":1862,"Height":1396,"Bitrate":17900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1396p0","width":1862,"height":1396,"bitrate":17900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1076_10300000.json b/video/fixtures/profiles_tests/1920_1076_10300000.json index 322c9cc61..f3e28b0d7 100644 --- a/video/fixtures/profiles_tests/1920_1076_10300000.json +++ b/video/fixtures/profiles_tests/1920_1076_10300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1076,"Bitrate":10300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1076p0","width":1920,"height":1076,"bitrate":10300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1076p0","width":1920,"height":1076,"bitrate":10300000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1076,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1076p0","width":1920,"height":1076,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1076_1100000.json b/video/fixtures/profiles_tests/1920_1076_1100000.json index 0cdc9934f..e59e70e9a 100644 --- a/video/fixtures/profiles_tests/1920_1076_1100000.json +++ b/video/fixtures/profiles_tests/1920_1076_1100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1076,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1076p0","width":1920,"height":1076,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":122676,"fps":0},{"name":"1076p0","width":1920,"height":1076,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1076,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":147211,"fps":0,"quality":27},{"name":"1076p0","width":1920,"height":1076,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1076_2600000.json b/video/fixtures/profiles_tests/1920_1076_2600000.json index 300d85992..a19b78a72 100644 --- a/video/fixtures/profiles_tests/1920_1076_2600000.json +++ b/video/fixtures/profiles_tests/1920_1076_2600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1076,"Bitrate":2600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1076p0","width":1920,"height":1076,"bitrate":2600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":289962,"fps":0},{"name":"1076p0","width":1920,"height":1076,"bitrate":2600000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1076,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":347955,"fps":0,"quality":27},{"name":"1076p0","width":1920,"height":1076,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1076_3100000.json b/video/fixtures/profiles_tests/1920_1076_3100000.json index 11ee034b0..01643a0ab 100644 --- a/video/fixtures/profiles_tests/1920_1076_3100000.json +++ b/video/fixtures/profiles_tests/1920_1076_3100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1076,"Bitrate":3100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1076p0","width":1920,"height":1076,"bitrate":3100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":345724,"fps":0},{"name":"1076p0","width":1920,"height":1076,"bitrate":3100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1076,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":414869,"fps":0,"quality":27},{"name":"1076p0","width":1920,"height":1076,"bitrate":3100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_0.json b/video/fixtures/profiles_tests/1920_1080_0.json index 0cc5e6443..5d44ba326 100644 --- a/video/fixtures/profiles_tests/1920_1080_0.json +++ b/video/fixtures/profiles_tests/1920_1080_0.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":0,"ExpectedOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":5000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":5000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":0,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":5000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_100000.json b/video/fixtures/profiles_tests/1920_1080_100000.json index fff645bf4..343ea8007 100644 --- a/video/fixtures/profiles_tests/1920_1080_100000.json +++ b/video/fixtures/profiles_tests/1920_1080_100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":100000,"ExpectedOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":50000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":100000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":50000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":50000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1000000.json b/video/fixtures/profiles_tests/1920_1080_1000000.json index da6ea6930..fe7c79f54 100644 --- a/video/fixtures/profiles_tests/1920_1080_1000000.json +++ b/video/fixtures/profiles_tests/1920_1080_1000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1000000,"ExpectedOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":500000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1000000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":500000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":500000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10000000.json b/video/fixtures/profiles_tests/1920_1080_10000000.json index 63c2948d3..78d1d35e5 100644 --- a/video/fixtures/profiles_tests/1920_1080_10000000.json +++ b/video/fixtures/profiles_tests/1920_1080_10000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10100000.json b/video/fixtures/profiles_tests/1920_1080_10100000.json index c38f55ac0..94bd43d27 100644 --- a/video/fixtures/profiles_tests/1920_1080_10100000.json +++ b/video/fixtures/profiles_tests/1920_1080_10100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10300000.json b/video/fixtures/profiles_tests/1920_1080_10300000.json index 1ddaaf1c8..9ef1f3891 100644 --- a/video/fixtures/profiles_tests/1920_1080_10300000.json +++ b/video/fixtures/profiles_tests/1920_1080_10300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10300000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10400000.json b/video/fixtures/profiles_tests/1920_1080_10400000.json index 5cd69137a..6c8485426 100644 --- a/video/fixtures/profiles_tests/1920_1080_10400000.json +++ b/video/fixtures/profiles_tests/1920_1080_10400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10400000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10500000.json b/video/fixtures/profiles_tests/1920_1080_10500000.json index ff5d6939d..164162fa5 100644 --- a/video/fixtures/profiles_tests/1920_1080_10500000.json +++ b/video/fixtures/profiles_tests/1920_1080_10500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10500000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10600000.json b/video/fixtures/profiles_tests/1920_1080_10600000.json index 53f6260e2..98d8f5011 100644 --- a/video/fixtures/profiles_tests/1920_1080_10600000.json +++ b/video/fixtures/profiles_tests/1920_1080_10600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10600000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10700000.json b/video/fixtures/profiles_tests/1920_1080_10700000.json index 20ad2dc09..f8fc6a683 100644 --- a/video/fixtures/profiles_tests/1920_1080_10700000.json +++ b/video/fixtures/profiles_tests/1920_1080_10700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":10700000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1100000.json b/video/fixtures/profiles_tests/1920_1080_1100000.json index e20421b11..f49cecac0 100644 --- a/video/fixtures/profiles_tests/1920_1080_1100000.json +++ b/video/fixtures/profiles_tests/1920_1080_1100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":122222,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":146666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_11200000.json b/video/fixtures/profiles_tests/1920_1080_11200000.json index 68347666f..deae6eda1 100644 --- a/video/fixtures/profiles_tests/1920_1080_11200000.json +++ b/video/fixtures/profiles_tests/1920_1080_11200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":11200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":11200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":11200000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":11200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":11200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_11300000.json b/video/fixtures/profiles_tests/1920_1080_11300000.json index f956ef86d..c59590e27 100644 --- a/video/fixtures/profiles_tests/1920_1080_11300000.json +++ b/video/fixtures/profiles_tests/1920_1080_11300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":11300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":11300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":11300000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":11300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":11300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_11400000.json b/video/fixtures/profiles_tests/1920_1080_11400000.json index 5ec6e8f7b..2cbbde6ca 100644 --- a/video/fixtures/profiles_tests/1920_1080_11400000.json +++ b/video/fixtures/profiles_tests/1920_1080_11400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":11400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":11400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":11400000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":11400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":11400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_11900000.json b/video/fixtures/profiles_tests/1920_1080_11900000.json index 327f444ba..6cdab89d7 100644 --- a/video/fixtures/profiles_tests/1920_1080_11900000.json +++ b/video/fixtures/profiles_tests/1920_1080_11900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":11900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":11900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":11900000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":11900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":11900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1200000.json b/video/fixtures/profiles_tests/1920_1080_1200000.json index 462e9c555..2d5a6d750 100644 --- a/video/fixtures/profiles_tests/1920_1080_1200000.json +++ b/video/fixtures/profiles_tests/1920_1080_1200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":133333,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1200000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":160000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_12000000.json b/video/fixtures/profiles_tests/1920_1080_12000000.json index 8a8e99a22..65668f4f7 100644 --- a/video/fixtures/profiles_tests/1920_1080_12000000.json +++ b/video/fixtures/profiles_tests/1920_1080_12000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":12000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":12000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":12000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":12000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_12100000.json b/video/fixtures/profiles_tests/1920_1080_12100000.json index 23d5bda64..42d5d659f 100644 --- a/video/fixtures/profiles_tests/1920_1080_12100000.json +++ b/video/fixtures/profiles_tests/1920_1080_12100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":12100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":12100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":12100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":12100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_12300000.json b/video/fixtures/profiles_tests/1920_1080_12300000.json index f457b797c..d93d9a289 100644 --- a/video/fixtures/profiles_tests/1920_1080_12300000.json +++ b/video/fixtures/profiles_tests/1920_1080_12300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":12300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":12300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":12300000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":12300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_12400000.json b/video/fixtures/profiles_tests/1920_1080_12400000.json index 22504fe0c..abb3dacbd 100644 --- a/video/fixtures/profiles_tests/1920_1080_12400000.json +++ b/video/fixtures/profiles_tests/1920_1080_12400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":12400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":12400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":12400000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":12400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_12500000.json b/video/fixtures/profiles_tests/1920_1080_12500000.json index fd15cc40a..fcb6ce041 100644 --- a/video/fixtures/profiles_tests/1920_1080_12500000.json +++ b/video/fixtures/profiles_tests/1920_1080_12500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":12500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":12500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":12500000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":12500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1300000.json b/video/fixtures/profiles_tests/1920_1080_1300000.json index d106a7731..1d95de0e2 100644 --- a/video/fixtures/profiles_tests/1920_1080_1300000.json +++ b/video/fixtures/profiles_tests/1920_1080_1300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":144444,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1300000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":173333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_13500000.json b/video/fixtures/profiles_tests/1920_1080_13500000.json index 07b6b9659..9bf4eb8ab 100644 --- a/video/fixtures/profiles_tests/1920_1080_13500000.json +++ b/video/fixtures/profiles_tests/1920_1080_13500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":13500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":13500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":13500000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":13500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":13500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_13900000.json b/video/fixtures/profiles_tests/1920_1080_13900000.json index 12d848296..e2e4b53d7 100644 --- a/video/fixtures/profiles_tests/1920_1080_13900000.json +++ b/video/fixtures/profiles_tests/1920_1080_13900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":13900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":13900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":13900000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":13900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":13900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1400000.json b/video/fixtures/profiles_tests/1920_1080_1400000.json index c37992e77..404eca97e 100644 --- a/video/fixtures/profiles_tests/1920_1080_1400000.json +++ b/video/fixtures/profiles_tests/1920_1080_1400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":155555,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1400000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":186666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_14200000.json b/video/fixtures/profiles_tests/1920_1080_14200000.json index bc5925721..841b7bc7f 100644 --- a/video/fixtures/profiles_tests/1920_1080_14200000.json +++ b/video/fixtures/profiles_tests/1920_1080_14200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":14200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":14200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":14200000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":14200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_14700000.json b/video/fixtures/profiles_tests/1920_1080_14700000.json index 1937e3a04..21459eb9a 100644 --- a/video/fixtures/profiles_tests/1920_1080_14700000.json +++ b/video/fixtures/profiles_tests/1920_1080_14700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":14700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":14700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":14700000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":14700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_14800000.json b/video/fixtures/profiles_tests/1920_1080_14800000.json index e70d4a4c6..4bd0742ba 100644 --- a/video/fixtures/profiles_tests/1920_1080_14800000.json +++ b/video/fixtures/profiles_tests/1920_1080_14800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":14800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":14800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":14800000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":14800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_14900000.json b/video/fixtures/profiles_tests/1920_1080_14900000.json index 380330e65..29ffcc602 100644 --- a/video/fixtures/profiles_tests/1920_1080_14900000.json +++ b/video/fixtures/profiles_tests/1920_1080_14900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":14900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":14900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":14900000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":14900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1500000.json b/video/fixtures/profiles_tests/1920_1080_1500000.json index 94bca10a2..f5d483141 100644 --- a/video/fixtures/profiles_tests/1920_1080_1500000.json +++ b/video/fixtures/profiles_tests/1920_1080_1500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":166666,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1500000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":200000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_15000000.json b/video/fixtures/profiles_tests/1920_1080_15000000.json index 3fd6e7fe8..b3a1a1f34 100644 --- a/video/fixtures/profiles_tests/1920_1080_15000000.json +++ b/video/fixtures/profiles_tests/1920_1080_15000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":15000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":15000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":15000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":15000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":15000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_16000000.json b/video/fixtures/profiles_tests/1920_1080_16000000.json index 7c2425935..40a2af782 100644 --- a/video/fixtures/profiles_tests/1920_1080_16000000.json +++ b/video/fixtures/profiles_tests/1920_1080_16000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":16000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":16000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":16000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":16000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":16000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_16600000.json b/video/fixtures/profiles_tests/1920_1080_16600000.json index 6f59ff5a7..0cc0b3207 100644 --- a/video/fixtures/profiles_tests/1920_1080_16600000.json +++ b/video/fixtures/profiles_tests/1920_1080_16600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":16600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":16600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":16600000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":16600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":16600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_16900000.json b/video/fixtures/profiles_tests/1920_1080_16900000.json index 386b03227..a4f705986 100644 --- a/video/fixtures/profiles_tests/1920_1080_16900000.json +++ b/video/fixtures/profiles_tests/1920_1080_16900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":16900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":16900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":16900000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":16900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":16900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_17000000.json b/video/fixtures/profiles_tests/1920_1080_17000000.json index 1f3954687..f2b22ad2f 100644 --- a/video/fixtures/profiles_tests/1920_1080_17000000.json +++ b/video/fixtures/profiles_tests/1920_1080_17000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":17000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":17000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":17000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":17000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":17000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1800000.json b/video/fixtures/profiles_tests/1920_1080_1800000.json index 1e97ed7ff..156733ccb 100644 --- a/video/fixtures/profiles_tests/1920_1080_1800000.json +++ b/video/fixtures/profiles_tests/1920_1080_1800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":200000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":1800000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":240000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_18400000.json b/video/fixtures/profiles_tests/1920_1080_18400000.json index 470699b2d..e39380712 100644 --- a/video/fixtures/profiles_tests/1920_1080_18400000.json +++ b/video/fixtures/profiles_tests/1920_1080_18400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":18400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":18400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":18400000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":18400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":18400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_19300000.json b/video/fixtures/profiles_tests/1920_1080_19300000.json index 470b7695b..f2e0455dc 100644 --- a/video/fixtures/profiles_tests/1920_1080_19300000.json +++ b/video/fixtures/profiles_tests/1920_1080_19300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":19300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":19300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":19300000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":19300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":19300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_19400000.json b/video/fixtures/profiles_tests/1920_1080_19400000.json index c2ae4c83b..96a0c9e9c 100644 --- a/video/fixtures/profiles_tests/1920_1080_19400000.json +++ b/video/fixtures/profiles_tests/1920_1080_19400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":19400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":19400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":19400000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":19400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":19400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_19500000.json b/video/fixtures/profiles_tests/1920_1080_19500000.json index 7cf2a4ba3..9d3df7360 100644 --- a/video/fixtures/profiles_tests/1920_1080_19500000.json +++ b/video/fixtures/profiles_tests/1920_1080_19500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":19500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":19500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":19500000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":19500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":19500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_19700000.json b/video/fixtures/profiles_tests/1920_1080_19700000.json index b16e23fcf..3dafd15b4 100644 --- a/video/fixtures/profiles_tests/1920_1080_19700000.json +++ b/video/fixtures/profiles_tests/1920_1080_19700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":19700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":19700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":19700000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":19700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":19700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_19900000.json b/video/fixtures/profiles_tests/1920_1080_19900000.json index 2e8b24103..eee3e8494 100644 --- a/video/fixtures/profiles_tests/1920_1080_19900000.json +++ b/video/fixtures/profiles_tests/1920_1080_19900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":19900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":19900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":19900000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":19900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":19900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2000000.json b/video/fixtures/profiles_tests/1920_1080_2000000.json index 4953673c0..1259f0c63 100644 --- a/video/fixtures/profiles_tests/1920_1080_2000000.json +++ b/video/fixtures/profiles_tests/1920_1080_2000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":222222,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":266666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_20000000.json b/video/fixtures/profiles_tests/1920_1080_20000000.json index 99308c498..6c9a01ec7 100644 --- a/video/fixtures/profiles_tests/1920_1080_20000000.json +++ b/video/fixtures/profiles_tests/1920_1080_20000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":20000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":20000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":20000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":20000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":20000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_20100000.json b/video/fixtures/profiles_tests/1920_1080_20100000.json index a179a0afc..02a4d0439 100644 --- a/video/fixtures/profiles_tests/1920_1080_20100000.json +++ b/video/fixtures/profiles_tests/1920_1080_20100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":20100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":20100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":20100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":20100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":20100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_20200000.json b/video/fixtures/profiles_tests/1920_1080_20200000.json index 5273b8e3b..f4eb0e8e0 100644 --- a/video/fixtures/profiles_tests/1920_1080_20200000.json +++ b/video/fixtures/profiles_tests/1920_1080_20200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":20200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":20200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":20200000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":20200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":20200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_21100000.json b/video/fixtures/profiles_tests/1920_1080_21100000.json index d6a740227..6f5511438 100644 --- a/video/fixtures/profiles_tests/1920_1080_21100000.json +++ b/video/fixtures/profiles_tests/1920_1080_21100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":21100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":21100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":21100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":21100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":21100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2200000.json b/video/fixtures/profiles_tests/1920_1080_2200000.json index 79ee10b93..19018b80d 100644 --- a/video/fixtures/profiles_tests/1920_1080_2200000.json +++ b/video/fixtures/profiles_tests/1920_1080_2200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":244444,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2200000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":293333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_22000000.json b/video/fixtures/profiles_tests/1920_1080_22000000.json index e7b97546d..7a316f78c 100644 --- a/video/fixtures/profiles_tests/1920_1080_22000000.json +++ b/video/fixtures/profiles_tests/1920_1080_22000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":22000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":22000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":22000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":22000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":22000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_23700000.json b/video/fixtures/profiles_tests/1920_1080_23700000.json index 68b5e2658..e6f97f9a2 100644 --- a/video/fixtures/profiles_tests/1920_1080_23700000.json +++ b/video/fixtures/profiles_tests/1920_1080_23700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":23700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":23700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":23700000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":23700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":23700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_23800000.json b/video/fixtures/profiles_tests/1920_1080_23800000.json index f62f14c1b..69971cf0b 100644 --- a/video/fixtures/profiles_tests/1920_1080_23800000.json +++ b/video/fixtures/profiles_tests/1920_1080_23800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":23800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":23800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":23800000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":23800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":23800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_24600000.json b/video/fixtures/profiles_tests/1920_1080_24600000.json index 9485338c7..7cad2dc49 100644 --- a/video/fixtures/profiles_tests/1920_1080_24600000.json +++ b/video/fixtures/profiles_tests/1920_1080_24600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":24600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":24600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":24600000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":24600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":24600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2500000.json b/video/fixtures/profiles_tests/1920_1080_2500000.json index 789a70ff3..a43235154 100644 --- a/video/fixtures/profiles_tests/1920_1080_2500000.json +++ b/video/fixtures/profiles_tests/1920_1080_2500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":277777,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2500000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":333333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_25000000.json b/video/fixtures/profiles_tests/1920_1080_25000000.json index 805179ef6..820aad768 100644 --- a/video/fixtures/profiles_tests/1920_1080_25000000.json +++ b/video/fixtures/profiles_tests/1920_1080_25000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":25000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":25000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":25000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":25000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":25000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_25200000.json b/video/fixtures/profiles_tests/1920_1080_25200000.json index 76d76b097..8940432b3 100644 --- a/video/fixtures/profiles_tests/1920_1080_25200000.json +++ b/video/fixtures/profiles_tests/1920_1080_25200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":25200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":25200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":25200000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":25200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":25200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2600000.json b/video/fixtures/profiles_tests/1920_1080_2600000.json index 22bb9ad57..7b989e8ce 100644 --- a/video/fixtures/profiles_tests/1920_1080_2600000.json +++ b/video/fixtures/profiles_tests/1920_1080_2600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":288888,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2600000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":346666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2700000.json b/video/fixtures/profiles_tests/1920_1080_2700000.json index 04bec6852..6d9d20626 100644 --- a/video/fixtures/profiles_tests/1920_1080_2700000.json +++ b/video/fixtures/profiles_tests/1920_1080_2700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":300000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2700000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2800000.json b/video/fixtures/profiles_tests/1920_1080_2800000.json index 42982fb61..3aeae5545 100644 --- a/video/fixtures/profiles_tests/1920_1080_2800000.json +++ b/video/fixtures/profiles_tests/1920_1080_2800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":311111,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2800000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":373333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2900000.json b/video/fixtures/profiles_tests/1920_1080_2900000.json index 88f14ddec..7a4683e4c 100644 --- a/video/fixtures/profiles_tests/1920_1080_2900000.json +++ b/video/fixtures/profiles_tests/1920_1080_2900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":322222,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":2900000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":386666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_3100000.json b/video/fixtures/profiles_tests/1920_1080_3100000.json index 8df50c337..bec86ecdd 100644 --- a/video/fixtures/profiles_tests/1920_1080_3100000.json +++ b/video/fixtures/profiles_tests/1920_1080_3100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":3100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":3100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":344444,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":3100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":413333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_3200000.json b/video/fixtures/profiles_tests/1920_1080_3200000.json index 9827e9484..e3a294bac 100644 --- a/video/fixtures/profiles_tests/1920_1080_3200000.json +++ b/video/fixtures/profiles_tests/1920_1080_3200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":3200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":3200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":355555,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":3200000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":3200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":426666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_3300000.json b/video/fixtures/profiles_tests/1920_1080_3300000.json index 7f73e57ea..dbf0d458a 100644 --- a/video/fixtures/profiles_tests/1920_1080_3300000.json +++ b/video/fixtures/profiles_tests/1920_1080_3300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":3300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":3300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":366666,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":3300000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":3300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":440000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_3500000.json b/video/fixtures/profiles_tests/1920_1080_3500000.json index 13ee546f0..1a5a25ea3 100644 --- a/video/fixtures/profiles_tests/1920_1080_3500000.json +++ b/video/fixtures/profiles_tests/1920_1080_3500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":3500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":3500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":388888,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":3500000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":3500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":466666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_3700000.json b/video/fixtures/profiles_tests/1920_1080_3700000.json index f6d469e91..12f4ab4ce 100644 --- a/video/fixtures/profiles_tests/1920_1080_3700000.json +++ b/video/fixtures/profiles_tests/1920_1080_3700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":3700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":3700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":411111,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":3700000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":3700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":493333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_37700000.json b/video/fixtures/profiles_tests/1920_1080_37700000.json index 02c3e108b..ff2345398 100644 --- a/video/fixtures/profiles_tests/1920_1080_37700000.json +++ b/video/fixtures/profiles_tests/1920_1080_37700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":37700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":37700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":37700000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":37700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":37700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_3800000.json b/video/fixtures/profiles_tests/1920_1080_3800000.json index 62f8de579..1ef370e7d 100644 --- a/video/fixtures/profiles_tests/1920_1080_3800000.json +++ b/video/fixtures/profiles_tests/1920_1080_3800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":3800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":3800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":422222,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":3800000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":506666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_400000.json b/video/fixtures/profiles_tests/1920_1080_400000.json index 77aabca25..69234e08f 100644 --- a/video/fixtures/profiles_tests/1920_1080_400000.json +++ b/video/fixtures/profiles_tests/1920_1080_400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":200000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":200000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":200000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_4100000.json b/video/fixtures/profiles_tests/1920_1080_4100000.json index 70b28ed79..0c835ace9 100644 --- a/video/fixtures/profiles_tests/1920_1080_4100000.json +++ b/video/fixtures/profiles_tests/1920_1080_4100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":4100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":4100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":455555,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1822222,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":4100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":4100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":546666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2186666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_4200000.json b/video/fixtures/profiles_tests/1920_1080_4200000.json index fc0bd7ead..29ce38de0 100644 --- a/video/fixtures/profiles_tests/1920_1080_4200000.json +++ b/video/fixtures/profiles_tests/1920_1080_4200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":4200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":4200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":466666,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1866666,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":4200000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":560000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2240000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_4400000.json b/video/fixtures/profiles_tests/1920_1080_4400000.json index c63c00487..e6dff98b8 100644 --- a/video/fixtures/profiles_tests/1920_1080_4400000.json +++ b/video/fixtures/profiles_tests/1920_1080_4400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":4400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":4400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":488888,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1955555,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":4400000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":586666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2346666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_4500000.json b/video/fixtures/profiles_tests/1920_1080_4500000.json index 9ecdc0d3c..5c967af6d 100644 --- a/video/fixtures/profiles_tests/1920_1080_4500000.json +++ b/video/fixtures/profiles_tests/1920_1080_4500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":4500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":4500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":500000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":4500000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":4500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2400000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_4800000.json b/video/fixtures/profiles_tests/1920_1080_4800000.json index 04de09148..3c0453340 100644 --- a/video/fixtures/profiles_tests/1920_1080_4800000.json +++ b/video/fixtures/profiles_tests/1920_1080_4800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":4800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":4800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":533333,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2133333,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":4800000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":4800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":640000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2560000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_5000000.json b/video/fixtures/profiles_tests/1920_1080_5000000.json index c1dcd91b3..f13e6e3e4 100644 --- a/video/fixtures/profiles_tests/1920_1080_5000000.json +++ b/video/fixtures/profiles_tests/1920_1080_5000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":5000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":5000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":555555,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2222222,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":5000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":5000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":666666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2666666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_5200000.json b/video/fixtures/profiles_tests/1920_1080_5200000.json index e01306ede..38bbc658e 100644 --- a/video/fixtures/profiles_tests/1920_1080_5200000.json +++ b/video/fixtures/profiles_tests/1920_1080_5200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":5200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":5200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":577777,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2311111,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":5200000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":5200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":693333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2773333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_5600000.json b/video/fixtures/profiles_tests/1920_1080_5600000.json index c57bcdc09..83f1f01ca 100644 --- a/video/fixtures/profiles_tests/1920_1080_5600000.json +++ b/video/fixtures/profiles_tests/1920_1080_5600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":5600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":5600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":622222,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2488888,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":5600000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":5600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":746666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2986666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_5700000.json b/video/fixtures/profiles_tests/1920_1080_5700000.json index dd6e01df8..bb7812565 100644 --- a/video/fixtures/profiles_tests/1920_1080_5700000.json +++ b/video/fixtures/profiles_tests/1920_1080_5700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":5700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":5700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":633333,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2533333,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":5700000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":5700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":760000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3040000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_5900000.json b/video/fixtures/profiles_tests/1920_1080_5900000.json index 50d0607b1..be11b0343 100644 --- a/video/fixtures/profiles_tests/1920_1080_5900000.json +++ b/video/fixtures/profiles_tests/1920_1080_5900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":5900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":5900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":655555,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2622222,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":5900000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":786666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3146666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_600000.json b/video/fixtures/profiles_tests/1920_1080_600000.json index 989d1e306..4f7168158 100644 --- a/video/fixtures/profiles_tests/1920_1080_600000.json +++ b/video/fixtures/profiles_tests/1920_1080_600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":300000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":300000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":300000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_6100000.json b/video/fixtures/profiles_tests/1920_1080_6100000.json index 2498d6b7e..0e0434e4d 100644 --- a/video/fixtures/profiles_tests/1920_1080_6100000.json +++ b/video/fixtures/profiles_tests/1920_1080_6100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":6100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":6100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":677777,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2711111,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":6100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":6100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":813333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3253333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":6100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_6800000.json b/video/fixtures/profiles_tests/1920_1080_6800000.json index 2df6ae307..e715fd958 100644 --- a/video/fixtures/profiles_tests/1920_1080_6800000.json +++ b/video/fixtures/profiles_tests/1920_1080_6800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":6800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":6800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":755555,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3022222,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":6800000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":6800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":906666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3626666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":6800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_7000000.json b/video/fixtures/profiles_tests/1920_1080_7000000.json index d721c584d..3244319a1 100644 --- a/video/fixtures/profiles_tests/1920_1080_7000000.json +++ b/video/fixtures/profiles_tests/1920_1080_7000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":7000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":7000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":777777,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3111111,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":7000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":7000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":933333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3733333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":7000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_7700000.json b/video/fixtures/profiles_tests/1920_1080_7700000.json index f1fbd4840..d3128d652 100644 --- a/video/fixtures/profiles_tests/1920_1080_7700000.json +++ b/video/fixtures/profiles_tests/1920_1080_7700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":7700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":7700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":855555,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3422222,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":7700000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":7700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_7800000.json b/video/fixtures/profiles_tests/1920_1080_7800000.json index 306d37bcf..cf8ef6cb9 100644 --- a/video/fixtures/profiles_tests/1920_1080_7800000.json +++ b/video/fixtures/profiles_tests/1920_1080_7800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":7800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":7800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":866666,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3466666,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":7800000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":7800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":7800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_800000.json b/video/fixtures/profiles_tests/1920_1080_800000.json index 56e3d77e7..7e166064d 100644 --- a/video/fixtures/profiles_tests/1920_1080_800000.json +++ b/video/fixtures/profiles_tests/1920_1080_800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":400000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":400000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":400000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_8200000.json b/video/fixtures/profiles_tests/1920_1080_8200000.json index 30c4a88fd..538304de9 100644 --- a/video/fixtures/profiles_tests/1920_1080_8200000.json +++ b/video/fixtures/profiles_tests/1920_1080_8200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":8200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":8200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":911111,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3644444,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":8200000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":8200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":8200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_8300000.json b/video/fixtures/profiles_tests/1920_1080_8300000.json index e56276a13..0c698d6ed 100644 --- a/video/fixtures/profiles_tests/1920_1080_8300000.json +++ b/video/fixtures/profiles_tests/1920_1080_8300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":8300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":8300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":922222,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3688888,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":8300000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":8300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":8300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_8400000.json b/video/fixtures/profiles_tests/1920_1080_8400000.json index 2820ce9ab..7e100269a 100644 --- a/video/fixtures/profiles_tests/1920_1080_8400000.json +++ b/video/fixtures/profiles_tests/1920_1080_8400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":8400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":8400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":933333,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3733333,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":8400000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":8400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_8700000.json b/video/fixtures/profiles_tests/1920_1080_8700000.json index e7dc66be8..81ce6a1ac 100644 --- a/video/fixtures/profiles_tests/1920_1080_8700000.json +++ b/video/fixtures/profiles_tests/1920_1080_8700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":8700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":8700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":966666,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3866666,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":8700000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":8700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":8700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_9100000.json b/video/fixtures/profiles_tests/1920_1080_9100000.json index c6b7812e6..f0a7587a9 100644 --- a/video/fixtures/profiles_tests/1920_1080_9100000.json +++ b/video/fixtures/profiles_tests/1920_1080_9100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":9100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":9100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":9100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":9100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":9100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_9400000.json b/video/fixtures/profiles_tests/1920_1080_9400000.json index 80212cd94..b4649ea0f 100644 --- a/video/fixtures/profiles_tests/1920_1080_9400000.json +++ b/video/fixtures/profiles_tests/1920_1080_9400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":9400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":9400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":9400000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":9400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":9400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_9800000.json b/video/fixtures/profiles_tests/1920_1080_9800000.json index 70d22a786..779e18c3d 100644 --- a/video/fixtures/profiles_tests/1920_1080_9800000.json +++ b/video/fixtures/profiles_tests/1920_1080_9800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":9800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":9800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":9800000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":9800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":9800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_9900000.json b/video/fixtures/profiles_tests/1920_1080_9900000.json index af6c79653..8b36d8c63 100644 --- a/video/fixtures/profiles_tests/1920_1080_9900000.json +++ b/video/fixtures/profiles_tests/1920_1080_9900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":9900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":9900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1080p0","width":1920,"height":1080,"bitrate":9900000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":9900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1440_15000000.json b/video/fixtures/profiles_tests/1920_1440_15000000.json index 3b5e83e21..aabfc5afb 100644 --- a/video/fixtures/profiles_tests/1920_1440_15000000.json +++ b/video/fixtures/profiles_tests/1920_1440_15000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1440,"Bitrate":15000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1440p0","width":1920,"height":1440,"bitrate":15000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1440p0","width":1920,"height":1440,"bitrate":15000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1440,"Bitrate":15000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1920,"height":1440,"bitrate":15000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1440_19700000.json b/video/fixtures/profiles_tests/1920_1440_19700000.json index 5eed403e7..c697174dd 100644 --- a/video/fixtures/profiles_tests/1920_1440_19700000.json +++ b/video/fixtures/profiles_tests/1920_1440_19700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1440,"Bitrate":19700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1440p0","width":1920,"height":1440,"bitrate":19700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1440p0","width":1920,"height":1440,"bitrate":19700000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1440,"Bitrate":19700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1920,"height":1440,"bitrate":19700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1440_22500000.json b/video/fixtures/profiles_tests/1920_1440_22500000.json index 9f6c3b44b..8fce53499 100644 --- a/video/fixtures/profiles_tests/1920_1440_22500000.json +++ b/video/fixtures/profiles_tests/1920_1440_22500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1440,"Bitrate":22500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1440p0","width":1920,"height":1440,"bitrate":22500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1440p0","width":1920,"height":1440,"bitrate":22500000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1440,"Bitrate":22500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1920,"height":1440,"bitrate":22500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_10200000.json b/video/fixtures/profiles_tests/1920_1920_10200000.json index 4a4e93fa9..aea8e7c1a 100644 --- a/video/fixtures/profiles_tests/1920_1920_10200000.json +++ b/video/fixtures/profiles_tests/1920_1920_10200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":10200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":10200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":637500,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2550000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":10200000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":10200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":765000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3060000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":10200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_10600000.json b/video/fixtures/profiles_tests/1920_1920_10600000.json index 238bc1a82..31539631a 100644 --- a/video/fixtures/profiles_tests/1920_1920_10600000.json +++ b/video/fixtures/profiles_tests/1920_1920_10600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":10600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":10600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":662500,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2650000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":10600000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":10600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":795000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3180000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":10600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_1100000.json b/video/fixtures/profiles_tests/1920_1920_1100000.json index e4e2d0d65..8669335fc 100644 --- a/video/fixtures/profiles_tests/1920_1920_1100000.json +++ b/video/fixtures/profiles_tests/1920_1920_1100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":68750,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":82500,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_15400000.json b/video/fixtures/profiles_tests/1920_1920_15400000.json index 83a78ee13..fc2c63c9c 100644 --- a/video/fixtures/profiles_tests/1920_1920_15400000.json +++ b/video/fixtures/profiles_tests/1920_1920_15400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":15400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":15400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":962499,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3849999,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":15400000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":15400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":15400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_25000000.json b/video/fixtures/profiles_tests/1920_1920_25000000.json index ff0902732..86406d111 100644 --- a/video/fixtures/profiles_tests/1920_1920_25000000.json +++ b/video/fixtures/profiles_tests/1920_1920_25000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":25000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":25000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":25000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":25000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":25000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_29000000.json b/video/fixtures/profiles_tests/1920_1920_29000000.json index a99147b80..6ef1f4261 100644 --- a/video/fixtures/profiles_tests/1920_1920_29000000.json +++ b/video/fixtures/profiles_tests/1920_1920_29000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":29000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":29000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":29000000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":29000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":29000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_3800000.json b/video/fixtures/profiles_tests/1920_1920_3800000.json index b4dfa99d6..dcd4e7c32 100644 --- a/video/fixtures/profiles_tests/1920_1920_3800000.json +++ b/video/fixtures/profiles_tests/1920_1920_3800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":3800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":3800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":237500,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":3800000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":285000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":3800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_52500000.json b/video/fixtures/profiles_tests/1920_1920_52500000.json index d655ea2f4..9c8b1faac 100644 --- a/video/fixtures/profiles_tests/1920_1920_52500000.json +++ b/video/fixtures/profiles_tests/1920_1920_52500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":52500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":52500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":52500000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":52500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":52500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_5300000.json b/video/fixtures/profiles_tests/1920_1920_5300000.json index f208d013e..fb02fb116 100644 --- a/video/fixtures/profiles_tests/1920_1920_5300000.json +++ b/video/fixtures/profiles_tests/1920_1920_5300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":5300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":5300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":331250,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1325000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":5300000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":397500,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1590000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":5300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_5500000.json b/video/fixtures/profiles_tests/1920_1920_5500000.json index 26702df7a..f4ebc5227 100644 --- a/video/fixtures/profiles_tests/1920_1920_5500000.json +++ b/video/fixtures/profiles_tests/1920_1920_5500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":5500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":5500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":343750,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1375000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":5500000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":5500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":412500,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1650000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":5500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_6600000.json b/video/fixtures/profiles_tests/1920_1920_6600000.json index f907f0045..bddb3873f 100644 --- a/video/fixtures/profiles_tests/1920_1920_6600000.json +++ b/video/fixtures/profiles_tests/1920_1920_6600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":6600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":6600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":412500,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1650000,"fps":0},{"name":"1920p0","width":1920,"height":1920,"bitrate":6600000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":6600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":495000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1980000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":6600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_600_10400000.json b/video/fixtures/profiles_tests/1920_600_10400000.json index 753125734..4326b8055 100644 --- a/video/fixtures/profiles_tests/1920_600_10400000.json +++ b/video/fixtures/profiles_tests/1920_600_10400000.json @@ -1 +1 @@ -{"Width":1920,"Height":600,"Bitrate":10400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"600p0","width":1920,"height":600,"bitrate":10400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"600p0","width":1920,"height":600,"bitrate":10400000,"fps":0}]} \ No newline at end of file +{"Width":1920,"Height":600,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":1920,"height":600,"bitrate":10400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1980_1980_24700000.json b/video/fixtures/profiles_tests/1980_1980_24700000.json index e1a2cea0e..a8793c0de 100644 --- a/video/fixtures/profiles_tests/1980_1980_24700000.json +++ b/video/fixtures/profiles_tests/1980_1980_24700000.json @@ -1 +1 @@ -{"Width":1980,"Height":1980,"Bitrate":24700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1980p0","width":1980,"height":1980,"bitrate":24700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1980p0","width":1980,"height":1980,"bitrate":24700000,"fps":0}]} \ No newline at end of file +{"Width":1980,"Height":1980,"Bitrate":24700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1980p0","width":1980,"height":1980,"bitrate":24700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_1500_5600000.json b/video/fixtures/profiles_tests/2000_1500_5600000.json index 3e7c4fd2d..fb7a62fa4 100644 --- a/video/fixtures/profiles_tests/2000_1500_5600000.json +++ b/video/fixtures/profiles_tests/2000_1500_5600000.json @@ -1 +1 @@ -{"Width":2000,"Height":1500,"Bitrate":5600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1500p0","width":2000,"height":1500,"bitrate":5600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":430080,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1720320,"fps":0},{"name":"1500p0","width":2000,"height":1500,"bitrate":5600000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":1500,"Bitrate":5600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":516096,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2064384,"fps":0,"quality":27},{"name":"1500p0","width":2000,"height":1500,"bitrate":5600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_10300000.json b/video/fixtures/profiles_tests/2000_2000_10300000.json index 73ab26701..ef401db12 100644 --- a/video/fixtures/profiles_tests/2000_2000_10300000.json +++ b/video/fixtures/profiles_tests/2000_2000_10300000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":10300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":10300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":593280,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2373120,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":10300000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":711936,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2847744,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_10900000.json b/video/fixtures/profiles_tests/2000_2000_10900000.json index 4171d2e7b..8eaa1bac7 100644 --- a/video/fixtures/profiles_tests/2000_2000_10900000.json +++ b/video/fixtures/profiles_tests/2000_2000_10900000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":10900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":10900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":627840,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2511360,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":10900000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":10900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":753408,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3013632,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":10900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_11400000.json b/video/fixtures/profiles_tests/2000_2000_11400000.json index 460f27fd2..e6df7bc3c 100644 --- a/video/fixtures/profiles_tests/2000_2000_11400000.json +++ b/video/fixtures/profiles_tests/2000_2000_11400000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":11400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":11400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":656640,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2626560,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":11400000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":11400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":787968,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3151872,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":11400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_13200000.json b/video/fixtures/profiles_tests/2000_2000_13200000.json index 8d2fe570a..e35e449f4 100644 --- a/video/fixtures/profiles_tests/2000_2000_13200000.json +++ b/video/fixtures/profiles_tests/2000_2000_13200000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":13200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":13200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":760320,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3041280,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":13200000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":13200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":912384,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3649536,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":13200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_14600000.json b/video/fixtures/profiles_tests/2000_2000_14600000.json index 44a5bded6..dcd12e9cc 100644 --- a/video/fixtures/profiles_tests/2000_2000_14600000.json +++ b/video/fixtures/profiles_tests/2000_2000_14600000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":14600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":14600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":840960,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3363840,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":14600000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":14600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":14600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_15100000.json b/video/fixtures/profiles_tests/2000_2000_15100000.json index 21700bab4..a3a9fc305 100644 --- a/video/fixtures/profiles_tests/2000_2000_15100000.json +++ b/video/fixtures/profiles_tests/2000_2000_15100000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":15100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":15100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":869760,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3479040,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":15100000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":15100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":15100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_16900000.json b/video/fixtures/profiles_tests/2000_2000_16900000.json index 82ded6976..b0606aa4e 100644 --- a/video/fixtures/profiles_tests/2000_2000_16900000.json +++ b/video/fixtures/profiles_tests/2000_2000_16900000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":16900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":16900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":973439,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3893759,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":16900000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":16900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":16900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_19500000.json b/video/fixtures/profiles_tests/2000_2000_19500000.json index cb5daa04c..964189193 100644 --- a/video/fixtures/profiles_tests/2000_2000_19500000.json +++ b/video/fixtures/profiles_tests/2000_2000_19500000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":19500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":19500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":19500000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":19500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":19500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_22800000.json b/video/fixtures/profiles_tests/2000_2000_22800000.json index 7e06da4d8..da1573c9c 100644 --- a/video/fixtures/profiles_tests/2000_2000_22800000.json +++ b/video/fixtures/profiles_tests/2000_2000_22800000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":22800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":22800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":22800000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":22800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":22800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_24500000.json b/video/fixtures/profiles_tests/2000_2000_24500000.json index ab3e52a0a..5d37541ee 100644 --- a/video/fixtures/profiles_tests/2000_2000_24500000.json +++ b/video/fixtures/profiles_tests/2000_2000_24500000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":24500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":24500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":24500000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":24500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":24500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_2900000.json b/video/fixtures/profiles_tests/2000_2000_2900000.json index 6938406be..39435862b 100644 --- a/video/fixtures/profiles_tests/2000_2000_2900000.json +++ b/video/fixtures/profiles_tests/2000_2000_2900000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":2900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":2900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":167040,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":2900000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":200448,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":2900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_29900000.json b/video/fixtures/profiles_tests/2000_2000_29900000.json index b67c31975..b8ad1a0ab 100644 --- a/video/fixtures/profiles_tests/2000_2000_29900000.json +++ b/video/fixtures/profiles_tests/2000_2000_29900000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":29900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":29900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":29900000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":29900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":29900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_30000000.json b/video/fixtures/profiles_tests/2000_2000_30000000.json index 6c2204e2e..bf83f6b81 100644 --- a/video/fixtures/profiles_tests/2000_2000_30000000.json +++ b/video/fixtures/profiles_tests/2000_2000_30000000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":30000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":30000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":30000000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":30000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":30000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_4100000.json b/video/fixtures/profiles_tests/2000_2000_4100000.json index d723d249f..6d4a19de8 100644 --- a/video/fixtures/profiles_tests/2000_2000_4100000.json +++ b/video/fixtures/profiles_tests/2000_2000_4100000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":4100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":4100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":236159,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":944639,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":4100000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":4100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":283392,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1133568,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":4100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_4400000.json b/video/fixtures/profiles_tests/2000_2000_4400000.json index b00b2f09e..bee96d3bc 100644 --- a/video/fixtures/profiles_tests/2000_2000_4400000.json +++ b/video/fixtures/profiles_tests/2000_2000_4400000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":4400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":4400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":253440,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1013760,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":4400000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":304128,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1216512,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":4400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_4900000.json b/video/fixtures/profiles_tests/2000_2000_4900000.json index 8962135e2..cb37c7a04 100644 --- a/video/fixtures/profiles_tests/2000_2000_4900000.json +++ b/video/fixtures/profiles_tests/2000_2000_4900000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":4900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":4900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":282240,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1128960,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":4900000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":4900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":338688,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1354752,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":4900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_8100000.json b/video/fixtures/profiles_tests/2000_2000_8100000.json index 4bf1c1218..62863dd3d 100644 --- a/video/fixtures/profiles_tests/2000_2000_8100000.json +++ b/video/fixtures/profiles_tests/2000_2000_8100000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":8100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":8100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":466560,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1866240,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":8100000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":8100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":559872,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2239488,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":8100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_8400000.json b/video/fixtures/profiles_tests/2000_2000_8400000.json index 9997ba13c..0da994174 100644 --- a/video/fixtures/profiles_tests/2000_2000_8400000.json +++ b/video/fixtures/profiles_tests/2000_2000_8400000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":8400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":8400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":483840,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1935360,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":8400000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":580608,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2322432,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":8400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_9800000.json b/video/fixtures/profiles_tests/2000_2000_9800000.json index 40343b6d9..e6985904b 100644 --- a/video/fixtures/profiles_tests/2000_2000_9800000.json +++ b/video/fixtures/profiles_tests/2000_2000_9800000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":9800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":9800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":564480,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2257920,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":9800000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":9800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":677376,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2709504,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":9800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_9900000.json b/video/fixtures/profiles_tests/2000_2000_9900000.json index 27d87364d..31ba69fe4 100644 --- a/video/fixtures/profiles_tests/2000_2000_9900000.json +++ b/video/fixtures/profiles_tests/2000_2000_9900000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":9900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":9900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":570240,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2280960,"fps":0},{"name":"2000p0","width":2000,"height":2000,"bitrate":9900000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":684288,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2737152,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":9900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_3000_22400000.json b/video/fixtures/profiles_tests/2000_3000_22400000.json index 0cb648fdd..e8c5f739b 100644 --- a/video/fixtures/profiles_tests/2000_3000_22400000.json +++ b/video/fixtures/profiles_tests/2000_3000_22400000.json @@ -1 +1 @@ -{"Width":2000,"Height":3000,"Bitrate":22400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3000p0","width":2000,"height":3000,"bitrate":22400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":860160,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3440640,"fps":0},{"name":"3000p0","width":2000,"height":3000,"bitrate":22400000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":3000,"Bitrate":22400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"3000p0","width":2000,"height":3000,"bitrate":22400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_3000_6800000.json b/video/fixtures/profiles_tests/2000_3000_6800000.json index 3b5032f77..dccc819a9 100644 --- a/video/fixtures/profiles_tests/2000_3000_6800000.json +++ b/video/fixtures/profiles_tests/2000_3000_6800000.json @@ -1 +1 @@ -{"Width":2000,"Height":3000,"Bitrate":6800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3000p0","width":2000,"height":3000,"bitrate":6800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":261120,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1044480,"fps":0},{"name":"3000p0","width":2000,"height":3000,"bitrate":6800000,"fps":0}]} \ No newline at end of file +{"Width":2000,"Height":3000,"Bitrate":6800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":313344,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1253376,"fps":0,"quality":27},{"name":"3000p0","width":2000,"height":3000,"bitrate":6800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_1152_400000.json b/video/fixtures/profiles_tests/2048_1152_400000.json index 77f94f2a5..2f2a94558 100644 --- a/video/fixtures/profiles_tests/2048_1152_400000.json +++ b/video/fixtures/profiles_tests/2048_1152_400000.json @@ -1 +1 @@ -{"Width":2048,"Height":1152,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":2048,"height":1152,"bitrate":200000,"fps":0},{"name":"1152p0","width":2048,"height":1152,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":2048,"height":1152,"bitrate":200000,"fps":0},{"name":"1152p0","width":2048,"height":1152,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":1152,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":2048,"height":1152,"bitrate":200000,"fps":0,"quality":27},{"name":"1152p0","width":2048,"height":1152,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_10800000.json b/video/fixtures/profiles_tests/2048_2048_10800000.json index 71d9032ea..b6e12eacc 100644 --- a/video/fixtures/profiles_tests/2048_2048_10800000.json +++ b/video/fixtures/profiles_tests/2048_2048_10800000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":10800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":10800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":593261,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2373046,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":10800000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":10800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":711914,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2847656,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":10800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_20300000.json b/video/fixtures/profiles_tests/2048_2048_20300000.json index 6c0c9d703..20de68045 100644 --- a/video/fixtures/profiles_tests/2048_2048_20300000.json +++ b/video/fixtures/profiles_tests/2048_2048_20300000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":20300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":20300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":20300000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":20300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":20300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_24500000.json b/video/fixtures/profiles_tests/2048_2048_24500000.json index 80bf9e8df..5faabef48 100644 --- a/video/fixtures/profiles_tests/2048_2048_24500000.json +++ b/video/fixtures/profiles_tests/2048_2048_24500000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":24500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":24500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":24500000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":24500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":24500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_26900000.json b/video/fixtures/profiles_tests/2048_2048_26900000.json index b6b60d456..882bdca09 100644 --- a/video/fixtures/profiles_tests/2048_2048_26900000.json +++ b/video/fixtures/profiles_tests/2048_2048_26900000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":26900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":26900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":26900000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":26900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":26900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_2700000.json b/video/fixtures/profiles_tests/2048_2048_2700000.json index 84b4847ca..9d4e98093 100644 --- a/video/fixtures/profiles_tests/2048_2048_2700000.json +++ b/video/fixtures/profiles_tests/2048_2048_2700000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":2700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":2700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":148315,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":2700000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":177978,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":2700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_27100000.json b/video/fixtures/profiles_tests/2048_2048_27100000.json index 0e66ba956..d40d0be8d 100644 --- a/video/fixtures/profiles_tests/2048_2048_27100000.json +++ b/video/fixtures/profiles_tests/2048_2048_27100000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":27100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":27100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":27100000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":27100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":27100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_27200000.json b/video/fixtures/profiles_tests/2048_2048_27200000.json index d3ab3cf26..d9a283989 100644 --- a/video/fixtures/profiles_tests/2048_2048_27200000.json +++ b/video/fixtures/profiles_tests/2048_2048_27200000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":27200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":27200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":27200000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":27200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":27200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_27600000.json b/video/fixtures/profiles_tests/2048_2048_27600000.json index 09b731d66..f6de45f78 100644 --- a/video/fixtures/profiles_tests/2048_2048_27600000.json +++ b/video/fixtures/profiles_tests/2048_2048_27600000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":27600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":27600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":27600000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":27600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":27600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_27700000.json b/video/fixtures/profiles_tests/2048_2048_27700000.json index 292b7b626..2e1559f44 100644 --- a/video/fixtures/profiles_tests/2048_2048_27700000.json +++ b/video/fixtures/profiles_tests/2048_2048_27700000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":27700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":27700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":27700000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":27700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":27700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_2800000.json b/video/fixtures/profiles_tests/2048_2048_2800000.json index eccc543d6..89ea955c3 100644 --- a/video/fixtures/profiles_tests/2048_2048_2800000.json +++ b/video/fixtures/profiles_tests/2048_2048_2800000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":2800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":2800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":153808,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":2800000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":184570,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":2800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_37100000.json b/video/fixtures/profiles_tests/2048_2048_37100000.json index dcc00c7af..3a0df086d 100644 --- a/video/fixtures/profiles_tests/2048_2048_37100000.json +++ b/video/fixtures/profiles_tests/2048_2048_37100000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":37100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":37100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":37100000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":37100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":37100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_37900000.json b/video/fixtures/profiles_tests/2048_2048_37900000.json index 234f0ad62..335c41507 100644 --- a/video/fixtures/profiles_tests/2048_2048_37900000.json +++ b/video/fixtures/profiles_tests/2048_2048_37900000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":37900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":37900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":37900000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":37900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":37900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_38200000.json b/video/fixtures/profiles_tests/2048_2048_38200000.json index 8fc0b9596..111be1ffd 100644 --- a/video/fixtures/profiles_tests/2048_2048_38200000.json +++ b/video/fixtures/profiles_tests/2048_2048_38200000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":38200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":38200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":38200000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":38200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":38200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_4300000.json b/video/fixtures/profiles_tests/2048_2048_4300000.json index 368b1cbd7..e43fc0c11 100644 --- a/video/fixtures/profiles_tests/2048_2048_4300000.json +++ b/video/fixtures/profiles_tests/2048_2048_4300000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":4300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":4300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":236206,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":944824,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":4300000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":4300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":283447,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1133789,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":4300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_7400000.json b/video/fixtures/profiles_tests/2048_2048_7400000.json index 1fde7204a..bda456562 100644 --- a/video/fixtures/profiles_tests/2048_2048_7400000.json +++ b/video/fixtures/profiles_tests/2048_2048_7400000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":7400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":7400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":406494,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1625976,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":7400000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":7400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":487792,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1951171,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":7400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_7700000.json b/video/fixtures/profiles_tests/2048_2048_7700000.json index b878f4bfc..82657e0a7 100644 --- a/video/fixtures/profiles_tests/2048_2048_7700000.json +++ b/video/fixtures/profiles_tests/2048_2048_7700000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":7700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":7700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":422973,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1691894,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":7700000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":507568,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2030273,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":7700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_8000000.json b/video/fixtures/profiles_tests/2048_2048_8000000.json index 1a76f5673..8b8553419 100644 --- a/video/fixtures/profiles_tests/2048_2048_8000000.json +++ b/video/fixtures/profiles_tests/2048_2048_8000000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":8000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":8000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":439453,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1757812,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":8000000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":527343,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2109375,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":8000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_8800000.json b/video/fixtures/profiles_tests/2048_2048_8800000.json index 13af0073a..0fba6e11f 100644 --- a/video/fixtures/profiles_tests/2048_2048_8800000.json +++ b/video/fixtures/profiles_tests/2048_2048_8800000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":8800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":8800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":483398,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1933593,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":8800000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":8800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":580078,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2320312,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":8800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_9900000.json b/video/fixtures/profiles_tests/2048_2048_9900000.json index c3f31ccd7..0f897a8b9 100644 --- a/video/fixtures/profiles_tests/2048_2048_9900000.json +++ b/video/fixtures/profiles_tests/2048_2048_9900000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":9900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":9900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":543823,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2175292,"fps":0},{"name":"2048p0","width":2048,"height":2048,"bitrate":9900000,"fps":0}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":652587,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2610351,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":9900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2112_2112_67900000.json b/video/fixtures/profiles_tests/2112_2112_67900000.json index 9814a9b9e..69a908362 100644 --- a/video/fixtures/profiles_tests/2112_2112_67900000.json +++ b/video/fixtures/profiles_tests/2112_2112_67900000.json @@ -1 +1 @@ -{"Width":2112,"Height":2112,"Bitrate":67900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2112p0","width":2112,"height":2112,"bitrate":67900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2112p0","width":2112,"height":2112,"bitrate":67900000,"fps":0}]} \ No newline at end of file +{"Width":2112,"Height":2112,"Bitrate":67900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2112p0","width":2112,"height":2112,"bitrate":67900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_10000000.json b/video/fixtures/profiles_tests/2160_2160_10000000.json index 2b9ede3b0..4a3531147 100644 --- a/video/fixtures/profiles_tests/2160_2160_10000000.json +++ b/video/fixtures/profiles_tests/2160_2160_10000000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":10000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":10000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":493827,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1975308,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":10000000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":592592,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2370370,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":10000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_10200000.json b/video/fixtures/profiles_tests/2160_2160_10200000.json index a738972d2..cd67d2110 100644 --- a/video/fixtures/profiles_tests/2160_2160_10200000.json +++ b/video/fixtures/profiles_tests/2160_2160_10200000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":10200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":10200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":503703,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2014814,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":10200000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":10200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":604444,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2417777,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":10200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_16000000.json b/video/fixtures/profiles_tests/2160_2160_16000000.json index ff405ae7c..a5e1ace73 100644 --- a/video/fixtures/profiles_tests/2160_2160_16000000.json +++ b/video/fixtures/profiles_tests/2160_2160_16000000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":16000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":16000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":790123,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3160493,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":16000000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":16000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":948148,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3792592,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":16000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_25400000.json b/video/fixtures/profiles_tests/2160_2160_25400000.json index 2fbd20178..87c14fd4f 100644 --- a/video/fixtures/profiles_tests/2160_2160_25400000.json +++ b/video/fixtures/profiles_tests/2160_2160_25400000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":25400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":25400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":25400000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":25400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":25400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_30800000.json b/video/fixtures/profiles_tests/2160_2160_30800000.json index 96f0b849a..e93706731 100644 --- a/video/fixtures/profiles_tests/2160_2160_30800000.json +++ b/video/fixtures/profiles_tests/2160_2160_30800000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":30800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":30800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":30800000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":30800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":30800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_400000.json b/video/fixtures/profiles_tests/2160_2160_400000.json index 1d74f8e4a..e80cc3526 100644 --- a/video/fixtures/profiles_tests/2160_2160_400000.json +++ b/video/fixtures/profiles_tests/2160_2160_400000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":2160,"height":2160,"bitrate":200000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":2160,"height":2160,"bitrate":200000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":2160,"height":2160,"bitrate":200000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_59700000.json b/video/fixtures/profiles_tests/2160_2160_59700000.json index 07ab46aa4..8beed7640 100644 --- a/video/fixtures/profiles_tests/2160_2160_59700000.json +++ b/video/fixtures/profiles_tests/2160_2160_59700000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":59700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":59700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":59700000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":59700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":59700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_65000000.json b/video/fixtures/profiles_tests/2160_2160_65000000.json index 946916a44..2fc37319a 100644 --- a/video/fixtures/profiles_tests/2160_2160_65000000.json +++ b/video/fixtures/profiles_tests/2160_2160_65000000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":65000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":65000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":65000000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":65000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":65000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_8800000.json b/video/fixtures/profiles_tests/2160_2160_8800000.json index ba0d7840f..74bfca67a 100644 --- a/video/fixtures/profiles_tests/2160_2160_8800000.json +++ b/video/fixtures/profiles_tests/2160_2160_8800000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":8800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":8800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":434567,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1738271,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":8800000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":8800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":521481,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2085925,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":8800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_9600000.json b/video/fixtures/profiles_tests/2160_2160_9600000.json index ab3526cd7..d4e97d2b7 100644 --- a/video/fixtures/profiles_tests/2160_2160_9600000.json +++ b/video/fixtures/profiles_tests/2160_2160_9600000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":9600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":9600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":474074,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1896296,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":9600000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":9600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":568888,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2275555,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":9600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_9900000.json b/video/fixtures/profiles_tests/2160_2160_9900000.json index 4326ed987..cfe88f549 100644 --- a/video/fixtures/profiles_tests/2160_2160_9900000.json +++ b/video/fixtures/profiles_tests/2160_2160_9900000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":9900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":9900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":488888,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1955555,"fps":0},{"name":"2160p0","width":2160,"height":2160,"bitrate":9900000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":586666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2346666,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":9900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_3840_14900000.json b/video/fixtures/profiles_tests/2160_3840_14900000.json index ef216e237..1b21c7c0e 100644 --- a/video/fixtures/profiles_tests/2160_3840_14900000.json +++ b/video/fixtures/profiles_tests/2160_3840_14900000.json @@ -1 +1 @@ -{"Width":2160,"Height":3840,"Bitrate":14900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3840p0","width":2160,"height":3840,"bitrate":14900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":413888,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1655555,"fps":0},{"name":"3840p0","width":2160,"height":3840,"bitrate":14900000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":3840,"Bitrate":14900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":496666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1986666,"fps":0,"quality":27},{"name":"3840p0","width":2160,"height":3840,"bitrate":14900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_3840_19000000.json b/video/fixtures/profiles_tests/2160_3840_19000000.json index 02068a659..ddb94a8b1 100644 --- a/video/fixtures/profiles_tests/2160_3840_19000000.json +++ b/video/fixtures/profiles_tests/2160_3840_19000000.json @@ -1 +1 @@ -{"Width":2160,"Height":3840,"Bitrate":19000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3840p0","width":2160,"height":3840,"bitrate":19000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":527777,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2111111,"fps":0},{"name":"3840p0","width":2160,"height":3840,"bitrate":19000000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":3840,"Bitrate":19000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":633333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2533333,"fps":0,"quality":27},{"name":"3840p0","width":2160,"height":3840,"bitrate":19000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_3840_31100000.json b/video/fixtures/profiles_tests/2160_3840_31100000.json index 0d9908dce..9a132a425 100644 --- a/video/fixtures/profiles_tests/2160_3840_31100000.json +++ b/video/fixtures/profiles_tests/2160_3840_31100000.json @@ -1 +1 @@ -{"Width":2160,"Height":3840,"Bitrate":31100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3840p0","width":2160,"height":3840,"bitrate":31100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":863888,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3455555,"fps":0},{"name":"3840p0","width":2160,"height":3840,"bitrate":31100000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":3840,"Bitrate":31100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"3840p0","width":2160,"height":3840,"bitrate":31100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_3840_38000000.json b/video/fixtures/profiles_tests/2160_3840_38000000.json index e9e0185ae..b52fe158f 100644 --- a/video/fixtures/profiles_tests/2160_3840_38000000.json +++ b/video/fixtures/profiles_tests/2160_3840_38000000.json @@ -1 +1 @@ -{"Width":2160,"Height":3840,"Bitrate":38000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3840p0","width":2160,"height":3840,"bitrate":38000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3840p0","width":2160,"height":3840,"bitrate":38000000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":3840,"Bitrate":38000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"3840p0","width":2160,"height":3840,"bitrate":38000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_720_7200000.json b/video/fixtures/profiles_tests/2160_720_7200000.json index 08e06db6b..3a973d8bb 100644 --- a/video/fixtures/profiles_tests/2160_720_7200000.json +++ b/video/fixtures/profiles_tests/2160_720_7200000.json @@ -1 +1 @@ -{"Width":2160,"Height":720,"Bitrate":7200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":2160,"height":720,"bitrate":7200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":2160,"height":720,"bitrate":7200000,"fps":0}]} \ No newline at end of file +{"Width":2160,"Height":720,"Bitrate":7200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":2160,"height":720,"bitrate":7200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2210_2164_4700000.json b/video/fixtures/profiles_tests/2210_2164_4700000.json index b3be4e7e6..4e15f69bc 100644 --- a/video/fixtures/profiles_tests/2210_2164_4700000.json +++ b/video/fixtures/profiles_tests/2210_2164_4700000.json @@ -1 +1 @@ -{"Width":2210,"Height":2164,"Bitrate":4700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2164p0","width":2210,"height":2164,"bitrate":4700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":226428,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":905713,"fps":0},{"name":"2164p0","width":2210,"height":2164,"bitrate":4700000,"fps":0}]} \ No newline at end of file +{"Width":2210,"Height":2164,"Bitrate":4700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":271714,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1086856,"fps":0,"quality":27},{"name":"2164p0","width":2210,"height":2164,"bitrate":4700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2304_2304_20600000.json b/video/fixtures/profiles_tests/2304_2304_20600000.json index f62062950..6595a29e3 100644 --- a/video/fixtures/profiles_tests/2304_2304_20600000.json +++ b/video/fixtures/profiles_tests/2304_2304_20600000.json @@ -1 +1 @@ -{"Width":2304,"Height":2304,"Bitrate":20600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2304p0","width":2304,"height":2304,"bitrate":20600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":894097,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3576388,"fps":0},{"name":"2304p0","width":2304,"height":2304,"bitrate":20600000,"fps":0}]} \ No newline at end of file +{"Width":2304,"Height":2304,"Bitrate":20600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2304p0","width":2304,"height":2304,"bitrate":20600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2304_2304_49100000.json b/video/fixtures/profiles_tests/2304_2304_49100000.json index 906b31daa..cd51a5444 100644 --- a/video/fixtures/profiles_tests/2304_2304_49100000.json +++ b/video/fixtures/profiles_tests/2304_2304_49100000.json @@ -1 +1 @@ -{"Width":2304,"Height":2304,"Bitrate":49100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2304p0","width":2304,"height":2304,"bitrate":49100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2304p0","width":2304,"height":2304,"bitrate":49100000,"fps":0}]} \ No newline at end of file +{"Width":2304,"Height":2304,"Bitrate":49100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2304p0","width":2304,"height":2304,"bitrate":49100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2304_2304_92700000.json b/video/fixtures/profiles_tests/2304_2304_92700000.json index bdccab4a9..f4f8fe089 100644 --- a/video/fixtures/profiles_tests/2304_2304_92700000.json +++ b/video/fixtures/profiles_tests/2304_2304_92700000.json @@ -1 +1 @@ -{"Width":2304,"Height":2304,"Bitrate":92700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2304p0","width":2304,"height":2304,"bitrate":92700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2304p0","width":2304,"height":2304,"bitrate":92700000,"fps":0}]} \ No newline at end of file +{"Width":2304,"Height":2304,"Bitrate":92700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2304p0","width":2304,"height":2304,"bitrate":92700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2340_1612_4600000.json b/video/fixtures/profiles_tests/2340_1612_4600000.json index 703727575..00dd6cfd9 100644 --- a/video/fixtures/profiles_tests/2340_1612_4600000.json +++ b/video/fixtures/profiles_tests/2340_1612_4600000.json @@ -1 +1 @@ -{"Width":2340,"Height":1612,"Bitrate":4600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1612p0","width":2340,"height":1612,"bitrate":4600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":280969,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1123878,"fps":0},{"name":"1612p0","width":2340,"height":1612,"bitrate":4600000,"fps":0}]} \ No newline at end of file +{"Width":2340,"Height":1612,"Bitrate":4600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":337163,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1348654,"fps":0,"quality":27},{"name":"1612p0","width":2340,"height":1612,"bitrate":4600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2384_1576_5400000.json b/video/fixtures/profiles_tests/2384_1576_5400000.json index 5b5a6cbca..bb953790d 100644 --- a/video/fixtures/profiles_tests/2384_1576_5400000.json +++ b/video/fixtures/profiles_tests/2384_1576_5400000.json @@ -1 +1 @@ -{"Width":2384,"Height":1576,"Bitrate":5400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1576p0","width":2384,"height":1576,"bitrate":5400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":331141,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1324566,"fps":0},{"name":"1576p0","width":2384,"height":1576,"bitrate":5400000,"fps":0}]} \ No newline at end of file +{"Width":2384,"Height":1576,"Bitrate":5400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":397369,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1589479,"fps":0,"quality":27},{"name":"1576p0","width":2384,"height":1576,"bitrate":5400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2400_2400_9400000.json b/video/fixtures/profiles_tests/2400_2400_9400000.json index da4430433..2800f9c76 100644 --- a/video/fixtures/profiles_tests/2400_2400_9400000.json +++ b/video/fixtures/profiles_tests/2400_2400_9400000.json @@ -1 +1 @@ -{"Width":2400,"Height":2400,"Bitrate":9400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2400p0","width":2400,"height":2400,"bitrate":9400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":376000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1504000,"fps":0},{"name":"2400p0","width":2400,"height":2400,"bitrate":9400000,"fps":0}]} \ No newline at end of file +{"Width":2400,"Height":2400,"Bitrate":9400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":451200,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1804800,"fps":0,"quality":27},{"name":"2400p0","width":2400,"height":2400,"bitrate":9400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2408_3508_74700000.json b/video/fixtures/profiles_tests/2408_3508_74700000.json index 47ff130cf..d316ce240 100644 --- a/video/fixtures/profiles_tests/2408_3508_74700000.json +++ b/video/fixtures/profiles_tests/2408_3508_74700000.json @@ -1 +1 @@ -{"Width":2408,"Height":3508,"Bitrate":74700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3508p0","width":2408,"height":3508,"bitrate":74700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3508p0","width":2408,"height":3508,"bitrate":74700000,"fps":0}]} \ No newline at end of file +{"Width":2408,"Height":3508,"Bitrate":74700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"3508p0","width":2408,"height":3508,"bitrate":74700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2432_2380_10600000.json b/video/fixtures/profiles_tests/2432_2380_10600000.json index 3f8f5e55a..e2b6973fc 100644 --- a/video/fixtures/profiles_tests/2432_2380_10600000.json +++ b/video/fixtures/profiles_tests/2432_2380_10600000.json @@ -1 +1 @@ -{"Width":2432,"Height":2380,"Bitrate":10600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2380p0","width":2432,"height":2380,"bitrate":10600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":421937,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1687748,"fps":0},{"name":"2380p0","width":2432,"height":2380,"bitrate":10600000,"fps":0}]} \ No newline at end of file +{"Width":2432,"Height":2380,"Bitrate":10600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":506324,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2025298,"fps":0,"quality":27},{"name":"2380p0","width":2432,"height":2380,"bitrate":10600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2500_1400_11800000.json b/video/fixtures/profiles_tests/2500_1400_11800000.json index 4507422cc..7975f3288 100644 --- a/video/fixtures/profiles_tests/2500_1400_11800000.json +++ b/video/fixtures/profiles_tests/2500_1400_11800000.json @@ -1 +1 @@ -{"Width":2500,"Height":1400,"Bitrate":11800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1400p0","width":2500,"height":1400,"bitrate":11800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":776777,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3107108,"fps":0},{"name":"1400p0","width":2500,"height":1400,"bitrate":11800000,"fps":0}]} \ No newline at end of file +{"Width":2500,"Height":1400,"Bitrate":11800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":932132,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3728530,"fps":0,"quality":27},{"name":"1400p0","width":2500,"height":1400,"bitrate":11800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2500_2500_2300000.json b/video/fixtures/profiles_tests/2500_2500_2300000.json index 6daa86867..2813e2531 100644 --- a/video/fixtures/profiles_tests/2500_2500_2300000.json +++ b/video/fixtures/profiles_tests/2500_2500_2300000.json @@ -1 +1 @@ -{"Width":2500,"Height":2500,"Bitrate":2300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"2500p0","width":2500,"height":2500,"bitrate":2300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":84787,"fps":0},{"name":"2500p0","width":2500,"height":2500,"bitrate":2300000,"fps":0}]} \ No newline at end of file +{"Width":2500,"Height":2500,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":101744,"fps":0,"quality":27},{"name":"2500p0","width":2500,"height":2500,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2500_2500_6300000.json b/video/fixtures/profiles_tests/2500_2500_6300000.json index 1da25774f..4a779d298 100644 --- a/video/fixtures/profiles_tests/2500_2500_6300000.json +++ b/video/fixtures/profiles_tests/2500_2500_6300000.json @@ -1 +1 @@ -{"Width":2500,"Height":2500,"Bitrate":6300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2500p0","width":2500,"height":2500,"bitrate":6300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":232243,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":928972,"fps":0},{"name":"2500p0","width":2500,"height":2500,"bitrate":6300000,"fps":0}]} \ No newline at end of file +{"Width":2500,"Height":2500,"Bitrate":6300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":278691,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1114767,"fps":0,"quality":27},{"name":"2500p0","width":2500,"height":2500,"bitrate":6300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2500_2500_7200000.json b/video/fixtures/profiles_tests/2500_2500_7200000.json index c1d5f4cb8..6da8d3a82 100644 --- a/video/fixtures/profiles_tests/2500_2500_7200000.json +++ b/video/fixtures/profiles_tests/2500_2500_7200000.json @@ -1 +1 @@ -{"Width":2500,"Height":2500,"Bitrate":7200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2500p0","width":2500,"height":2500,"bitrate":7200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":265420,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1061683,"fps":0},{"name":"2500p0","width":2500,"height":2500,"bitrate":7200000,"fps":0}]} \ No newline at end of file +{"Width":2500,"Height":2500,"Bitrate":7200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":318504,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1274019,"fps":0,"quality":27},{"name":"2500p0","width":2500,"height":2500,"bitrate":7200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2500_3000_10300000.json b/video/fixtures/profiles_tests/2500_3000_10300000.json index 163618f8e..db74ad63c 100644 --- a/video/fixtures/profiles_tests/2500_3000_10300000.json +++ b/video/fixtures/profiles_tests/2500_3000_10300000.json @@ -1 +1 @@ -{"Width":2500,"Height":3000,"Bitrate":10300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3000p0","width":2500,"height":3000,"bitrate":10300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":316416,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1265664,"fps":0},{"name":"3000p0","width":2500,"height":3000,"bitrate":10300000,"fps":0}]} \ No newline at end of file +{"Width":2500,"Height":3000,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":379699,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1518796,"fps":0,"quality":27},{"name":"3000p0","width":2500,"height":3000,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/250_442_400000.json b/video/fixtures/profiles_tests/250_442_400000.json index a400ba8da..864e4619b 100644 --- a/video/fixtures/profiles_tests/250_442_400000.json +++ b/video/fixtures/profiles_tests/250_442_400000.json @@ -1 +1 @@ -{"Width":250,"Height":442,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":250,"height":442,"bitrate":200000,"fps":0},{"name":"442p0","width":250,"height":442,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":250,"height":442,"bitrate":200000,"fps":0},{"name":"442p0","width":250,"height":442,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":250,"Height":442,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":250,"height":442,"bitrate":200000,"fps":0,"quality":27},{"name":"442p0","width":250,"height":442,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2560_1440_12200000.json b/video/fixtures/profiles_tests/2560_1440_12200000.json index f684cd5c0..62a4b86f8 100644 --- a/video/fixtures/profiles_tests/2560_1440_12200000.json +++ b/video/fixtures/profiles_tests/2560_1440_12200000.json @@ -1 +1 @@ -{"Width":2560,"Height":1440,"Bitrate":12200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1440p0","width":2560,"height":1440,"bitrate":12200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":762500,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3050000,"fps":0},{"name":"1440p0","width":2560,"height":1440,"bitrate":12200000,"fps":0}]} \ No newline at end of file +{"Width":2560,"Height":1440,"Bitrate":12200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":915000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3660000,"fps":0,"quality":27},{"name":"1440p0","width":2560,"height":1440,"bitrate":12200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2560_1440_13800000.json b/video/fixtures/profiles_tests/2560_1440_13800000.json index 781f94255..ef04b25a4 100644 --- a/video/fixtures/profiles_tests/2560_1440_13800000.json +++ b/video/fixtures/profiles_tests/2560_1440_13800000.json @@ -1 +1 @@ -{"Width":2560,"Height":1440,"Bitrate":13800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1440p0","width":2560,"height":1440,"bitrate":13800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":862500,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3450000,"fps":0},{"name":"1440p0","width":2560,"height":1440,"bitrate":13800000,"fps":0}]} \ No newline at end of file +{"Width":2560,"Height":1440,"Bitrate":13800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":2560,"height":1440,"bitrate":13800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2560_1440_1500000.json b/video/fixtures/profiles_tests/2560_1440_1500000.json index 0061061ee..f13e7859e 100644 --- a/video/fixtures/profiles_tests/2560_1440_1500000.json +++ b/video/fixtures/profiles_tests/2560_1440_1500000.json @@ -1 +1 @@ -{"Width":2560,"Height":1440,"Bitrate":1500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1440p0","width":2560,"height":1440,"bitrate":1500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":93750,"fps":0},{"name":"1440p0","width":2560,"height":1440,"bitrate":1500000,"fps":0}]} \ No newline at end of file +{"Width":2560,"Height":1440,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":112500,"fps":0,"quality":27},{"name":"1440p0","width":2560,"height":1440,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/264_480_700000.json b/video/fixtures/profiles_tests/264_480_700000.json index f788a2668..8855b6b94 100644 --- a/video/fixtures/profiles_tests/264_480_700000.json +++ b/video/fixtures/profiles_tests/264_480_700000.json @@ -1 +1 @@ -{"Width":264,"Height":480,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":264,"height":480,"bitrate":350000,"fps":0},{"name":"480p0","width":264,"height":480,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":264,"height":480,"bitrate":350000,"fps":0},{"name":"480p0","width":264,"height":480,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":264,"Height":480,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":264,"height":480,"bitrate":350000,"fps":0,"quality":27},{"name":"480p0","width":264,"height":480,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2720_1530_10300000.json b/video/fixtures/profiles_tests/2720_1530_10300000.json index 124b5a9ea..1d9ec4383 100644 --- a/video/fixtures/profiles_tests/2720_1530_10300000.json +++ b/video/fixtures/profiles_tests/2720_1530_10300000.json @@ -1 +1 @@ -{"Width":2720,"Height":1530,"Bitrate":10300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1530p0","width":2720,"height":1530,"bitrate":10300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":570242,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2280968,"fps":0},{"name":"1530p0","width":2720,"height":1530,"bitrate":10300000,"fps":0}]} \ No newline at end of file +{"Width":2720,"Height":1530,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":684290,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2737162,"fps":0,"quality":27},{"name":"1530p0","width":2720,"height":1530,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/280_580_200000.json b/video/fixtures/profiles_tests/280_580_200000.json index 32dcca335..565d03f34 100644 --- a/video/fixtures/profiles_tests/280_580_200000.json +++ b/video/fixtures/profiles_tests/280_580_200000.json @@ -1 +1 @@ -{"Width":280,"Height":580,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":280,"height":580,"bitrate":100000,"fps":0},{"name":"580p0","width":280,"height":580,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":280,"height":580,"bitrate":100000,"fps":0},{"name":"580p0","width":280,"height":580,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":280,"Height":580,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":280,"height":580,"bitrate":100000,"fps":0,"quality":27},{"name":"580p0","width":280,"height":580,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2880_2880_1500000.json b/video/fixtures/profiles_tests/2880_2880_1500000.json index 66efaa148..43b32e6b2 100644 --- a/video/fixtures/profiles_tests/2880_2880_1500000.json +++ b/video/fixtures/profiles_tests/2880_2880_1500000.json @@ -1 +1 @@ -{"Width":2880,"Height":2880,"Bitrate":1500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"2880p0","width":2880,"height":2880,"bitrate":1500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":41666,"fps":0},{"name":"2880p0","width":2880,"height":2880,"bitrate":1500000,"fps":0}]} \ No newline at end of file +{"Width":2880,"Height":2880,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":50000,"fps":0,"quality":27},{"name":"2880p0","width":2880,"height":2880,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3000_1688_81700000.json b/video/fixtures/profiles_tests/3000_1688_81700000.json index ac4fde292..bde452e9a 100644 --- a/video/fixtures/profiles_tests/3000_1688_81700000.json +++ b/video/fixtures/profiles_tests/3000_1688_81700000.json @@ -1 +1 @@ -{"Width":3000,"Height":1688,"Bitrate":81700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1688p0","width":3000,"height":1688,"bitrate":81700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1688p0","width":3000,"height":1688,"bitrate":81700000,"fps":0}]} \ No newline at end of file +{"Width":3000,"Height":1688,"Bitrate":81700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1688p0","width":3000,"height":1688,"bitrate":81700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3000_3000_5300000.json b/video/fixtures/profiles_tests/3000_3000_5300000.json index 5e1c79ebe..9cf3b0d52 100644 --- a/video/fixtures/profiles_tests/3000_3000_5300000.json +++ b/video/fixtures/profiles_tests/3000_3000_5300000.json @@ -1 +1 @@ -{"Width":3000,"Height":3000,"Bitrate":5300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3000p0","width":3000,"height":3000,"bitrate":5300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":135680,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":542720,"fps":0},{"name":"3000p0","width":3000,"height":3000,"bitrate":5300000,"fps":0}]} \ No newline at end of file +{"Width":3000,"Height":3000,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":162816,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":651264,"fps":0,"quality":27},{"name":"3000p0","width":3000,"height":3000,"bitrate":5300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/300_270_100000.json b/video/fixtures/profiles_tests/300_270_100000.json index fbfb132f7..33d988de9 100644 --- a/video/fixtures/profiles_tests/300_270_100000.json +++ b/video/fixtures/profiles_tests/300_270_100000.json @@ -1 +1 @@ -{"Width":300,"Height":270,"Bitrate":100000,"ExpectedOutput":[{"name":"low-bitrate","width":300,"height":270,"bitrate":50000,"fps":0},{"name":"270p0","width":300,"height":270,"bitrate":100000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":300,"height":270,"bitrate":50000,"fps":0},{"name":"270p0","width":300,"height":270,"bitrate":100000,"fps":0}]} \ No newline at end of file +{"Width":300,"Height":270,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":300,"height":270,"bitrate":50000,"fps":0,"quality":27},{"name":"270p0","width":300,"height":270,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/300_428_300000.json b/video/fixtures/profiles_tests/300_428_300000.json index d8fb9041c..e3bd897e9 100644 --- a/video/fixtures/profiles_tests/300_428_300000.json +++ b/video/fixtures/profiles_tests/300_428_300000.json @@ -1 +1 @@ -{"Width":300,"Height":428,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":300,"height":428,"bitrate":150000,"fps":0},{"name":"428p0","width":300,"height":428,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":300,"height":428,"bitrate":150000,"fps":0},{"name":"428p0","width":300,"height":428,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":300,"Height":428,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":300,"height":428,"bitrate":150000,"fps":0,"quality":27},{"name":"428p0","width":300,"height":428,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/320_240_0.json b/video/fixtures/profiles_tests/320_240_0.json index 26512482b..610ddabe3 100644 --- a/video/fixtures/profiles_tests/320_240_0.json +++ b/video/fixtures/profiles_tests/320_240_0.json @@ -1 +1 @@ -{"Width":320,"Height":240,"Bitrate":0,"ExpectedOutput":[{"name":"low-bitrate","width":320,"height":240,"bitrate":5000,"fps":0},{"name":"240p0","width":320,"height":240,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":320,"height":240,"bitrate":5000,"fps":0},{"name":"240p0","width":320,"height":240,"fps":0}]} \ No newline at end of file +{"Width":320,"Height":240,"Bitrate":0,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":240,"bitrate":5000,"fps":0,"quality":27},{"name":"240p0","width":320,"height":240,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/320_240_300000.json b/video/fixtures/profiles_tests/320_240_300000.json index ecaeb081f..967b89b9a 100644 --- a/video/fixtures/profiles_tests/320_240_300000.json +++ b/video/fixtures/profiles_tests/320_240_300000.json @@ -1 +1 @@ -{"Width":320,"Height":240,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":320,"height":240,"bitrate":150000,"fps":0},{"name":"240p0","width":320,"height":240,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":320,"height":240,"bitrate":150000,"fps":0},{"name":"240p0","width":320,"height":240,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":320,"Height":240,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":240,"bitrate":150000,"fps":0,"quality":27},{"name":"240p0","width":320,"height":240,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/320_320_300000.json b/video/fixtures/profiles_tests/320_320_300000.json index 5caea5955..40902c77b 100644 --- a/video/fixtures/profiles_tests/320_320_300000.json +++ b/video/fixtures/profiles_tests/320_320_300000.json @@ -1 +1 @@ -{"Width":320,"Height":320,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":320,"height":320,"bitrate":150000,"fps":0},{"name":"320p0","width":320,"height":320,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":320,"height":320,"bitrate":150000,"fps":0},{"name":"320p0","width":320,"height":320,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":320,"Height":320,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":320,"bitrate":150000,"fps":0,"quality":27},{"name":"320p0","width":320,"height":320,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/320_400_200000.json b/video/fixtures/profiles_tests/320_400_200000.json index d11d282ca..e79316b59 100644 --- a/video/fixtures/profiles_tests/320_400_200000.json +++ b/video/fixtures/profiles_tests/320_400_200000.json @@ -1 +1 @@ -{"Width":320,"Height":400,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":320,"height":400,"bitrate":100000,"fps":0},{"name":"400p0","width":320,"height":400,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":320,"height":400,"bitrate":100000,"fps":0},{"name":"400p0","width":320,"height":400,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":320,"Height":400,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":400,"bitrate":100000,"fps":0,"quality":27},{"name":"400p0","width":320,"height":400,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/320_432_700000.json b/video/fixtures/profiles_tests/320_432_700000.json index b62d5b495..a1be98348 100644 --- a/video/fixtures/profiles_tests/320_432_700000.json +++ b/video/fixtures/profiles_tests/320_432_700000.json @@ -1 +1 @@ -{"Width":320,"Height":432,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":320,"height":432,"bitrate":350000,"fps":0},{"name":"432p0","width":320,"height":432,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":320,"height":432,"bitrate":350000,"fps":0},{"name":"432p0","width":320,"height":432,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":320,"Height":432,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":432,"bitrate":350000,"fps":0,"quality":27},{"name":"432p0","width":320,"height":432,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3434_3454_32100000.json b/video/fixtures/profiles_tests/3434_3454_32100000.json index 5b24fd37e..3ce3b1189 100644 --- a/video/fixtures/profiles_tests/3434_3454_32100000.json +++ b/video/fixtures/profiles_tests/3434_3454_32100000.json @@ -1 +1 @@ -{"Width":3434,"Height":3454,"Bitrate":32100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3454p0","width":3434,"height":3454,"bitrate":32100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":623540,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2494163,"fps":0},{"name":"3454p0","width":3434,"height":3454,"bitrate":32100000,"fps":0}]} \ No newline at end of file +{"Width":3434,"Height":3454,"Bitrate":32100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":748248,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2992995,"fps":0,"quality":27},{"name":"3454p0","width":3434,"height":3454,"bitrate":32100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/350_480_600000.json b/video/fixtures/profiles_tests/350_480_600000.json index 91048b9de..891cb87df 100644 --- a/video/fixtures/profiles_tests/350_480_600000.json +++ b/video/fixtures/profiles_tests/350_480_600000.json @@ -1 +1 @@ -{"Width":350,"Height":480,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":350,"height":480,"bitrate":300000,"fps":0},{"name":"480p0","width":350,"height":480,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":350,"height":480,"bitrate":300000,"fps":0},{"name":"480p0","width":350,"height":480,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":350,"Height":480,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":350,"height":480,"bitrate":300000,"fps":0,"quality":27},{"name":"480p0","width":350,"height":480,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3520_4160_24500000.json b/video/fixtures/profiles_tests/3520_4160_24500000.json index d4419d7b3..4b7916e22 100644 --- a/video/fixtures/profiles_tests/3520_4160_24500000.json +++ b/video/fixtures/profiles_tests/3520_4160_24500000.json @@ -1 +1 @@ -{"Width":3520,"Height":4160,"Bitrate":24500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"4160p0","width":3520,"height":4160,"bitrate":24500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":385489,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1541958,"fps":0},{"name":"4160p0","width":3520,"height":4160,"bitrate":24500000,"fps":0}]} \ No newline at end of file +{"Width":3520,"Height":4160,"Bitrate":24500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":462587,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1850349,"fps":0,"quality":27},{"name":"4160p0","width":3520,"height":4160,"bitrate":24500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/352_640_1100000.json b/video/fixtures/profiles_tests/352_640_1100000.json index 4d28f5dfc..0aaa2984d 100644 --- a/video/fixtures/profiles_tests/352_640_1100000.json +++ b/video/fixtures/profiles_tests/352_640_1100000.json @@ -1 +1 @@ -{"Width":352,"Height":640,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"640p0","width":352,"height":640,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"640p0","width":352,"height":640,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":352,"Height":640,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":352,"height":640,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/352_640_200000.json b/video/fixtures/profiles_tests/352_640_200000.json index bcc4b7681..fb2b55264 100644 --- a/video/fixtures/profiles_tests/352_640_200000.json +++ b/video/fixtures/profiles_tests/352_640_200000.json @@ -1 +1 @@ -{"Width":352,"Height":640,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":352,"height":640,"bitrate":100000,"fps":0},{"name":"640p0","width":352,"height":640,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":352,"height":640,"bitrate":100000,"fps":0},{"name":"640p0","width":352,"height":640,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":352,"Height":640,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":352,"height":640,"bitrate":100000,"fps":0,"quality":27},{"name":"640p0","width":352,"height":640,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/352_640_900000.json b/video/fixtures/profiles_tests/352_640_900000.json index face3843b..1c5808fd3 100644 --- a/video/fixtures/profiles_tests/352_640_900000.json +++ b/video/fixtures/profiles_tests/352_640_900000.json @@ -1 +1 @@ -{"Width":352,"Height":640,"Bitrate":900000,"ExpectedOutput":[{"name":"low-bitrate","width":352,"height":640,"bitrate":450000,"fps":0},{"name":"640p0","width":352,"height":640,"bitrate":900000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":352,"height":640,"bitrate":450000,"fps":0},{"name":"640p0","width":352,"height":640,"bitrate":900000,"fps":0}]} \ No newline at end of file +{"Width":352,"Height":640,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":352,"height":640,"bitrate":450000,"fps":0,"quality":27},{"name":"640p0","width":352,"height":640,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/360_360_200000.json b/video/fixtures/profiles_tests/360_360_200000.json index 5f32f4d04..a8cc2f51e 100644 --- a/video/fixtures/profiles_tests/360_360_200000.json +++ b/video/fixtures/profiles_tests/360_360_200000.json @@ -1 +1 @@ -{"Width":360,"Height":360,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":360,"height":360,"bitrate":100000,"fps":0},{"name":"360p0","width":360,"height":360,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":360,"height":360,"bitrate":100000,"fps":0},{"name":"360p0","width":360,"height":360,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":360,"Height":360,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":360,"height":360,"bitrate":100000,"fps":0,"quality":27},{"name":"360p0","width":360,"height":360,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/360_558_1100000.json b/video/fixtures/profiles_tests/360_558_1100000.json index afb4e37e5..9518ac8bb 100644 --- a/video/fixtures/profiles_tests/360_558_1100000.json +++ b/video/fixtures/profiles_tests/360_558_1100000.json @@ -1 +1 @@ -{"Width":360,"Height":558,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"558p0","width":360,"height":558,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"558p0","width":360,"height":558,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":360,"Height":558,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"558p0","width":360,"height":558,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/360_640_2500000.json b/video/fixtures/profiles_tests/360_640_2500000.json index 39d0b6df6..693b3f7d4 100644 --- a/video/fixtures/profiles_tests/360_640_2500000.json +++ b/video/fixtures/profiles_tests/360_640_2500000.json @@ -1 +1 @@ -{"Width":360,"Height":640,"Bitrate":2500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"640p0","width":360,"height":640,"bitrate":2500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"640p0","width":360,"height":640,"bitrate":2500000,"fps":0}]} \ No newline at end of file +{"Width":360,"Height":640,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":360,"height":640,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/360_640_500000.json b/video/fixtures/profiles_tests/360_640_500000.json index 7bab1c7c8..80a32dc46 100644 --- a/video/fixtures/profiles_tests/360_640_500000.json +++ b/video/fixtures/profiles_tests/360_640_500000.json @@ -1 +1 @@ -{"Width":360,"Height":640,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":360,"height":640,"bitrate":250000,"fps":0},{"name":"640p0","width":360,"height":640,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":360,"height":640,"bitrate":250000,"fps":0},{"name":"640p0","width":360,"height":640,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":360,"Height":640,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":360,"height":640,"bitrate":250000,"fps":0,"quality":27},{"name":"640p0","width":360,"height":640,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/368_600_1200000.json b/video/fixtures/profiles_tests/368_600_1200000.json index ed0608d9c..fc98477c0 100644 --- a/video/fixtures/profiles_tests/368_600_1200000.json +++ b/video/fixtures/profiles_tests/368_600_1200000.json @@ -1 +1 @@ -{"Width":368,"Height":600,"Bitrate":1200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"600p0","width":368,"height":600,"bitrate":1200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"600p0","width":368,"height":600,"bitrate":1200000,"fps":0}]} \ No newline at end of file +{"Width":368,"Height":600,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":368,"height":600,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/368_640_500000.json b/video/fixtures/profiles_tests/368_640_500000.json index dfd767329..eee123dbf 100644 --- a/video/fixtures/profiles_tests/368_640_500000.json +++ b/video/fixtures/profiles_tests/368_640_500000.json @@ -1 +1 @@ -{"Width":368,"Height":640,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":250000,"fps":0},{"name":"640p0","width":368,"height":640,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":250000,"fps":0},{"name":"640p0","width":368,"height":640,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":368,"Height":640,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":250000,"fps":0,"quality":27},{"name":"640p0","width":368,"height":640,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/368_640_600000.json b/video/fixtures/profiles_tests/368_640_600000.json index 51d1167d8..4ac67e90f 100644 --- a/video/fixtures/profiles_tests/368_640_600000.json +++ b/video/fixtures/profiles_tests/368_640_600000.json @@ -1 +1 @@ -{"Width":368,"Height":640,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":300000,"fps":0},{"name":"640p0","width":368,"height":640,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":300000,"fps":0},{"name":"640p0","width":368,"height":640,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":368,"Height":640,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":300000,"fps":0,"quality":27},{"name":"640p0","width":368,"height":640,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/368_640_900000.json b/video/fixtures/profiles_tests/368_640_900000.json index 99aa012e6..2f3d80578 100644 --- a/video/fixtures/profiles_tests/368_640_900000.json +++ b/video/fixtures/profiles_tests/368_640_900000.json @@ -1 +1 @@ -{"Width":368,"Height":640,"Bitrate":900000,"ExpectedOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":450000,"fps":0},{"name":"640p0","width":368,"height":640,"bitrate":900000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":450000,"fps":0},{"name":"640p0","width":368,"height":640,"bitrate":900000,"fps":0}]} \ No newline at end of file +{"Width":368,"Height":640,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":450000,"fps":0,"quality":27},{"name":"640p0","width":368,"height":640,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/368_656_1400000.json b/video/fixtures/profiles_tests/368_656_1400000.json index fc98ef13d..52f3003f4 100644 --- a/video/fixtures/profiles_tests/368_656_1400000.json +++ b/video/fixtures/profiles_tests/368_656_1400000.json @@ -1 +1 @@ -{"Width":368,"Height":656,"Bitrate":1400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"656p0","width":368,"height":656,"bitrate":1400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"656p0","width":368,"height":656,"bitrate":1400000,"fps":0}]} \ No newline at end of file +{"Width":368,"Height":656,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"656p0","width":368,"height":656,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/380_640_400000.json b/video/fixtures/profiles_tests/380_640_400000.json index f4b236959..57db55151 100644 --- a/video/fixtures/profiles_tests/380_640_400000.json +++ b/video/fixtures/profiles_tests/380_640_400000.json @@ -1 +1 @@ -{"Width":380,"Height":640,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":380,"height":640,"bitrate":200000,"fps":0},{"name":"640p0","width":380,"height":640,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":380,"height":640,"bitrate":200000,"fps":0},{"name":"640p0","width":380,"height":640,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":380,"Height":640,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":380,"height":640,"bitrate":200000,"fps":0,"quality":27},{"name":"640p0","width":380,"height":640,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/382_690_1200000.json b/video/fixtures/profiles_tests/382_690_1200000.json index 01f0b9ed0..596e37de6 100644 --- a/video/fixtures/profiles_tests/382_690_1200000.json +++ b/video/fixtures/profiles_tests/382_690_1200000.json @@ -1 +1 @@ -{"Width":382,"Height":690,"Bitrate":1200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"690p0","width":382,"height":690,"bitrate":1200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"690p0","width":382,"height":690,"bitrate":1200000,"fps":0}]} \ No newline at end of file +{"Width":382,"Height":690,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"690p0","width":382,"height":690,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_1644_7100000.json b/video/fixtures/profiles_tests/3840_1644_7100000.json index 8c25ddd5b..8b246c1be 100644 --- a/video/fixtures/profiles_tests/3840_1644_7100000.json +++ b/video/fixtures/profiles_tests/3840_1644_7100000.json @@ -1 +1 @@ -{"Width":3840,"Height":1644,"Bitrate":7100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1644p0","width":3840,"height":1644,"bitrate":7100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":259124,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1036496,"fps":0},{"name":"1644p0","width":3840,"height":1644,"bitrate":7100000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":1644,"Bitrate":7100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":310948,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1243795,"fps":0,"quality":27},{"name":"1644p0","width":3840,"height":1644,"bitrate":7100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_10300000.json b/video/fixtures/profiles_tests/3840_2160_10300000.json index 32e0a1bb7..50ff0bd76 100644 --- a/video/fixtures/profiles_tests/3840_2160_10300000.json +++ b/video/fixtures/profiles_tests/3840_2160_10300000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":10300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":10300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":286111,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1144444,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":10300000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":343333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1373333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_107800000.json b/video/fixtures/profiles_tests/3840_2160_107800000.json index 1c7e48c66..e8648f4e8 100644 --- a/video/fixtures/profiles_tests/3840_2160_107800000.json +++ b/video/fixtures/profiles_tests/3840_2160_107800000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":107800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":107800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":107800000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":107800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":107800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_18300000.json b/video/fixtures/profiles_tests/3840_2160_18300000.json index 7d7f9998c..a4ac6ab1a 100644 --- a/video/fixtures/profiles_tests/3840_2160_18300000.json +++ b/video/fixtures/profiles_tests/3840_2160_18300000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":18300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":18300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":508333,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2033333,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":18300000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":18300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":610000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2440000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":18300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_20000000.json b/video/fixtures/profiles_tests/3840_2160_20000000.json index 224aa86c7..45c2a231b 100644 --- a/video/fixtures/profiles_tests/3840_2160_20000000.json +++ b/video/fixtures/profiles_tests/3840_2160_20000000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":20000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":20000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":555555,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2222222,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":20000000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":20000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":666666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2666666,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":20000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_20200000.json b/video/fixtures/profiles_tests/3840_2160_20200000.json index a6bed7841..97ba65958 100644 --- a/video/fixtures/profiles_tests/3840_2160_20200000.json +++ b/video/fixtures/profiles_tests/3840_2160_20200000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":20200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":20200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":561111,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2244444,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":20200000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":20200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":673333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2693333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":20200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_20700000.json b/video/fixtures/profiles_tests/3840_2160_20700000.json index 87c413316..2f25984a5 100644 --- a/video/fixtures/profiles_tests/3840_2160_20700000.json +++ b/video/fixtures/profiles_tests/3840_2160_20700000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":20700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":20700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":575000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2300000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":20700000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":20700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":690000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2760000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":20700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_21700000.json b/video/fixtures/profiles_tests/3840_2160_21700000.json index 0dbd4440a..90e6136ea 100644 --- a/video/fixtures/profiles_tests/3840_2160_21700000.json +++ b/video/fixtures/profiles_tests/3840_2160_21700000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":21700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":21700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":602777,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2411111,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":21700000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":21700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":723333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2893333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":21700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_23200000.json b/video/fixtures/profiles_tests/3840_2160_23200000.json index 659bab968..c9c2844b6 100644 --- a/video/fixtures/profiles_tests/3840_2160_23200000.json +++ b/video/fixtures/profiles_tests/3840_2160_23200000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":23200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":23200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":644444,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2577777,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":23200000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":23200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":773333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3093333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":23200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_23300000.json b/video/fixtures/profiles_tests/3840_2160_23300000.json index cb9c722cc..b58c7fe3b 100644 --- a/video/fixtures/profiles_tests/3840_2160_23300000.json +++ b/video/fixtures/profiles_tests/3840_2160_23300000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":23300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":23300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":647222,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2588888,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":23300000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":23300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":776666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3106666,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":23300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_24300000.json b/video/fixtures/profiles_tests/3840_2160_24300000.json index 8326b124e..3b0d38963 100644 --- a/video/fixtures/profiles_tests/3840_2160_24300000.json +++ b/video/fixtures/profiles_tests/3840_2160_24300000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":24300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":24300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":675000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2700000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":24300000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":24300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":810000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3240000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":24300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_24400000.json b/video/fixtures/profiles_tests/3840_2160_24400000.json index 633b9a5bc..ada1e6702 100644 --- a/video/fixtures/profiles_tests/3840_2160_24400000.json +++ b/video/fixtures/profiles_tests/3840_2160_24400000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":24400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":24400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":677777,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2711111,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":24400000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":24400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":813333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3253333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":24400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_24600000.json b/video/fixtures/profiles_tests/3840_2160_24600000.json index 004575b98..0dc5174ea 100644 --- a/video/fixtures/profiles_tests/3840_2160_24600000.json +++ b/video/fixtures/profiles_tests/3840_2160_24600000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":24600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":24600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":683333,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2733333,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":24600000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":24600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":820000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3280000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":24600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_26900000.json b/video/fixtures/profiles_tests/3840_2160_26900000.json index 6b8a7bd5d..36e41ea66 100644 --- a/video/fixtures/profiles_tests/3840_2160_26900000.json +++ b/video/fixtures/profiles_tests/3840_2160_26900000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":26900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":26900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":747222,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2988888,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":26900000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":26900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":896666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3586666,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":26900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_29200000.json b/video/fixtures/profiles_tests/3840_2160_29200000.json index 5eac2e51f..a26afbd94 100644 --- a/video/fixtures/profiles_tests/3840_2160_29200000.json +++ b/video/fixtures/profiles_tests/3840_2160_29200000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":29200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":29200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":811111,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":3244444,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":29200000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":29200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":973333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3893333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":29200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_37400000.json b/video/fixtures/profiles_tests/3840_2160_37400000.json index 708b92e97..8527c3e2a 100644 --- a/video/fixtures/profiles_tests/3840_2160_37400000.json +++ b/video/fixtures/profiles_tests/3840_2160_37400000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":37400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":37400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":37400000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":37400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":37400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_37700000.json b/video/fixtures/profiles_tests/3840_2160_37700000.json index edbec874e..cf2f1780d 100644 --- a/video/fixtures/profiles_tests/3840_2160_37700000.json +++ b/video/fixtures/profiles_tests/3840_2160_37700000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":37700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":37700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":37700000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":37700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":37700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_500000.json b/video/fixtures/profiles_tests/3840_2160_500000.json index 9da7ad324..55ace561f 100644 --- a/video/fixtures/profiles_tests/3840_2160_500000.json +++ b/video/fixtures/profiles_tests/3840_2160_500000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":3840,"height":2160,"bitrate":250000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":3840,"height":2160,"bitrate":250000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":3840,"height":2160,"bitrate":250000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_53000000.json b/video/fixtures/profiles_tests/3840_2160_53000000.json index df2fc3b7b..7fad362c9 100644 --- a/video/fixtures/profiles_tests/3840_2160_53000000.json +++ b/video/fixtures/profiles_tests/3840_2160_53000000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":53000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":53000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":53000000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":53000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":53000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_5600000.json b/video/fixtures/profiles_tests/3840_2160_5600000.json index 9c282740f..572a715db 100644 --- a/video/fixtures/profiles_tests/3840_2160_5600000.json +++ b/video/fixtures/profiles_tests/3840_2160_5600000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":5600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":5600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":155555,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":622222,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":5600000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":5600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":186666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":746666,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":5600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_56300000.json b/video/fixtures/profiles_tests/3840_2160_56300000.json index 8a63ccb6a..6a3ac86ed 100644 --- a/video/fixtures/profiles_tests/3840_2160_56300000.json +++ b/video/fixtures/profiles_tests/3840_2160_56300000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":56300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":56300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":56300000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":56300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":56300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_59100000.json b/video/fixtures/profiles_tests/3840_2160_59100000.json index a59b6a3ea..5f997d95f 100644 --- a/video/fixtures/profiles_tests/3840_2160_59100000.json +++ b/video/fixtures/profiles_tests/3840_2160_59100000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":59100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":59100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":59100000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":59100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":59100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_59800000.json b/video/fixtures/profiles_tests/3840_2160_59800000.json index fa6172c8e..adf4932df 100644 --- a/video/fixtures/profiles_tests/3840_2160_59800000.json +++ b/video/fixtures/profiles_tests/3840_2160_59800000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":59800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":59800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":59800000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":59800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":59800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_62600000.json b/video/fixtures/profiles_tests/3840_2160_62600000.json index dc70000a9..6ee42b112 100644 --- a/video/fixtures/profiles_tests/3840_2160_62600000.json +++ b/video/fixtures/profiles_tests/3840_2160_62600000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":62600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":62600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":62600000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":62600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":62600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_6400000.json b/video/fixtures/profiles_tests/3840_2160_6400000.json index 697ce6ca4..2ed067c98 100644 --- a/video/fixtures/profiles_tests/3840_2160_6400000.json +++ b/video/fixtures/profiles_tests/3840_2160_6400000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":6400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":6400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":177777,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":711111,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":6400000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":6400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":213333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":853333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":6400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_79200000.json b/video/fixtures/profiles_tests/3840_2160_79200000.json index 696dcaea6..b39ff335a 100644 --- a/video/fixtures/profiles_tests/3840_2160_79200000.json +++ b/video/fixtures/profiles_tests/3840_2160_79200000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":79200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":79200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":79200000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":79200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":79200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_79800000.json b/video/fixtures/profiles_tests/3840_2160_79800000.json index 963d2ccdb..6d1460d75 100644 --- a/video/fixtures/profiles_tests/3840_2160_79800000.json +++ b/video/fixtures/profiles_tests/3840_2160_79800000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":79800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":79800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":79800000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":79800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":79800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_8800000.json b/video/fixtures/profiles_tests/3840_2160_8800000.json index 8de2593fb..699ac6c7c 100644 --- a/video/fixtures/profiles_tests/3840_2160_8800000.json +++ b/video/fixtures/profiles_tests/3840_2160_8800000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":8800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":8800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":244444,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":977777,"fps":0},{"name":"2160p0","width":3840,"height":2160,"bitrate":8800000,"fps":0}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":8800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":293333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1173333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":8800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/4000_4000_10300000.json b/video/fixtures/profiles_tests/4000_4000_10300000.json index 4d7681463..5b84f7c4e 100644 --- a/video/fixtures/profiles_tests/4000_4000_10300000.json +++ b/video/fixtures/profiles_tests/4000_4000_10300000.json @@ -1 +1 @@ -{"Width":4000,"Height":4000,"Bitrate":10300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"4000p0","width":4000,"height":4000,"bitrate":10300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":148320,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":593280,"fps":0},{"name":"4000p0","width":4000,"height":4000,"bitrate":10300000,"fps":0}]} \ No newline at end of file +{"Width":4000,"Height":4000,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":177984,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":711936,"fps":0,"quality":27},{"name":"4000p0","width":4000,"height":4000,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/400_224_100000.json b/video/fixtures/profiles_tests/400_224_100000.json index 053dcfa6c..eb0f08b4a 100644 --- a/video/fixtures/profiles_tests/400_224_100000.json +++ b/video/fixtures/profiles_tests/400_224_100000.json @@ -1 +1 @@ -{"Width":400,"Height":224,"Bitrate":100000,"ExpectedOutput":[{"name":"low-bitrate","width":400,"height":224,"bitrate":50000,"fps":0},{"name":"224p0","width":400,"height":224,"bitrate":100000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":400,"height":224,"bitrate":50000,"fps":0},{"name":"224p0","width":400,"height":224,"bitrate":100000,"fps":0}]} \ No newline at end of file +{"Width":400,"Height":224,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":400,"height":224,"bitrate":50000,"fps":0,"quality":27},{"name":"224p0","width":400,"height":224,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/400_400_3500000.json b/video/fixtures/profiles_tests/400_400_3500000.json index d7e0ffdc3..7684c952e 100644 --- a/video/fixtures/profiles_tests/400_400_3500000.json +++ b/video/fixtures/profiles_tests/400_400_3500000.json @@ -1 +1 @@ -{"Width":400,"Height":400,"Bitrate":3500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"400p0","width":400,"height":400,"bitrate":3500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"400p0","width":400,"height":400,"bitrate":3500000,"fps":0}]} \ No newline at end of file +{"Width":400,"Height":400,"Bitrate":3500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"400p0","width":400,"height":400,"bitrate":3500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/400_880_900000.json b/video/fixtures/profiles_tests/400_880_900000.json index 61023f885..0427dcd05 100644 --- a/video/fixtures/profiles_tests/400_880_900000.json +++ b/video/fixtures/profiles_tests/400_880_900000.json @@ -1 +1 @@ -{"Width":400,"Height":880,"Bitrate":900000,"ExpectedOutput":[{"name":"low-bitrate","width":400,"height":880,"bitrate":450000,"fps":0},{"name":"880p0","width":400,"height":880,"bitrate":900000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":400,"height":880,"bitrate":450000,"fps":0},{"name":"880p0","width":400,"height":880,"bitrate":900000,"fps":0}]} \ No newline at end of file +{"Width":400,"Height":880,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":400,"height":880,"bitrate":450000,"fps":0,"quality":27},{"name":"880p0","width":400,"height":880,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/4096_2160_24400000.json b/video/fixtures/profiles_tests/4096_2160_24400000.json index 8fe2636ba..73e8d3c5e 100644 --- a/video/fixtures/profiles_tests/4096_2160_24400000.json +++ b/video/fixtures/profiles_tests/4096_2160_24400000.json @@ -1 +1 @@ -{"Width":4096,"Height":2160,"Bitrate":24400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"2160p0","width":4096,"height":2160,"bitrate":24400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":635416,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":2541666,"fps":0},{"name":"2160p0","width":4096,"height":2160,"bitrate":24400000,"fps":0}]} \ No newline at end of file +{"Width":4096,"Height":2160,"Bitrate":24400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":762500,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3050000,"fps":0,"quality":27},{"name":"2160p0","width":4096,"height":2160,"bitrate":24400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/4096_4096_23000000.json b/video/fixtures/profiles_tests/4096_4096_23000000.json index 48d53e4b0..c2ca5095b 100644 --- a/video/fixtures/profiles_tests/4096_4096_23000000.json +++ b/video/fixtures/profiles_tests/4096_4096_23000000.json @@ -1 +1 @@ -{"Width":4096,"Height":4096,"Bitrate":23000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"4096p0","width":4096,"height":4096,"bitrate":23000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":315856,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":1263427,"fps":0},{"name":"4096p0","width":4096,"height":4096,"bitrate":23000000,"fps":0}]} \ No newline at end of file +{"Width":4096,"Height":4096,"Bitrate":23000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":379028,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1516113,"fps":0,"quality":27},{"name":"4096p0","width":4096,"height":4096,"bitrate":23000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/416_640_700000.json b/video/fixtures/profiles_tests/416_640_700000.json index 75ef303eb..a2b12e20f 100644 --- a/video/fixtures/profiles_tests/416_640_700000.json +++ b/video/fixtures/profiles_tests/416_640_700000.json @@ -1 +1 @@ -{"Width":416,"Height":640,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":416,"height":640,"bitrate":350000,"fps":0},{"name":"640p0","width":416,"height":640,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":416,"height":640,"bitrate":350000,"fps":0},{"name":"640p0","width":416,"height":640,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":416,"Height":640,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":416,"height":640,"bitrate":350000,"fps":0,"quality":27},{"name":"640p0","width":416,"height":640,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/426_240_100000.json b/video/fixtures/profiles_tests/426_240_100000.json index 14f8ec64c..d48d69690 100644 --- a/video/fixtures/profiles_tests/426_240_100000.json +++ b/video/fixtures/profiles_tests/426_240_100000.json @@ -1 +1 @@ -{"Width":426,"Height":240,"Bitrate":100000,"ExpectedOutput":[{"name":"low-bitrate","width":426,"height":240,"bitrate":50000,"fps":0},{"name":"240p0","width":426,"height":240,"bitrate":100000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":426,"height":240,"bitrate":50000,"fps":0},{"name":"240p0","width":426,"height":240,"bitrate":100000,"fps":0}]} \ No newline at end of file +{"Width":426,"Height":240,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":426,"height":240,"bitrate":50000,"fps":0,"quality":27},{"name":"240p0","width":426,"height":240,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/448_768_2100000.json b/video/fixtures/profiles_tests/448_768_2100000.json index 3bf8ed8bf..cc71f3c4c 100644 --- a/video/fixtures/profiles_tests/448_768_2100000.json +++ b/video/fixtures/profiles_tests/448_768_2100000.json @@ -1 +1 @@ -{"Width":448,"Height":768,"Bitrate":2100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"768p0","width":448,"height":768,"bitrate":2100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"768p0","width":448,"height":768,"bitrate":2100000,"fps":0}]} \ No newline at end of file +{"Width":448,"Height":768,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"768p0","width":448,"height":768,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/450_450_800000.json b/video/fixtures/profiles_tests/450_450_800000.json index 169659507..71a90d41f 100644 --- a/video/fixtures/profiles_tests/450_450_800000.json +++ b/video/fixtures/profiles_tests/450_450_800000.json @@ -1 +1 @@ -{"Width":450,"Height":450,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":450,"height":450,"bitrate":400000,"fps":0},{"name":"450p0","width":450,"height":450,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":450,"height":450,"bitrate":400000,"fps":0},{"name":"450p0","width":450,"height":450,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":450,"Height":450,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":450,"height":450,"bitrate":400000,"fps":0,"quality":27},{"name":"450p0","width":450,"height":450,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/458_512_800000.json b/video/fixtures/profiles_tests/458_512_800000.json index d589f998c..db4efcb86 100644 --- a/video/fixtures/profiles_tests/458_512_800000.json +++ b/video/fixtures/profiles_tests/458_512_800000.json @@ -1 +1 @@ -{"Width":458,"Height":512,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":458,"height":512,"bitrate":400000,"fps":0},{"name":"512p0","width":458,"height":512,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":458,"height":512,"bitrate":400000,"fps":0},{"name":"512p0","width":458,"height":512,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":458,"Height":512,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":458,"height":512,"bitrate":400000,"fps":0,"quality":27},{"name":"512p0","width":458,"height":512,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/460_352_200000.json b/video/fixtures/profiles_tests/460_352_200000.json index 98a3efb6d..e49dda2cb 100644 --- a/video/fixtures/profiles_tests/460_352_200000.json +++ b/video/fixtures/profiles_tests/460_352_200000.json @@ -1 +1 @@ -{"Width":460,"Height":352,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":460,"height":352,"bitrate":100000,"fps":0},{"name":"352p0","width":460,"height":352,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":460,"height":352,"bitrate":100000,"fps":0},{"name":"352p0","width":460,"height":352,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":460,"Height":352,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":460,"height":352,"bitrate":100000,"fps":0,"quality":27},{"name":"352p0","width":460,"height":352,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/460_640_500000.json b/video/fixtures/profiles_tests/460_640_500000.json index b87eff896..d399646b5 100644 --- a/video/fixtures/profiles_tests/460_640_500000.json +++ b/video/fixtures/profiles_tests/460_640_500000.json @@ -1 +1 @@ -{"Width":460,"Height":640,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":460,"height":640,"bitrate":250000,"fps":0},{"name":"640p0","width":460,"height":640,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":460,"height":640,"bitrate":250000,"fps":0},{"name":"640p0","width":460,"height":640,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":460,"Height":640,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":460,"height":640,"bitrate":250000,"fps":0,"quality":27},{"name":"640p0","width":460,"height":640,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/460_816_800000.json b/video/fixtures/profiles_tests/460_816_800000.json index 266c6f057..7dce97299 100644 --- a/video/fixtures/profiles_tests/460_816_800000.json +++ b/video/fixtures/profiles_tests/460_816_800000.json @@ -1 +1 @@ -{"Width":460,"Height":816,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":460,"height":816,"bitrate":400000,"fps":0},{"name":"816p0","width":460,"height":816,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":460,"height":816,"bitrate":400000,"fps":0},{"name":"816p0","width":460,"height":816,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":460,"Height":816,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":460,"height":816,"bitrate":400000,"fps":0,"quality":27},{"name":"816p0","width":460,"height":816,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/464_848_1100000.json b/video/fixtures/profiles_tests/464_848_1100000.json index 5a184d6ef..31ebcfc56 100644 --- a/video/fixtures/profiles_tests/464_848_1100000.json +++ b/video/fixtures/profiles_tests/464_848_1100000.json @@ -1 +1 @@ -{"Width":464,"Height":848,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"848p0","width":464,"height":848,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":644111,"fps":0},{"name":"848p0","width":464,"height":848,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":464,"Height":848,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":772934,"fps":0,"quality":27},{"name":"848p0","width":464,"height":848,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/464_848_1400000.json b/video/fixtures/profiles_tests/464_848_1400000.json index 82adc9b6d..e34becb64 100644 --- a/video/fixtures/profiles_tests/464_848_1400000.json +++ b/video/fixtures/profiles_tests/464_848_1400000.json @@ -1 +1 @@ -{"Width":464,"Height":848,"Bitrate":1400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"848p0","width":464,"height":848,"bitrate":1400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":819778,"fps":0},{"name":"848p0","width":464,"height":848,"bitrate":1400000,"fps":0}]} \ No newline at end of file +{"Width":464,"Height":848,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":983734,"fps":0,"quality":27},{"name":"848p0","width":464,"height":848,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/464_848_1600000.json b/video/fixtures/profiles_tests/464_848_1600000.json index d1397c6da..f95fc7acf 100644 --- a/video/fixtures/profiles_tests/464_848_1600000.json +++ b/video/fixtures/profiles_tests/464_848_1600000.json @@ -1 +1 @@ -{"Width":464,"Height":848,"Bitrate":1600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"848p0","width":464,"height":848,"bitrate":1600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":936890,"fps":0},{"name":"848p0","width":464,"height":848,"bitrate":1600000,"fps":0}]} \ No newline at end of file +{"Width":464,"Height":848,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"848p0","width":464,"height":848,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_264_700000.json b/video/fixtures/profiles_tests/480_264_700000.json index e8631ca24..fc20c130b 100644 --- a/video/fixtures/profiles_tests/480_264_700000.json +++ b/video/fixtures/profiles_tests/480_264_700000.json @@ -1 +1 @@ -{"Width":480,"Height":264,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":264,"bitrate":350000,"fps":0},{"name":"264p0","width":480,"height":264,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":264,"bitrate":350000,"fps":0},{"name":"264p0","width":480,"height":264,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":264,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":264,"bitrate":350000,"fps":0,"quality":27},{"name":"264p0","width":480,"height":264,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_270_300000.json b/video/fixtures/profiles_tests/480_270_300000.json index 5cf72518d..5b1a13f95 100644 --- a/video/fixtures/profiles_tests/480_270_300000.json +++ b/video/fixtures/profiles_tests/480_270_300000.json @@ -1 +1 @@ -{"Width":480,"Height":270,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":270,"bitrate":150000,"fps":0},{"name":"270p0","width":480,"height":270,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":270,"bitrate":150000,"fps":0},{"name":"270p0","width":480,"height":270,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":270,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":270,"bitrate":150000,"fps":0,"quality":27},{"name":"270p0","width":480,"height":270,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_336_500000.json b/video/fixtures/profiles_tests/480_336_500000.json index dad4c428f..49bf93a23 100644 --- a/video/fixtures/profiles_tests/480_336_500000.json +++ b/video/fixtures/profiles_tests/480_336_500000.json @@ -1 +1 @@ -{"Width":480,"Height":336,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":336,"bitrate":250000,"fps":0},{"name":"336p0","width":480,"height":336,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":336,"bitrate":250000,"fps":0},{"name":"336p0","width":480,"height":336,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":336,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":336,"bitrate":250000,"fps":0,"quality":27},{"name":"336p0","width":480,"height":336,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_480_2200000.json b/video/fixtures/profiles_tests/480_480_2200000.json index 744884eb6..cb50bc8e8 100644 --- a/video/fixtures/profiles_tests/480_480_2200000.json +++ b/video/fixtures/profiles_tests/480_480_2200000.json @@ -1 +1 @@ -{"Width":480,"Height":480,"Bitrate":2200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"480p0","width":480,"height":480,"bitrate":2200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"480p0","width":480,"height":480,"bitrate":2200000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":480,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"480p0","width":480,"height":480,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_480_500000.json b/video/fixtures/profiles_tests/480_480_500000.json index 0b87a1dee..022fed308 100644 --- a/video/fixtures/profiles_tests/480_480_500000.json +++ b/video/fixtures/profiles_tests/480_480_500000.json @@ -1 +1 @@ -{"Width":480,"Height":480,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":480,"bitrate":250000,"fps":0},{"name":"480p0","width":480,"height":480,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":480,"bitrate":250000,"fps":0},{"name":"480p0","width":480,"height":480,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":480,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":480,"bitrate":250000,"fps":0,"quality":27},{"name":"480p0","width":480,"height":480,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_504_400000.json b/video/fixtures/profiles_tests/480_504_400000.json index c65e7de5e..a52d2da4b 100644 --- a/video/fixtures/profiles_tests/480_504_400000.json +++ b/video/fixtures/profiles_tests/480_504_400000.json @@ -1 +1 @@ -{"Width":480,"Height":504,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":504,"bitrate":200000,"fps":0},{"name":"504p0","width":480,"height":504,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":504,"bitrate":200000,"fps":0},{"name":"504p0","width":480,"height":504,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":504,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":504,"bitrate":200000,"fps":0,"quality":27},{"name":"504p0","width":480,"height":504,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_600_300000.json b/video/fixtures/profiles_tests/480_600_300000.json index 921a98fc5..33c85206d 100644 --- a/video/fixtures/profiles_tests/480_600_300000.json +++ b/video/fixtures/profiles_tests/480_600_300000.json @@ -1 +1 @@ -{"Width":480,"Height":600,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":150000,"fps":0},{"name":"600p0","width":480,"height":600,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":150000,"fps":0},{"name":"600p0","width":480,"height":600,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":600,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":150000,"fps":0,"quality":27},{"name":"600p0","width":480,"height":600,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_600_400000.json b/video/fixtures/profiles_tests/480_600_400000.json index 3d60d8588..c3c860076 100644 --- a/video/fixtures/profiles_tests/480_600_400000.json +++ b/video/fixtures/profiles_tests/480_600_400000.json @@ -1 +1 @@ -{"Width":480,"Height":600,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":200000,"fps":0},{"name":"600p0","width":480,"height":600,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":200000,"fps":0},{"name":"600p0","width":480,"height":600,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":600,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":200000,"fps":0,"quality":27},{"name":"600p0","width":480,"height":600,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_600_500000.json b/video/fixtures/profiles_tests/480_600_500000.json index ca4bfb54a..e813c3503 100644 --- a/video/fixtures/profiles_tests/480_600_500000.json +++ b/video/fixtures/profiles_tests/480_600_500000.json @@ -1 +1 @@ -{"Width":480,"Height":600,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":250000,"fps":0},{"name":"600p0","width":480,"height":600,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":250000,"fps":0},{"name":"600p0","width":480,"height":600,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":600,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":250000,"fps":0,"quality":27},{"name":"600p0","width":480,"height":600,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_664_500000.json b/video/fixtures/profiles_tests/480_664_500000.json index 0b358f9bb..7d44e4bc4 100644 --- a/video/fixtures/profiles_tests/480_664_500000.json +++ b/video/fixtures/profiles_tests/480_664_500000.json @@ -1 +1 @@ -{"Width":480,"Height":664,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":664,"bitrate":250000,"fps":0},{"name":"664p0","width":480,"height":664,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":664,"bitrate":250000,"fps":0},{"name":"664p0","width":480,"height":664,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":664,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":664,"bitrate":250000,"fps":0,"quality":27},{"name":"664p0","width":480,"height":664,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_672_600000.json b/video/fixtures/profiles_tests/480_672_600000.json index e847c9a5a..0e49ab698 100644 --- a/video/fixtures/profiles_tests/480_672_600000.json +++ b/video/fixtures/profiles_tests/480_672_600000.json @@ -1 +1 @@ -{"Width":480,"Height":672,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":672,"bitrate":300000,"fps":0},{"name":"672p0","width":480,"height":672,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":672,"bitrate":300000,"fps":0},{"name":"672p0","width":480,"height":672,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":672,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":672,"bitrate":300000,"fps":0,"quality":27},{"name":"672p0","width":480,"height":672,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_724_500000.json b/video/fixtures/profiles_tests/480_724_500000.json index 3f3d3d91e..c7444860b 100644 --- a/video/fixtures/profiles_tests/480_724_500000.json +++ b/video/fixtures/profiles_tests/480_724_500000.json @@ -1 +1 @@ -{"Width":480,"Height":724,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":724,"bitrate":250000,"fps":0},{"name":"724p0","width":480,"height":724,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":724,"bitrate":250000,"fps":0},{"name":"724p0","width":480,"height":724,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":724,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":724,"bitrate":250000,"fps":0,"quality":27},{"name":"724p0","width":480,"height":724,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_852_1000000.json b/video/fixtures/profiles_tests/480_852_1000000.json index 3e89be04a..0d212fcaa 100644 --- a/video/fixtures/profiles_tests/480_852_1000000.json +++ b/video/fixtures/profiles_tests/480_852_1000000.json @@ -1 +1 @@ -{"Width":480,"Height":852,"Bitrate":1000000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":500000,"fps":0},{"name":"852p0","width":480,"height":852,"bitrate":1000000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":500000,"fps":0},{"name":"852p0","width":480,"height":852,"bitrate":1000000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":852,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":500000,"fps":0,"quality":27},{"name":"852p0","width":480,"height":852,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_852_300000.json b/video/fixtures/profiles_tests/480_852_300000.json index 1867e2e02..8d611db0a 100644 --- a/video/fixtures/profiles_tests/480_852_300000.json +++ b/video/fixtures/profiles_tests/480_852_300000.json @@ -1 +1 @@ -{"Width":480,"Height":852,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":150000,"fps":0},{"name":"852p0","width":480,"height":852,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":150000,"fps":0},{"name":"852p0","width":480,"height":852,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":852,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":150000,"fps":0,"quality":27},{"name":"852p0","width":480,"height":852,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_852_500000.json b/video/fixtures/profiles_tests/480_852_500000.json index 88fc8717e..2d304cceb 100644 --- a/video/fixtures/profiles_tests/480_852_500000.json +++ b/video/fixtures/profiles_tests/480_852_500000.json @@ -1 +1 @@ -{"Width":480,"Height":852,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":250000,"fps":0},{"name":"852p0","width":480,"height":852,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":250000,"fps":0},{"name":"852p0","width":480,"height":852,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":852,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":250000,"fps":0,"quality":27},{"name":"852p0","width":480,"height":852,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_854_1100000.json b/video/fixtures/profiles_tests/480_854_1100000.json index 9bfb0d001..44eeb33b1 100644 --- a/video/fixtures/profiles_tests/480_854_1100000.json +++ b/video/fixtures/profiles_tests/480_854_1100000.json @@ -1 +1 @@ -{"Width":480,"Height":854,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"854p0","width":480,"height":854,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":618266,"fps":0},{"name":"854p0","width":480,"height":854,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":854,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":741920,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_854_1700000.json b/video/fixtures/profiles_tests/480_854_1700000.json index 818947cad..ecf0a7744 100644 --- a/video/fixtures/profiles_tests/480_854_1700000.json +++ b/video/fixtures/profiles_tests/480_854_1700000.json @@ -1 +1 @@ -{"Width":480,"Height":854,"Bitrate":1700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"854p0","width":480,"height":854,"bitrate":1700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":955503,"fps":0},{"name":"854p0","width":480,"height":854,"bitrate":1700000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":854,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_854_200000.json b/video/fixtures/profiles_tests/480_854_200000.json index 4cbbae7eb..a0b5cad46 100644 --- a/video/fixtures/profiles_tests/480_854_200000.json +++ b/video/fixtures/profiles_tests/480_854_200000.json @@ -1 +1 @@ -{"Width":480,"Height":854,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":100000,"fps":0},{"name":"854p0","width":480,"height":854,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":100000,"fps":0},{"name":"854p0","width":480,"height":854,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":854,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":100000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_854_4300000.json b/video/fixtures/profiles_tests/480_854_4300000.json index ecfa76111..c06753087 100644 --- a/video/fixtures/profiles_tests/480_854_4300000.json +++ b/video/fixtures/profiles_tests/480_854_4300000.json @@ -1 +1 @@ -{"Width":480,"Height":854,"Bitrate":4300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"854p0","width":480,"height":854,"bitrate":4300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"854p0","width":480,"height":854,"bitrate":4300000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":854,"Bitrate":4300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":4300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_854_500000.json b/video/fixtures/profiles_tests/480_854_500000.json index 40a965140..51275fd6f 100644 --- a/video/fixtures/profiles_tests/480_854_500000.json +++ b/video/fixtures/profiles_tests/480_854_500000.json @@ -1 +1 @@ -{"Width":480,"Height":854,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":250000,"fps":0},{"name":"854p0","width":480,"height":854,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":250000,"fps":0},{"name":"854p0","width":480,"height":854,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":854,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":250000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_854_600000.json b/video/fixtures/profiles_tests/480_854_600000.json index 2af3f4b8a..423175410 100644 --- a/video/fixtures/profiles_tests/480_854_600000.json +++ b/video/fixtures/profiles_tests/480_854_600000.json @@ -1 +1 @@ -{"Width":480,"Height":854,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":300000,"fps":0},{"name":"854p0","width":480,"height":854,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":300000,"fps":0},{"name":"854p0","width":480,"height":854,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":854,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":300000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_864_1600000.json b/video/fixtures/profiles_tests/480_864_1600000.json index 335eb26ba..45af34889 100644 --- a/video/fixtures/profiles_tests/480_864_1600000.json +++ b/video/fixtures/profiles_tests/480_864_1600000.json @@ -1 +1 @@ -{"Width":480,"Height":864,"Bitrate":1600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"864p0","width":480,"height":864,"bitrate":1600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":888888,"fps":0},{"name":"864p0","width":480,"height":864,"bitrate":1600000,"fps":0}]} \ No newline at end of file +{"Width":480,"Height":864,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"864p0","width":480,"height":864,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/498_280_200000.json b/video/fixtures/profiles_tests/498_280_200000.json index 233177786..3b5a23e51 100644 --- a/video/fixtures/profiles_tests/498_280_200000.json +++ b/video/fixtures/profiles_tests/498_280_200000.json @@ -1 +1 @@ -{"Width":498,"Height":280,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":498,"height":280,"bitrate":100000,"fps":0},{"name":"280p0","width":498,"height":280,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":498,"height":280,"bitrate":100000,"fps":0},{"name":"280p0","width":498,"height":280,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":498,"Height":280,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":498,"height":280,"bitrate":100000,"fps":0,"quality":27},{"name":"280p0","width":498,"height":280,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/498_476_800000.json b/video/fixtures/profiles_tests/498_476_800000.json index 0058f19ab..897ce82de 100644 --- a/video/fixtures/profiles_tests/498_476_800000.json +++ b/video/fixtures/profiles_tests/498_476_800000.json @@ -1 +1 @@ -{"Width":498,"Height":476,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":498,"height":476,"bitrate":400000,"fps":0},{"name":"476p0","width":498,"height":476,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":498,"height":476,"bitrate":400000,"fps":0},{"name":"476p0","width":498,"height":476,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":498,"Height":476,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":498,"height":476,"bitrate":400000,"fps":0,"quality":27},{"name":"476p0","width":498,"height":476,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/500_500_100000.json b/video/fixtures/profiles_tests/500_500_100000.json index 4c3e87c6d..015b77adc 100644 --- a/video/fixtures/profiles_tests/500_500_100000.json +++ b/video/fixtures/profiles_tests/500_500_100000.json @@ -1 +1 @@ -{"Width":500,"Height":500,"Bitrate":100000,"ExpectedOutput":[{"name":"low-bitrate","width":500,"height":500,"bitrate":50000,"fps":0},{"name":"500p0","width":500,"height":500,"bitrate":100000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":500,"height":500,"bitrate":50000,"fps":0},{"name":"500p0","width":500,"height":500,"bitrate":100000,"fps":0}]} \ No newline at end of file +{"Width":500,"Height":500,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":500,"height":500,"bitrate":50000,"fps":0,"quality":27},{"name":"500p0","width":500,"height":500,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/500_500_400000.json b/video/fixtures/profiles_tests/500_500_400000.json index 350ea4487..4ca2530bc 100644 --- a/video/fixtures/profiles_tests/500_500_400000.json +++ b/video/fixtures/profiles_tests/500_500_400000.json @@ -1 +1 @@ -{"Width":500,"Height":500,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":500,"height":500,"bitrate":200000,"fps":0},{"name":"500p0","width":500,"height":500,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":500,"height":500,"bitrate":200000,"fps":0},{"name":"500p0","width":500,"height":500,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":500,"Height":500,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":500,"height":500,"bitrate":200000,"fps":0,"quality":27},{"name":"500p0","width":500,"height":500,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/500_878_800000.json b/video/fixtures/profiles_tests/500_878_800000.json index 5a759beed..d2e965fc9 100644 --- a/video/fixtures/profiles_tests/500_878_800000.json +++ b/video/fixtures/profiles_tests/500_878_800000.json @@ -1 +1 @@ -{"Width":500,"Height":878,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":500,"height":878,"bitrate":400000,"fps":0},{"name":"878p0","width":500,"height":878,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":500,"height":878,"bitrate":400000,"fps":0},{"name":"878p0","width":500,"height":878,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":500,"Height":878,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":500,"height":878,"bitrate":400000,"fps":0,"quality":27},{"name":"878p0","width":500,"height":878,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/512_512_100000.json b/video/fixtures/profiles_tests/512_512_100000.json index d194bbaa8..b6d550585 100644 --- a/video/fixtures/profiles_tests/512_512_100000.json +++ b/video/fixtures/profiles_tests/512_512_100000.json @@ -1 +1 @@ -{"Width":512,"Height":512,"Bitrate":100000,"ExpectedOutput":[{"name":"low-bitrate","width":512,"height":512,"bitrate":50000,"fps":0},{"name":"512p0","width":512,"height":512,"bitrate":100000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":512,"height":512,"bitrate":50000,"fps":0},{"name":"512p0","width":512,"height":512,"bitrate":100000,"fps":0}]} \ No newline at end of file +{"Width":512,"Height":512,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":512,"height":512,"bitrate":50000,"fps":0,"quality":27},{"name":"512p0","width":512,"height":512,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/512_512_200000.json b/video/fixtures/profiles_tests/512_512_200000.json index 6413bd0d4..2d4c684eb 100644 --- a/video/fixtures/profiles_tests/512_512_200000.json +++ b/video/fixtures/profiles_tests/512_512_200000.json @@ -1 +1 @@ -{"Width":512,"Height":512,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":512,"height":512,"bitrate":100000,"fps":0},{"name":"512p0","width":512,"height":512,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":512,"height":512,"bitrate":100000,"fps":0},{"name":"512p0","width":512,"height":512,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":512,"Height":512,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":512,"height":512,"bitrate":100000,"fps":0,"quality":27},{"name":"512p0","width":512,"height":512,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/512_512_3300000.json b/video/fixtures/profiles_tests/512_512_3300000.json index 7d4e9d664..931175be8 100644 --- a/video/fixtures/profiles_tests/512_512_3300000.json +++ b/video/fixtures/profiles_tests/512_512_3300000.json @@ -1 +1 @@ -{"Width":512,"Height":512,"Bitrate":3300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"512p0","width":512,"height":512,"bitrate":3300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"512p0","width":512,"height":512,"bitrate":3300000,"fps":0}]} \ No newline at end of file +{"Width":512,"Height":512,"Bitrate":3300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"512p0","width":512,"height":512,"bitrate":3300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/512_512_5200000.json b/video/fixtures/profiles_tests/512_512_5200000.json index 286c7de52..d8db5988c 100644 --- a/video/fixtures/profiles_tests/512_512_5200000.json +++ b/video/fixtures/profiles_tests/512_512_5200000.json @@ -1 +1 @@ -{"Width":512,"Height":512,"Bitrate":5200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"512p0","width":512,"height":512,"bitrate":5200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"512p0","width":512,"height":512,"bitrate":5200000,"fps":0}]} \ No newline at end of file +{"Width":512,"Height":512,"Bitrate":5200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"512p0","width":512,"height":512,"bitrate":5200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/528_848_300000.json b/video/fixtures/profiles_tests/528_848_300000.json index 651b35427..a621d00bf 100644 --- a/video/fixtures/profiles_tests/528_848_300000.json +++ b/video/fixtures/profiles_tests/528_848_300000.json @@ -1 +1 @@ -{"Width":528,"Height":848,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":528,"height":848,"bitrate":150000,"fps":0},{"name":"848p0","width":528,"height":848,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":528,"height":848,"bitrate":150000,"fps":0},{"name":"848p0","width":528,"height":848,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":528,"Height":848,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":528,"height":848,"bitrate":150000,"fps":0,"quality":27},{"name":"848p0","width":528,"height":848,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/540_540_2400000.json b/video/fixtures/profiles_tests/540_540_2400000.json index b088dd6a0..aca34da68 100644 --- a/video/fixtures/profiles_tests/540_540_2400000.json +++ b/video/fixtures/profiles_tests/540_540_2400000.json @@ -1 +1 @@ -{"Width":540,"Height":540,"Bitrate":2400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"540p0","width":540,"height":540,"bitrate":2400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"540p0","width":540,"height":540,"bitrate":2400000,"fps":0}]} \ No newline at end of file +{"Width":540,"Height":540,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"540p0","width":540,"height":540,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/540_540_300000.json b/video/fixtures/profiles_tests/540_540_300000.json index 142793366..0587c11d3 100644 --- a/video/fixtures/profiles_tests/540_540_300000.json +++ b/video/fixtures/profiles_tests/540_540_300000.json @@ -1 +1 @@ -{"Width":540,"Height":540,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":540,"height":540,"bitrate":150000,"fps":0},{"name":"540p0","width":540,"height":540,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":540,"height":540,"bitrate":150000,"fps":0},{"name":"540p0","width":540,"height":540,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":540,"Height":540,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":540,"height":540,"bitrate":150000,"fps":0,"quality":27},{"name":"540p0","width":540,"height":540,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/540_540_400000.json b/video/fixtures/profiles_tests/540_540_400000.json index f7c36fa8a..33fe7afc2 100644 --- a/video/fixtures/profiles_tests/540_540_400000.json +++ b/video/fixtures/profiles_tests/540_540_400000.json @@ -1 +1 @@ -{"Width":540,"Height":540,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":540,"height":540,"bitrate":200000,"fps":0},{"name":"540p0","width":540,"height":540,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":540,"height":540,"bitrate":200000,"fps":0},{"name":"540p0","width":540,"height":540,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":540,"Height":540,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":540,"height":540,"bitrate":200000,"fps":0,"quality":27},{"name":"540p0","width":540,"height":540,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/540_960_4400000.json b/video/fixtures/profiles_tests/540_960_4400000.json index 824359ac1..501aee26e 100644 --- a/video/fixtures/profiles_tests/540_960_4400000.json +++ b/video/fixtures/profiles_tests/540_960_4400000.json @@ -1 +1 @@ -{"Width":540,"Height":960,"Bitrate":4400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"960p0","width":540,"height":960,"bitrate":4400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"960p0","width":540,"height":960,"bitrate":4400000,"fps":0}]} \ No newline at end of file +{"Width":540,"Height":960,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"960p0","width":540,"height":960,"bitrate":4400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/540_960_700000.json b/video/fixtures/profiles_tests/540_960_700000.json index fbcc1319f..d303d606e 100644 --- a/video/fixtures/profiles_tests/540_960_700000.json +++ b/video/fixtures/profiles_tests/540_960_700000.json @@ -1 +1 @@ -{"Width":540,"Height":960,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":540,"height":960,"bitrate":350000,"fps":0},{"name":"960p0","width":540,"height":960,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":540,"height":960,"bitrate":350000,"fps":0},{"name":"960p0","width":540,"height":960,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":540,"Height":960,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":540,"height":960,"bitrate":350000,"fps":0,"quality":27},{"name":"960p0","width":540,"height":960,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_1700000.json b/video/fixtures/profiles_tests/544_960_1700000.json index ed4f7b10d..0a1d74b28 100644 --- a/video/fixtures/profiles_tests/544_960_1700000.json +++ b/video/fixtures/profiles_tests/544_960_1700000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":1700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":1700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":750000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":1700000,"fps":0}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":900000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_1900000.json b/video/fixtures/profiles_tests/544_960_1900000.json index de864c261..b9279dcbc 100644 --- a/video/fixtures/profiles_tests/544_960_1900000.json +++ b/video/fixtures/profiles_tests/544_960_1900000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":1900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":1900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":838235,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":1900000,"fps":0}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_2000000.json b/video/fixtures/profiles_tests/544_960_2000000.json index e73ee6e3f..f80bb9880 100644 --- a/video/fixtures/profiles_tests/544_960_2000000.json +++ b/video/fixtures/profiles_tests/544_960_2000000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":2000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":2000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":882352,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":2000000,"fps":0}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_2200000.json b/video/fixtures/profiles_tests/544_960_2200000.json index 443ae1f11..77b7bc52c 100644 --- a/video/fixtures/profiles_tests/544_960_2200000.json +++ b/video/fixtures/profiles_tests/544_960_2200000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":2200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":2200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":970588,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":2200000,"fps":0}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_2300000.json b/video/fixtures/profiles_tests/544_960_2300000.json index 7a39af3a4..a59c8c8d3 100644 --- a/video/fixtures/profiles_tests/544_960_2300000.json +++ b/video/fixtures/profiles_tests/544_960_2300000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":2300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":2300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":2300000,"fps":0}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_2800000.json b/video/fixtures/profiles_tests/544_960_2800000.json index 6bc592ac5..b1f09795e 100644 --- a/video/fixtures/profiles_tests/544_960_2800000.json +++ b/video/fixtures/profiles_tests/544_960_2800000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":2800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":2800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":2800000,"fps":0}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_700000.json b/video/fixtures/profiles_tests/544_960_700000.json index 7883af894..d0207a2ab 100644 --- a/video/fixtures/profiles_tests/544_960_700000.json +++ b/video/fixtures/profiles_tests/544_960_700000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":544,"height":960,"bitrate":350000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":544,"height":960,"bitrate":350000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":544,"height":960,"bitrate":350000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_800000.json b/video/fixtures/profiles_tests/544_960_800000.json index 3c0d3142b..fa247f982 100644 --- a/video/fixtures/profiles_tests/544_960_800000.json +++ b/video/fixtures/profiles_tests/544_960_800000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":544,"height":960,"bitrate":400000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":544,"height":960,"bitrate":400000,"fps":0},{"name":"960p0","width":544,"height":960,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":544,"height":960,"bitrate":400000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/552_640_5900000.json b/video/fixtures/profiles_tests/552_640_5900000.json index 8453b20eb..6c78fdf34 100644 --- a/video/fixtures/profiles_tests/552_640_5900000.json +++ b/video/fixtures/profiles_tests/552_640_5900000.json @@ -1 +1 @@ -{"Width":552,"Height":640,"Bitrate":5900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"640p0","width":552,"height":640,"bitrate":5900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"640p0","width":552,"height":640,"bitrate":5900000,"fps":0}]} \ No newline at end of file +{"Width":552,"Height":640,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":552,"height":640,"bitrate":5900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/558_540_200000.json b/video/fixtures/profiles_tests/558_540_200000.json index 857f64bd5..22569253e 100644 --- a/video/fixtures/profiles_tests/558_540_200000.json +++ b/video/fixtures/profiles_tests/558_540_200000.json @@ -1 +1 @@ -{"Width":558,"Height":540,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":558,"height":540,"bitrate":100000,"fps":0},{"name":"540p0","width":558,"height":540,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":558,"height":540,"bitrate":100000,"fps":0},{"name":"540p0","width":558,"height":540,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":558,"Height":540,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":558,"height":540,"bitrate":100000,"fps":0,"quality":27},{"name":"540p0","width":558,"height":540,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/558_560_3300000.json b/video/fixtures/profiles_tests/558_560_3300000.json index 8e504bcaa..359dcf10a 100644 --- a/video/fixtures/profiles_tests/558_560_3300000.json +++ b/video/fixtures/profiles_tests/558_560_3300000.json @@ -1 +1 @@ -{"Width":558,"Height":560,"Bitrate":3300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"560p0","width":558,"height":560,"bitrate":3300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"560p0","width":558,"height":560,"bitrate":3300000,"fps":0}]} \ No newline at end of file +{"Width":558,"Height":560,"Bitrate":3300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"560p0","width":558,"height":560,"bitrate":3300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/568_320_700000.json b/video/fixtures/profiles_tests/568_320_700000.json index 08c28cc2f..1817054ac 100644 --- a/video/fixtures/profiles_tests/568_320_700000.json +++ b/video/fixtures/profiles_tests/568_320_700000.json @@ -1 +1 @@ -{"Width":568,"Height":320,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":568,"height":320,"bitrate":350000,"fps":0},{"name":"320p0","width":568,"height":320,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":568,"height":320,"bitrate":350000,"fps":0},{"name":"320p0","width":568,"height":320,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":568,"Height":320,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":568,"height":320,"bitrate":350000,"fps":0,"quality":27},{"name":"320p0","width":568,"height":320,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/574_1024_10700000.json b/video/fixtures/profiles_tests/574_1024_10700000.json index d223e0696..fd1c97e03 100644 --- a/video/fixtures/profiles_tests/574_1024_10700000.json +++ b/video/fixtures/profiles_tests/574_1024_10700000.json @@ -1 +1 @@ -{"Width":574,"Height":1024,"Bitrate":10700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":574,"height":1024,"bitrate":10700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":574,"height":1024,"bitrate":10700000,"fps":0}]} \ No newline at end of file +{"Width":574,"Height":1024,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":574,"height":1024,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/574_1024_11900000.json b/video/fixtures/profiles_tests/574_1024_11900000.json index c28c856b1..6a2ed3839 100644 --- a/video/fixtures/profiles_tests/574_1024_11900000.json +++ b/video/fixtures/profiles_tests/574_1024_11900000.json @@ -1 +1 @@ -{"Width":574,"Height":1024,"Bitrate":11900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":574,"height":1024,"bitrate":11900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":574,"height":1024,"bitrate":11900000,"fps":0}]} \ No newline at end of file +{"Width":574,"Height":1024,"Bitrate":11900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":574,"height":1024,"bitrate":11900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_1100000.json b/video/fixtures/profiles_tests/576_1024_1100000.json index e75cbea54..aca3e80d9 100644 --- a/video/fixtures/profiles_tests/576_1024_1100000.json +++ b/video/fixtures/profiles_tests/576_1024_1100000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":429687,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":515625,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_1200000.json b/video/fixtures/profiles_tests/576_1024_1200000.json index 4830edf0b..e9c2a96eb 100644 --- a/video/fixtures/profiles_tests/576_1024_1200000.json +++ b/video/fixtures/profiles_tests/576_1024_1200000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":1200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":1200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":468750,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":1200000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":562500,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_1400000.json b/video/fixtures/profiles_tests/576_1024_1400000.json index 27d8d5318..d1f2649ab 100644 --- a/video/fixtures/profiles_tests/576_1024_1400000.json +++ b/video/fixtures/profiles_tests/576_1024_1400000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":1400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":1400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":546875,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":1400000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":656250,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_1500000.json b/video/fixtures/profiles_tests/576_1024_1500000.json index 828829c92..d4f3074a4 100644 --- a/video/fixtures/profiles_tests/576_1024_1500000.json +++ b/video/fixtures/profiles_tests/576_1024_1500000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":1500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":1500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":585937,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":1500000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":703125,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_1600000.json b/video/fixtures/profiles_tests/576_1024_1600000.json index df97d9c17..8430d17bc 100644 --- a/video/fixtures/profiles_tests/576_1024_1600000.json +++ b/video/fixtures/profiles_tests/576_1024_1600000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":1600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":1600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":625000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":1600000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":750000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_1800000.json b/video/fixtures/profiles_tests/576_1024_1800000.json index 4c909c18b..4a23d53c9 100644 --- a/video/fixtures/profiles_tests/576_1024_1800000.json +++ b/video/fixtures/profiles_tests/576_1024_1800000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":1800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":1800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":703125,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":1800000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":843750,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_200000.json b/video/fixtures/profiles_tests/576_1024_200000.json index 506fa0d0c..727812fab 100644 --- a/video/fixtures/profiles_tests/576_1024_200000.json +++ b/video/fixtures/profiles_tests/576_1024_200000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":100000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":100000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":100000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_2200000.json b/video/fixtures/profiles_tests/576_1024_2200000.json index 644d006c8..e8bb8b489 100644 --- a/video/fixtures/profiles_tests/576_1024_2200000.json +++ b/video/fixtures/profiles_tests/576_1024_2200000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":2200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":2200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":859375,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":2200000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_300000.json b/video/fixtures/profiles_tests/576_1024_300000.json index 80497195d..d63042b44 100644 --- a/video/fixtures/profiles_tests/576_1024_300000.json +++ b/video/fixtures/profiles_tests/576_1024_300000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":150000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":150000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":150000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_400000.json b/video/fixtures/profiles_tests/576_1024_400000.json index 6e854e6eb..0bb0eb806 100644 --- a/video/fixtures/profiles_tests/576_1024_400000.json +++ b/video/fixtures/profiles_tests/576_1024_400000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":200000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":200000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":200000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_4200000.json b/video/fixtures/profiles_tests/576_1024_4200000.json index 9492fccd0..1f4455991 100644 --- a/video/fixtures/profiles_tests/576_1024_4200000.json +++ b/video/fixtures/profiles_tests/576_1024_4200000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":4200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":4200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":4200000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_500000.json b/video/fixtures/profiles_tests/576_1024_500000.json index 723420734..7e2197397 100644 --- a/video/fixtures/profiles_tests/576_1024_500000.json +++ b/video/fixtures/profiles_tests/576_1024_500000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":250000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":250000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":250000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_5900000.json b/video/fixtures/profiles_tests/576_1024_5900000.json index 527f5bb02..dc325ea4d 100644 --- a/video/fixtures/profiles_tests/576_1024_5900000.json +++ b/video/fixtures/profiles_tests/576_1024_5900000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":5900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":5900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":5900000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":5900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_600000.json b/video/fixtures/profiles_tests/576_1024_600000.json index 715183967..20112c1d4 100644 --- a/video/fixtures/profiles_tests/576_1024_600000.json +++ b/video/fixtures/profiles_tests/576_1024_600000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":300000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":300000,"fps":0},{"name":"1024p0","width":576,"height":1024,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":300000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_324_400000.json b/video/fixtures/profiles_tests/576_324_400000.json index ee3c5bddc..0f497a0ac 100644 --- a/video/fixtures/profiles_tests/576_324_400000.json +++ b/video/fixtures/profiles_tests/576_324_400000.json @@ -1 +1 @@ -{"Width":576,"Height":324,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":576,"height":324,"bitrate":200000,"fps":0},{"name":"324p0","width":576,"height":324,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":576,"height":324,"bitrate":200000,"fps":0},{"name":"324p0","width":576,"height":324,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":324,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":324,"bitrate":200000,"fps":0,"quality":27},{"name":"324p0","width":576,"height":324,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_360_100000.json b/video/fixtures/profiles_tests/576_360_100000.json index 54cfb3e63..e3d305d18 100644 --- a/video/fixtures/profiles_tests/576_360_100000.json +++ b/video/fixtures/profiles_tests/576_360_100000.json @@ -1 +1 @@ -{"Width":576,"Height":360,"Bitrate":100000,"ExpectedOutput":[{"name":"low-bitrate","width":576,"height":360,"bitrate":50000,"fps":0},{"name":"360p0","width":576,"height":360,"bitrate":100000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":576,"height":360,"bitrate":50000,"fps":0},{"name":"360p0","width":576,"height":360,"bitrate":100000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":360,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":360,"bitrate":50000,"fps":0,"quality":27},{"name":"360p0","width":576,"height":360,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_576_3100000.json b/video/fixtures/profiles_tests/576_576_3100000.json index f2939c33f..6c1cc3435 100644 --- a/video/fixtures/profiles_tests/576_576_3100000.json +++ b/video/fixtures/profiles_tests/576_576_3100000.json @@ -1 +1 @@ -{"Width":576,"Height":576,"Bitrate":3100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"576p0","width":576,"height":576,"bitrate":3100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"576p0","width":576,"height":576,"bitrate":3100000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":576,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"576p0","width":576,"height":576,"bitrate":3100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_576_700000.json b/video/fixtures/profiles_tests/576_576_700000.json index 010aca53c..af4bd15af 100644 --- a/video/fixtures/profiles_tests/576_576_700000.json +++ b/video/fixtures/profiles_tests/576_576_700000.json @@ -1 +1 @@ -{"Width":576,"Height":576,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":576,"height":576,"bitrate":350000,"fps":0},{"name":"576p0","width":576,"height":576,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":576,"height":576,"bitrate":350000,"fps":0},{"name":"576p0","width":576,"height":576,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":576,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":576,"bitrate":350000,"fps":0,"quality":27},{"name":"576p0","width":576,"height":576,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_640_400000.json b/video/fixtures/profiles_tests/576_640_400000.json index a41e0207b..7de00bf97 100644 --- a/video/fixtures/profiles_tests/576_640_400000.json +++ b/video/fixtures/profiles_tests/576_640_400000.json @@ -1 +1 @@ -{"Width":576,"Height":640,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":576,"height":640,"bitrate":200000,"fps":0},{"name":"640p0","width":576,"height":640,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":576,"height":640,"bitrate":200000,"fps":0},{"name":"640p0","width":576,"height":640,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":640,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":640,"bitrate":200000,"fps":0,"quality":27},{"name":"640p0","width":576,"height":640,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_728_300000.json b/video/fixtures/profiles_tests/576_728_300000.json index 6691ec034..4551a631d 100644 --- a/video/fixtures/profiles_tests/576_728_300000.json +++ b/video/fixtures/profiles_tests/576_728_300000.json @@ -1 +1 @@ -{"Width":576,"Height":728,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":576,"height":728,"bitrate":150000,"fps":0},{"name":"728p0","width":576,"height":728,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":576,"height":728,"bitrate":150000,"fps":0},{"name":"728p0","width":576,"height":728,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":728,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":728,"bitrate":150000,"fps":0,"quality":27},{"name":"728p0","width":576,"height":728,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_816_200000.json b/video/fixtures/profiles_tests/576_816_200000.json index da1c629b7..06a829a56 100644 --- a/video/fixtures/profiles_tests/576_816_200000.json +++ b/video/fixtures/profiles_tests/576_816_200000.json @@ -1 +1 @@ -{"Width":576,"Height":816,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":576,"height":816,"bitrate":100000,"fps":0},{"name":"816p0","width":576,"height":816,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":576,"height":816,"bitrate":100000,"fps":0},{"name":"816p0","width":576,"height":816,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":816,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":816,"bitrate":100000,"fps":0,"quality":27},{"name":"816p0","width":576,"height":816,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_896_400000.json b/video/fixtures/profiles_tests/576_896_400000.json index 8da4e614c..f747c9ce9 100644 --- a/video/fixtures/profiles_tests/576_896_400000.json +++ b/video/fixtures/profiles_tests/576_896_400000.json @@ -1 +1 @@ -{"Width":576,"Height":896,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":576,"height":896,"bitrate":200000,"fps":0},{"name":"896p0","width":576,"height":896,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":576,"height":896,"bitrate":200000,"fps":0},{"name":"896p0","width":576,"height":896,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":576,"Height":896,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":896,"bitrate":200000,"fps":0,"quality":27},{"name":"896p0","width":576,"height":896,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/578_1028_500000.json b/video/fixtures/profiles_tests/578_1028_500000.json index 3d4ae9945..680d2a292 100644 --- a/video/fixtures/profiles_tests/578_1028_500000.json +++ b/video/fixtures/profiles_tests/578_1028_500000.json @@ -1 +1 @@ -{"Width":578,"Height":1028,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":578,"height":1028,"bitrate":250000,"fps":0},{"name":"1028p0","width":578,"height":1028,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":578,"height":1028,"bitrate":250000,"fps":0},{"name":"1028p0","width":578,"height":1028,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":578,"Height":1028,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":578,"height":1028,"bitrate":250000,"fps":0,"quality":27},{"name":"1028p0","width":578,"height":1028,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/5920_3000_10400000.json b/video/fixtures/profiles_tests/5920_3000_10400000.json index 8c6359cbe..8dc4588a8 100644 --- a/video/fixtures/profiles_tests/5920_3000_10400000.json +++ b/video/fixtures/profiles_tests/5920_3000_10400000.json @@ -1 +1 @@ -{"Width":5920,"Height":3000,"Bitrate":10400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"3000p0","width":5920,"height":3000,"bitrate":10400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":134918,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":539675,"fps":0},{"name":"3000p0","width":5920,"height":3000,"bitrate":10400000,"fps":0}]} \ No newline at end of file +{"Width":5920,"Height":3000,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":161902,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":647610,"fps":0,"quality":27},{"name":"3000p0","width":5920,"height":3000,"bitrate":10400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/600_600_1500000.json b/video/fixtures/profiles_tests/600_600_1500000.json index a2552b346..161b7d7ac 100644 --- a/video/fixtures/profiles_tests/600_600_1500000.json +++ b/video/fixtures/profiles_tests/600_600_1500000.json @@ -1 +1 @@ -{"Width":600,"Height":600,"Bitrate":1500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"600p0","width":600,"height":600,"bitrate":1500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":960000,"fps":0},{"name":"600p0","width":600,"height":600,"bitrate":1500000,"fps":0}]} \ No newline at end of file +{"Width":600,"Height":600,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":600,"height":600,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/600_600_4400000.json b/video/fixtures/profiles_tests/600_600_4400000.json index 3cea0c195..e00fc45ee 100644 --- a/video/fixtures/profiles_tests/600_600_4400000.json +++ b/video/fixtures/profiles_tests/600_600_4400000.json @@ -1 +1 @@ -{"Width":600,"Height":600,"Bitrate":4400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"600p0","width":600,"height":600,"bitrate":4400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"600p0","width":600,"height":600,"bitrate":4400000,"fps":0}]} \ No newline at end of file +{"Width":600,"Height":600,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":600,"height":600,"bitrate":4400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/600_600_800000.json b/video/fixtures/profiles_tests/600_600_800000.json index 3f6c95c9f..ca2946df1 100644 --- a/video/fixtures/profiles_tests/600_600_800000.json +++ b/video/fixtures/profiles_tests/600_600_800000.json @@ -1 +1 @@ -{"Width":600,"Height":600,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":600,"height":600,"bitrate":400000,"fps":0},{"name":"600p0","width":600,"height":600,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":600,"height":600,"bitrate":400000,"fps":0},{"name":"600p0","width":600,"height":600,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":600,"Height":600,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":600,"height":600,"bitrate":400000,"fps":0,"quality":27},{"name":"600p0","width":600,"height":600,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/600_750_2500000.json b/video/fixtures/profiles_tests/600_750_2500000.json index 7e73571fe..205db94fc 100644 --- a/video/fixtures/profiles_tests/600_750_2500000.json +++ b/video/fixtures/profiles_tests/600_750_2500000.json @@ -1 +1 @@ -{"Width":600,"Height":750,"Bitrate":2500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"750p0","width":600,"height":750,"bitrate":2500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"750p0","width":600,"height":750,"bitrate":2500000,"fps":0}]} \ No newline at end of file +{"Width":600,"Height":750,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"750p0","width":600,"height":750,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/608_1080_1100000.json b/video/fixtures/profiles_tests/608_1080_1100000.json index 7de60c985..025a0ae20 100644 --- a/video/fixtures/profiles_tests/608_1080_1100000.json +++ b/video/fixtures/profiles_tests/608_1080_1100000.json @@ -1 +1 @@ -{"Width":608,"Height":1080,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":608,"height":1080,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":385964,"fps":0},{"name":"1080p0","width":608,"height":1080,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":608,"Height":1080,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":463157,"fps":0,"quality":27},{"name":"1080p0","width":608,"height":1080,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/608_1080_1200000.json b/video/fixtures/profiles_tests/608_1080_1200000.json index 534c70b1e..4c65d8478 100644 --- a/video/fixtures/profiles_tests/608_1080_1200000.json +++ b/video/fixtures/profiles_tests/608_1080_1200000.json @@ -1 +1 @@ -{"Width":608,"Height":1080,"Bitrate":1200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":608,"height":1080,"bitrate":1200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":421052,"fps":0},{"name":"1080p0","width":608,"height":1080,"bitrate":1200000,"fps":0}]} \ No newline at end of file +{"Width":608,"Height":1080,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":505263,"fps":0,"quality":27},{"name":"1080p0","width":608,"height":1080,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/608_1080_1600000.json b/video/fixtures/profiles_tests/608_1080_1600000.json index 9ce874955..7e12565cf 100644 --- a/video/fixtures/profiles_tests/608_1080_1600000.json +++ b/video/fixtures/profiles_tests/608_1080_1600000.json @@ -1 +1 @@ -{"Width":608,"Height":1080,"Bitrate":1600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1080p0","width":608,"height":1080,"bitrate":1600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":561403,"fps":0},{"name":"1080p0","width":608,"height":1080,"bitrate":1600000,"fps":0}]} \ No newline at end of file +{"Width":608,"Height":1080,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":673684,"fps":0,"quality":27},{"name":"1080p0","width":608,"height":1080,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/608_1080_200000.json b/video/fixtures/profiles_tests/608_1080_200000.json index 18e98471f..2628b26ba 100644 --- a/video/fixtures/profiles_tests/608_1080_200000.json +++ b/video/fixtures/profiles_tests/608_1080_200000.json @@ -1 +1 @@ -{"Width":608,"Height":1080,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":608,"height":1080,"bitrate":100000,"fps":0},{"name":"1080p0","width":608,"height":1080,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":608,"height":1080,"bitrate":100000,"fps":0},{"name":"1080p0","width":608,"height":1080,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":608,"Height":1080,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":608,"height":1080,"bitrate":100000,"fps":0,"quality":27},{"name":"1080p0","width":608,"height":1080,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/624_1280_1000000.json b/video/fixtures/profiles_tests/624_1280_1000000.json index 00beefd66..5b0151018 100644 --- a/video/fixtures/profiles_tests/624_1280_1000000.json +++ b/video/fixtures/profiles_tests/624_1280_1000000.json @@ -1 +1 @@ -{"Width":624,"Height":1280,"Bitrate":1000000,"ExpectedOutput":[{"name":"low-bitrate","width":624,"height":1280,"bitrate":500000,"fps":0},{"name":"1280p0","width":624,"height":1280,"bitrate":1000000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":624,"height":1280,"bitrate":500000,"fps":0},{"name":"1280p0","width":624,"height":1280,"bitrate":1000000,"fps":0}]} \ No newline at end of file +{"Width":624,"Height":1280,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":624,"height":1280,"bitrate":500000,"fps":0,"quality":27},{"name":"1280p0","width":624,"height":1280,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/624_526_700000.json b/video/fixtures/profiles_tests/624_526_700000.json index 8592d3dc1..7f4afb52a 100644 --- a/video/fixtures/profiles_tests/624_526_700000.json +++ b/video/fixtures/profiles_tests/624_526_700000.json @@ -1 +1 @@ -{"Width":624,"Height":526,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":624,"height":526,"bitrate":350000,"fps":0},{"name":"526p0","width":624,"height":526,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":624,"height":526,"bitrate":350000,"fps":0},{"name":"526p0","width":624,"height":526,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":624,"Height":526,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":624,"height":526,"bitrate":350000,"fps":0,"quality":27},{"name":"526p0","width":624,"height":526,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/624_832_1600000.json b/video/fixtures/profiles_tests/624_832_1600000.json index f09710d8e..2e1d8a055 100644 --- a/video/fixtures/profiles_tests/624_832_1600000.json +++ b/video/fixtures/profiles_tests/624_832_1600000.json @@ -1 +1 @@ -{"Width":624,"Height":832,"Bitrate":1600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"832p0","width":624,"height":832,"bitrate":1600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":710059,"fps":0},{"name":"832p0","width":624,"height":832,"bitrate":1600000,"fps":0}]} \ No newline at end of file +{"Width":624,"Height":832,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":852071,"fps":0,"quality":27},{"name":"832p0","width":624,"height":832,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/628_698_200000.json b/video/fixtures/profiles_tests/628_698_200000.json index 71453db7f..c7ab2affc 100644 --- a/video/fixtures/profiles_tests/628_698_200000.json +++ b/video/fixtures/profiles_tests/628_698_200000.json @@ -1 +1 @@ -{"Width":628,"Height":698,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":628,"height":698,"bitrate":100000,"fps":0},{"name":"698p0","width":628,"height":698,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":628,"height":698,"bitrate":100000,"fps":0},{"name":"698p0","width":628,"height":698,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":628,"Height":698,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":628,"height":698,"bitrate":100000,"fps":0,"quality":27},{"name":"698p0","width":628,"height":698,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/636_1000_1400000.json b/video/fixtures/profiles_tests/636_1000_1400000.json index 0b0bfa610..918276588 100644 --- a/video/fixtures/profiles_tests/636_1000_1400000.json +++ b/video/fixtures/profiles_tests/636_1000_1400000.json @@ -1 +1 @@ -{"Width":636,"Height":1000,"Bitrate":1400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1000p0","width":636,"height":1000,"bitrate":1400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":507169,"fps":0},{"name":"1000p0","width":636,"height":1000,"bitrate":1400000,"fps":0}]} \ No newline at end of file +{"Width":636,"Height":1000,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":608603,"fps":0,"quality":27},{"name":"1000p0","width":636,"height":1000,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_1138_1000000.json b/video/fixtures/profiles_tests/640_1138_1000000.json index 986bbeae4..93cab77f7 100644 --- a/video/fixtures/profiles_tests/640_1138_1000000.json +++ b/video/fixtures/profiles_tests/640_1138_1000000.json @@ -1 +1 @@ -{"Width":640,"Height":1138,"Bitrate":1000000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":1138,"bitrate":500000,"fps":0},{"name":"1138p0","width":640,"height":1138,"bitrate":1000000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":1138,"bitrate":500000,"fps":0},{"name":"1138p0","width":640,"height":1138,"bitrate":1000000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":1138,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":1138,"bitrate":500000,"fps":0,"quality":27},{"name":"1138p0","width":640,"height":1138,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_1138_5400000.json b/video/fixtures/profiles_tests/640_1138_5400000.json index b1e5c4957..00a60edc8 100644 --- a/video/fixtures/profiles_tests/640_1138_5400000.json +++ b/video/fixtures/profiles_tests/640_1138_5400000.json @@ -1 +1 @@ -{"Width":640,"Height":1138,"Bitrate":5400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1138p0","width":640,"height":1138,"bitrate":5400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1138p0","width":640,"height":1138,"bitrate":5400000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":1138,"Bitrate":5400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1138p0","width":640,"height":1138,"bitrate":5400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_332_2500000.json b/video/fixtures/profiles_tests/640_332_2500000.json index e7e5a83c4..8f2b58634 100644 --- a/video/fixtures/profiles_tests/640_332_2500000.json +++ b/video/fixtures/profiles_tests/640_332_2500000.json @@ -1 +1 @@ -{"Width":640,"Height":332,"Bitrate":2500000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":332,"bitrate":1250000,"fps":0},{"name":"332p0","width":640,"height":332,"bitrate":2500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":332,"bitrate":1250000,"fps":0},{"name":"332p0","width":640,"height":332,"bitrate":2500000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":332,"Bitrate":2500000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":332,"bitrate":1250000,"fps":0,"quality":27},{"name":"332p0","width":640,"height":332,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_332_300000.json b/video/fixtures/profiles_tests/640_332_300000.json index e1a315833..6e1071e9a 100644 --- a/video/fixtures/profiles_tests/640_332_300000.json +++ b/video/fixtures/profiles_tests/640_332_300000.json @@ -1 +1 @@ -{"Width":640,"Height":332,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":332,"bitrate":150000,"fps":0},{"name":"332p0","width":640,"height":332,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":332,"bitrate":150000,"fps":0},{"name":"332p0","width":640,"height":332,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":332,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":332,"bitrate":150000,"fps":0,"quality":27},{"name":"332p0","width":640,"height":332,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_352_1900000.json b/video/fixtures/profiles_tests/640_352_1900000.json index db4a2d5bb..74627ca18 100644 --- a/video/fixtures/profiles_tests/640_352_1900000.json +++ b/video/fixtures/profiles_tests/640_352_1900000.json @@ -1 +1 @@ -{"Width":640,"Height":352,"Bitrate":1900000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":352,"bitrate":950000,"fps":0},{"name":"352p0","width":640,"height":352,"bitrate":1900000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":352,"bitrate":950000,"fps":0},{"name":"352p0","width":640,"height":352,"bitrate":1900000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":352,"Bitrate":1900000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":352,"bitrate":950000,"fps":0,"quality":27},{"name":"352p0","width":640,"height":352,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_360_200000.json b/video/fixtures/profiles_tests/640_360_200000.json index 94d221946..512ace617 100644 --- a/video/fixtures/profiles_tests/640_360_200000.json +++ b/video/fixtures/profiles_tests/640_360_200000.json @@ -1 +1 @@ -{"Width":640,"Height":360,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":100000,"fps":0},{"name":"360p0","width":640,"height":360,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":100000,"fps":0},{"name":"360p0","width":640,"height":360,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":360,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":100000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_360_300000.json b/video/fixtures/profiles_tests/640_360_300000.json index 0095febd0..78be24fa9 100644 --- a/video/fixtures/profiles_tests/640_360_300000.json +++ b/video/fixtures/profiles_tests/640_360_300000.json @@ -1 +1 @@ -{"Width":640,"Height":360,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":150000,"fps":0},{"name":"360p0","width":640,"height":360,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":150000,"fps":0},{"name":"360p0","width":640,"height":360,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":360,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":150000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_360_400000.json b/video/fixtures/profiles_tests/640_360_400000.json index f1a489db7..ded4a6fbb 100644 --- a/video/fixtures/profiles_tests/640_360_400000.json +++ b/video/fixtures/profiles_tests/640_360_400000.json @@ -1 +1 @@ -{"Width":640,"Height":360,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":200000,"fps":0},{"name":"360p0","width":640,"height":360,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":200000,"fps":0},{"name":"360p0","width":640,"height":360,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":360,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":200000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_360_500000.json b/video/fixtures/profiles_tests/640_360_500000.json index dc0bc8956..e0eae0f71 100644 --- a/video/fixtures/profiles_tests/640_360_500000.json +++ b/video/fixtures/profiles_tests/640_360_500000.json @@ -1 +1 @@ -{"Width":640,"Height":360,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":250000,"fps":0},{"name":"360p0","width":640,"height":360,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":250000,"fps":0},{"name":"360p0","width":640,"height":360,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":360,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":250000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_360_600000.json b/video/fixtures/profiles_tests/640_360_600000.json index 792b37aa7..3a37f2157 100644 --- a/video/fixtures/profiles_tests/640_360_600000.json +++ b/video/fixtures/profiles_tests/640_360_600000.json @@ -1 +1 @@ -{"Width":640,"Height":360,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":300000,"fps":0},{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":300000,"fps":0},{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":360,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":300000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_360_800000.json b/video/fixtures/profiles_tests/640_360_800000.json index 5ab5095de..fc796ae24 100644 --- a/video/fixtures/profiles_tests/640_360_800000.json +++ b/video/fixtures/profiles_tests/640_360_800000.json @@ -1 +1 @@ -{"Width":640,"Height":360,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":400000,"fps":0},{"name":"360p0","width":640,"height":360,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":400000,"fps":0},{"name":"360p0","width":640,"height":360,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":360,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":400000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_368_400000.json b/video/fixtures/profiles_tests/640_368_400000.json index 5a31ce9eb..ccdeff3e2 100644 --- a/video/fixtures/profiles_tests/640_368_400000.json +++ b/video/fixtures/profiles_tests/640_368_400000.json @@ -1 +1 @@ -{"Width":640,"Height":368,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":368,"bitrate":200000,"fps":0},{"name":"368p0","width":640,"height":368,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":368,"bitrate":200000,"fps":0},{"name":"368p0","width":640,"height":368,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":368,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":368,"bitrate":200000,"fps":0,"quality":27},{"name":"368p0","width":640,"height":368,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_640_1400000.json b/video/fixtures/profiles_tests/640_640_1400000.json index ce8b71f32..24ff0319d 100644 --- a/video/fixtures/profiles_tests/640_640_1400000.json +++ b/video/fixtures/profiles_tests/640_640_1400000.json @@ -1 +1 @@ -{"Width":640,"Height":640,"Bitrate":1400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"640p0","width":640,"height":640,"bitrate":1400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":787500,"fps":0},{"name":"640p0","width":640,"height":640,"bitrate":1400000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":640,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":945000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_640_1500000.json b/video/fixtures/profiles_tests/640_640_1500000.json index 88f1e6973..5199f930e 100644 --- a/video/fixtures/profiles_tests/640_640_1500000.json +++ b/video/fixtures/profiles_tests/640_640_1500000.json @@ -1 +1 @@ -{"Width":640,"Height":640,"Bitrate":1500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"640p0","width":640,"height":640,"bitrate":1500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":843750,"fps":0},{"name":"640p0","width":640,"height":640,"bitrate":1500000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":640,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_640_1700000.json b/video/fixtures/profiles_tests/640_640_1700000.json index 4e773f318..cbd0c1643 100644 --- a/video/fixtures/profiles_tests/640_640_1700000.json +++ b/video/fixtures/profiles_tests/640_640_1700000.json @@ -1 +1 @@ -{"Width":640,"Height":640,"Bitrate":1700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"640p0","width":640,"height":640,"bitrate":1700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":956250,"fps":0},{"name":"640p0","width":640,"height":640,"bitrate":1700000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":640,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_640_400000.json b/video/fixtures/profiles_tests/640_640_400000.json index 4eb061a95..a3f4b167f 100644 --- a/video/fixtures/profiles_tests/640_640_400000.json +++ b/video/fixtures/profiles_tests/640_640_400000.json @@ -1 +1 @@ -{"Width":640,"Height":640,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":200000,"fps":0},{"name":"640p0","width":640,"height":640,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":200000,"fps":0},{"name":"640p0","width":640,"height":640,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":640,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":200000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_640_600000.json b/video/fixtures/profiles_tests/640_640_600000.json index bc1f72f31..b5534c33a 100644 --- a/video/fixtures/profiles_tests/640_640_600000.json +++ b/video/fixtures/profiles_tests/640_640_600000.json @@ -1 +1 @@ -{"Width":640,"Height":640,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":300000,"fps":0},{"name":"640p0","width":640,"height":640,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":300000,"fps":0},{"name":"640p0","width":640,"height":640,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":640,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":300000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_640_700000.json b/video/fixtures/profiles_tests/640_640_700000.json index 4cd54c263..5d1f90fa4 100644 --- a/video/fixtures/profiles_tests/640_640_700000.json +++ b/video/fixtures/profiles_tests/640_640_700000.json @@ -1 +1 @@ -{"Width":640,"Height":640,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":350000,"fps":0},{"name":"640p0","width":640,"height":640,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":350000,"fps":0},{"name":"640p0","width":640,"height":640,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":640,"Height":640,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":350000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/658_1080_800000.json b/video/fixtures/profiles_tests/658_1080_800000.json index f3d9b7b08..10ed7ef0f 100644 --- a/video/fixtures/profiles_tests/658_1080_800000.json +++ b/video/fixtures/profiles_tests/658_1080_800000.json @@ -1 +1 @@ -{"Width":658,"Height":1080,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":658,"height":1080,"bitrate":400000,"fps":0},{"name":"1080p0","width":658,"height":1080,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":658,"height":1080,"bitrate":400000,"fps":0},{"name":"1080p0","width":658,"height":1080,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":658,"Height":1080,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":658,"height":1080,"bitrate":400000,"fps":0,"quality":27},{"name":"1080p0","width":658,"height":1080,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/684_1216_1900000.json b/video/fixtures/profiles_tests/684_1216_1900000.json index d0c1c62fb..451eec24b 100644 --- a/video/fixtures/profiles_tests/684_1216_1900000.json +++ b/video/fixtures/profiles_tests/684_1216_1900000.json @@ -1 +1 @@ -{"Width":684,"Height":1216,"Bitrate":1900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1216p0","width":684,"height":1216,"bitrate":1900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":526315,"fps":0},{"name":"1216p0","width":684,"height":1216,"bitrate":1900000,"fps":0}]} \ No newline at end of file +{"Width":684,"Height":1216,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":631578,"fps":0,"quality":27},{"name":"1216p0","width":684,"height":1216,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/704_1280_2700000.json b/video/fixtures/profiles_tests/704_1280_2700000.json index 7af047bab..cd12da9e3 100644 --- a/video/fixtures/profiles_tests/704_1280_2700000.json +++ b/video/fixtures/profiles_tests/704_1280_2700000.json @@ -1 +1 @@ -{"Width":704,"Height":1280,"Bitrate":2700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":704,"height":1280,"bitrate":2700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":690340,"fps":0},{"name":"1280p0","width":704,"height":1280,"bitrate":2700000,"fps":0}]} \ No newline at end of file +{"Width":704,"Height":1280,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":828409,"fps":0,"quality":27},{"name":"1280p0","width":704,"height":1280,"bitrate":2700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/704_1280_500000.json b/video/fixtures/profiles_tests/704_1280_500000.json index 77e940985..bfc4432ed 100644 --- a/video/fixtures/profiles_tests/704_1280_500000.json +++ b/video/fixtures/profiles_tests/704_1280_500000.json @@ -1 +1 @@ -{"Width":704,"Height":1280,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":704,"height":1280,"bitrate":250000,"fps":0},{"name":"1280p0","width":704,"height":1280,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":704,"height":1280,"bitrate":250000,"fps":0},{"name":"1280p0","width":704,"height":1280,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":704,"Height":1280,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":704,"height":1280,"bitrate":250000,"fps":0,"quality":27},{"name":"1280p0","width":704,"height":1280,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/718_720_600000.json b/video/fixtures/profiles_tests/718_720_600000.json index 847300823..86d7d8515 100644 --- a/video/fixtures/profiles_tests/718_720_600000.json +++ b/video/fixtures/profiles_tests/718_720_600000.json @@ -1 +1 @@ -{"Width":718,"Height":720,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":718,"height":720,"bitrate":300000,"fps":0},{"name":"720p0","width":718,"height":720,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":718,"height":720,"bitrate":300000,"fps":0},{"name":"720p0","width":718,"height":720,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":718,"Height":720,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":718,"height":720,"bitrate":300000,"fps":0,"quality":27},{"name":"720p0","width":718,"height":720,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1120_1200000.json b/video/fixtures/profiles_tests/720_1120_1200000.json index cfa9afdcf..989cd7333 100644 --- a/video/fixtures/profiles_tests/720_1120_1200000.json +++ b/video/fixtures/profiles_tests/720_1120_1200000.json @@ -1 +1 @@ -{"Width":720,"Height":1120,"Bitrate":1200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1120p0","width":720,"height":1120,"bitrate":1200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":342857,"fps":0},{"name":"1120p0","width":720,"height":1120,"bitrate":1200000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1120,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":411428,"fps":0,"quality":27},{"name":"1120p0","width":720,"height":1120,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1126_800000.json b/video/fixtures/profiles_tests/720_1126_800000.json index 3be16edc9..9ff8f63d7 100644 --- a/video/fixtures/profiles_tests/720_1126_800000.json +++ b/video/fixtures/profiles_tests/720_1126_800000.json @@ -1 +1 @@ -{"Width":720,"Height":1126,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":1126,"bitrate":400000,"fps":0},{"name":"1126p0","width":720,"height":1126,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1126,"bitrate":400000,"fps":0},{"name":"1126p0","width":720,"height":1126,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1126,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1126,"bitrate":400000,"fps":0,"quality":27},{"name":"1126p0","width":720,"height":1126,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1000000.json b/video/fixtures/profiles_tests/720_1280_1000000.json index 2533dee22..aefd5e730 100644 --- a/video/fixtures/profiles_tests/720_1280_1000000.json +++ b/video/fixtures/profiles_tests/720_1280_1000000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1000000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":500000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1000000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":500000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1000000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":500000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1100000.json b/video/fixtures/profiles_tests/720_1280_1100000.json index 51a831bd3..4cc6455c6 100644 --- a/video/fixtures/profiles_tests/720_1280_1100000.json +++ b/video/fixtures/profiles_tests/720_1280_1100000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":275000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":330000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1200000.json b/video/fixtures/profiles_tests/720_1280_1200000.json index 62c0be0d5..cdc0a2f5c 100644 --- a/video/fixtures/profiles_tests/720_1280_1200000.json +++ b/video/fixtures/profiles_tests/720_1280_1200000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":300000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1200000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1300000.json b/video/fixtures/profiles_tests/720_1280_1300000.json index 064e6eb34..5152866ee 100644 --- a/video/fixtures/profiles_tests/720_1280_1300000.json +++ b/video/fixtures/profiles_tests/720_1280_1300000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":325000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1300000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":390000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1400000.json b/video/fixtures/profiles_tests/720_1280_1400000.json index 038c81afb..540f0ec3d 100644 --- a/video/fixtures/profiles_tests/720_1280_1400000.json +++ b/video/fixtures/profiles_tests/720_1280_1400000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":350000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1400000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":420000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1500000.json b/video/fixtures/profiles_tests/720_1280_1500000.json index 0309edae9..ea67e49df 100644 --- a/video/fixtures/profiles_tests/720_1280_1500000.json +++ b/video/fixtures/profiles_tests/720_1280_1500000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":375000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1500000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":450000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1600000.json b/video/fixtures/profiles_tests/720_1280_1600000.json index 0744373d0..1566b9cd2 100644 --- a/video/fixtures/profiles_tests/720_1280_1600000.json +++ b/video/fixtures/profiles_tests/720_1280_1600000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":400000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1600000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1700000.json b/video/fixtures/profiles_tests/720_1280_1700000.json index f393315ec..d2e4468f7 100644 --- a/video/fixtures/profiles_tests/720_1280_1700000.json +++ b/video/fixtures/profiles_tests/720_1280_1700000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":425000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1700000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":510000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1800000.json b/video/fixtures/profiles_tests/720_1280_1800000.json index c1cac0af1..455a76e40 100644 --- a/video/fixtures/profiles_tests/720_1280_1800000.json +++ b/video/fixtures/profiles_tests/720_1280_1800000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":450000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1800000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":540000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1900000.json b/video/fixtures/profiles_tests/720_1280_1900000.json index 63f5b80be..5c1d22e5c 100644 --- a/video/fixtures/profiles_tests/720_1280_1900000.json +++ b/video/fixtures/profiles_tests/720_1280_1900000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":475000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":1900000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":570000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2000000.json b/video/fixtures/profiles_tests/720_1280_2000000.json index ed6821a05..ff7e03bf2 100644 --- a/video/fixtures/profiles_tests/720_1280_2000000.json +++ b/video/fixtures/profiles_tests/720_1280_2000000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":500000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2000000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2100000.json b/video/fixtures/profiles_tests/720_1280_2100000.json index 93e71ca1f..b63814dc4 100644 --- a/video/fixtures/profiles_tests/720_1280_2100000.json +++ b/video/fixtures/profiles_tests/720_1280_2100000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":525000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2100000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":630000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2200000.json b/video/fixtures/profiles_tests/720_1280_2200000.json index 2526c0266..5ba1fe398 100644 --- a/video/fixtures/profiles_tests/720_1280_2200000.json +++ b/video/fixtures/profiles_tests/720_1280_2200000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":550000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2200000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":660000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2300000.json b/video/fixtures/profiles_tests/720_1280_2300000.json index 96f366655..30c749e74 100644 --- a/video/fixtures/profiles_tests/720_1280_2300000.json +++ b/video/fixtures/profiles_tests/720_1280_2300000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":575000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2300000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":690000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2400000.json b/video/fixtures/profiles_tests/720_1280_2400000.json index ae20046e4..1d61d2d81 100644 --- a/video/fixtures/profiles_tests/720_1280_2400000.json +++ b/video/fixtures/profiles_tests/720_1280_2400000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2400000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":720000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2500000.json b/video/fixtures/profiles_tests/720_1280_2500000.json index fc8853b50..207469de5 100644 --- a/video/fixtures/profiles_tests/720_1280_2500000.json +++ b/video/fixtures/profiles_tests/720_1280_2500000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":625000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2500000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":750000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2600000.json b/video/fixtures/profiles_tests/720_1280_2600000.json index f5db70c4c..cb4176152 100644 --- a/video/fixtures/profiles_tests/720_1280_2600000.json +++ b/video/fixtures/profiles_tests/720_1280_2600000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":650000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2600000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":780000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2900000.json b/video/fixtures/profiles_tests/720_1280_2900000.json index 99e79191b..735777d1a 100644 --- a/video/fixtures/profiles_tests/720_1280_2900000.json +++ b/video/fixtures/profiles_tests/720_1280_2900000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":725000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":2900000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":870000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_300000.json b/video/fixtures/profiles_tests/720_1280_300000.json index c74b722ea..a2fab5061 100644 --- a/video/fixtures/profiles_tests/720_1280_300000.json +++ b/video/fixtures/profiles_tests/720_1280_300000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":150000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":150000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":150000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_3000000.json b/video/fixtures/profiles_tests/720_1280_3000000.json index 1b9f1947b..19e6668e9 100644 --- a/video/fixtures/profiles_tests/720_1280_3000000.json +++ b/video/fixtures/profiles_tests/720_1280_3000000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":3000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":3000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":750000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":3000000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":900000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_3100000.json b/video/fixtures/profiles_tests/720_1280_3100000.json index d4d9b69c8..9f0dfd698 100644 --- a/video/fixtures/profiles_tests/720_1280_3100000.json +++ b/video/fixtures/profiles_tests/720_1280_3100000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":3100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":3100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":775000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":3100000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":930000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_3500000.json b/video/fixtures/profiles_tests/720_1280_3500000.json index 6569879b2..74d238cc4 100644 --- a/video/fixtures/profiles_tests/720_1280_3500000.json +++ b/video/fixtures/profiles_tests/720_1280_3500000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":3500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":3500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":875000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":3500000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":3500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_3700000.json b/video/fixtures/profiles_tests/720_1280_3700000.json index 65b21f675..49aced809 100644 --- a/video/fixtures/profiles_tests/720_1280_3700000.json +++ b/video/fixtures/profiles_tests/720_1280_3700000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":3700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":3700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":925000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":3700000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":3700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_400000.json b/video/fixtures/profiles_tests/720_1280_400000.json index 7822c42ff..6c9735389 100644 --- a/video/fixtures/profiles_tests/720_1280_400000.json +++ b/video/fixtures/profiles_tests/720_1280_400000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":200000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":200000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":200000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_500000.json b/video/fixtures/profiles_tests/720_1280_500000.json index b8c56710b..f25934ead 100644 --- a/video/fixtures/profiles_tests/720_1280_500000.json +++ b/video/fixtures/profiles_tests/720_1280_500000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":250000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":250000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":250000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_5700000.json b/video/fixtures/profiles_tests/720_1280_5700000.json index 2fd537cf9..b7e5f48ba 100644 --- a/video/fixtures/profiles_tests/720_1280_5700000.json +++ b/video/fixtures/profiles_tests/720_1280_5700000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":5700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":5700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":5700000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":5700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":5700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_600000.json b/video/fixtures/profiles_tests/720_1280_600000.json index 89013a413..5f36be64d 100644 --- a/video/fixtures/profiles_tests/720_1280_600000.json +++ b/video/fixtures/profiles_tests/720_1280_600000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":300000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":300000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":300000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_6300000.json b/video/fixtures/profiles_tests/720_1280_6300000.json index b12e002e6..ca6f8defe 100644 --- a/video/fixtures/profiles_tests/720_1280_6300000.json +++ b/video/fixtures/profiles_tests/720_1280_6300000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":6300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":6300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":6300000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":6300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":6300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_6400000.json b/video/fixtures/profiles_tests/720_1280_6400000.json index 83c929aa5..3b0155b04 100644 --- a/video/fixtures/profiles_tests/720_1280_6400000.json +++ b/video/fixtures/profiles_tests/720_1280_6400000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":6400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":6400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":6400000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":6400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":6400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_700000.json b/video/fixtures/profiles_tests/720_1280_700000.json index 8a8ac115c..06f3fd7a3 100644 --- a/video/fixtures/profiles_tests/720_1280_700000.json +++ b/video/fixtures/profiles_tests/720_1280_700000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":350000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":350000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":350000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_7100000.json b/video/fixtures/profiles_tests/720_1280_7100000.json index a132a55e4..596d208c7 100644 --- a/video/fixtures/profiles_tests/720_1280_7100000.json +++ b/video/fixtures/profiles_tests/720_1280_7100000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":7100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":7100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":7100000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":7100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":7100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_7200000.json b/video/fixtures/profiles_tests/720_1280_7200000.json index 32530e49c..efd98296f 100644 --- a/video/fixtures/profiles_tests/720_1280_7200000.json +++ b/video/fixtures/profiles_tests/720_1280_7200000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":7200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":7200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":7200000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":7200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":7200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_800000.json b/video/fixtures/profiles_tests/720_1280_800000.json index 3f8f170f2..5ba4f9cbf 100644 --- a/video/fixtures/profiles_tests/720_1280_800000.json +++ b/video/fixtures/profiles_tests/720_1280_800000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":400000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":400000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":400000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_900000.json b/video/fixtures/profiles_tests/720_1280_900000.json index 1ac827582..8a62d8cc9 100644 --- a/video/fixtures/profiles_tests/720_1280_900000.json +++ b/video/fixtures/profiles_tests/720_1280_900000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":900000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":450000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":900000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":450000,"fps":0},{"name":"1280p0","width":720,"height":1280,"bitrate":900000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":450000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_404_300000.json b/video/fixtures/profiles_tests/720_404_300000.json index 960a5f658..4a29c2aec 100644 --- a/video/fixtures/profiles_tests/720_404_300000.json +++ b/video/fixtures/profiles_tests/720_404_300000.json @@ -1 +1 @@ -{"Width":720,"Height":404,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":404,"bitrate":150000,"fps":0},{"name":"404p0","width":720,"height":404,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":404,"bitrate":150000,"fps":0},{"name":"404p0","width":720,"height":404,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":404,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":404,"bitrate":150000,"fps":0,"quality":27},{"name":"404p0","width":720,"height":404,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_1000000.json b/video/fixtures/profiles_tests/720_416_1000000.json index 0db2c209a..be34c15ab 100644 --- a/video/fixtures/profiles_tests/720_416_1000000.json +++ b/video/fixtures/profiles_tests/720_416_1000000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":1000000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":416,"bitrate":500000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":1000000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":416,"bitrate":500000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":1000000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":416,"bitrate":500000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_1100000.json b/video/fixtures/profiles_tests/720_416_1100000.json index a374a176b..94b410990 100644 --- a/video/fixtures/profiles_tests/720_416_1100000.json +++ b/video/fixtures/profiles_tests/720_416_1100000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":846153,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_1200000.json b/video/fixtures/profiles_tests/720_416_1200000.json index dd0f525df..abab5280a 100644 --- a/video/fixtures/profiles_tests/720_416_1200000.json +++ b/video/fixtures/profiles_tests/720_416_1200000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":1200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":1200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":923076,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":1200000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_1900000.json b/video/fixtures/profiles_tests/720_416_1900000.json index 96504f7ef..a7246b365 100644 --- a/video/fixtures/profiles_tests/720_416_1900000.json +++ b/video/fixtures/profiles_tests/720_416_1900000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":1900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":1900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":1900000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_2000000.json b/video/fixtures/profiles_tests/720_416_2000000.json index 7a3d98c4f..d19a2714f 100644 --- a/video/fixtures/profiles_tests/720_416_2000000.json +++ b/video/fixtures/profiles_tests/720_416_2000000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":2000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":2000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":2000000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_2100000.json b/video/fixtures/profiles_tests/720_416_2100000.json index 356e108e9..ed7e9ea80 100644 --- a/video/fixtures/profiles_tests/720_416_2100000.json +++ b/video/fixtures/profiles_tests/720_416_2100000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":2100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":2100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":2100000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_2300000.json b/video/fixtures/profiles_tests/720_416_2300000.json index b0abdb42e..3b9c84e11 100644 --- a/video/fixtures/profiles_tests/720_416_2300000.json +++ b/video/fixtures/profiles_tests/720_416_2300000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":2300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":2300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":2300000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_2400000.json b/video/fixtures/profiles_tests/720_416_2400000.json index 537c25b30..92401d4c6 100644 --- a/video/fixtures/profiles_tests/720_416_2400000.json +++ b/video/fixtures/profiles_tests/720_416_2400000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":2400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":2400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"416p0","width":720,"height":416,"bitrate":2400000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_1000000.json b/video/fixtures/profiles_tests/720_720_1000000.json index 9f461995f..47ab4b494 100644 --- a/video/fixtures/profiles_tests/720_720_1000000.json +++ b/video/fixtures/profiles_tests/720_720_1000000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":1000000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":500000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":1000000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":500000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":1000000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":500000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_1100000.json b/video/fixtures/profiles_tests/720_720_1100000.json index 5e0e21c0f..c9de0baed 100644 --- a/video/fixtures/profiles_tests/720_720_1100000.json +++ b/video/fixtures/profiles_tests/720_720_1100000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":488888,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":586666,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_1200000.json b/video/fixtures/profiles_tests/720_720_1200000.json index 522fce1ae..53f41ecb2 100644 --- a/video/fixtures/profiles_tests/720_720_1200000.json +++ b/video/fixtures/profiles_tests/720_720_1200000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":1200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":1200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":533333,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":1200000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":640000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_1700000.json b/video/fixtures/profiles_tests/720_720_1700000.json index 2519a6870..a1872bead 100644 --- a/video/fixtures/profiles_tests/720_720_1700000.json +++ b/video/fixtures/profiles_tests/720_720_1700000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":1700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":1700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":755555,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":1700000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":906666,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_2500000.json b/video/fixtures/profiles_tests/720_720_2500000.json index 0c9414bd7..10ab9c83c 100644 --- a/video/fixtures/profiles_tests/720_720_2500000.json +++ b/video/fixtures/profiles_tests/720_720_2500000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":2500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":2500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":2500000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_300000.json b/video/fixtures/profiles_tests/720_720_300000.json index 9e8c8796f..a8de66f4a 100644 --- a/video/fixtures/profiles_tests/720_720_300000.json +++ b/video/fixtures/profiles_tests/720_720_300000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":300000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":150000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":300000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":150000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":300000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":150000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_400000.json b/video/fixtures/profiles_tests/720_720_400000.json index 09abe19d6..3bdf767ea 100644 --- a/video/fixtures/profiles_tests/720_720_400000.json +++ b/video/fixtures/profiles_tests/720_720_400000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":400000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":200000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":400000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":200000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":400000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":200000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_600000.json b/video/fixtures/profiles_tests/720_720_600000.json index 5b46718ee..c8edcf54c 100644 --- a/video/fixtures/profiles_tests/720_720_600000.json +++ b/video/fixtures/profiles_tests/720_720_600000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":300000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":300000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":300000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_700000.json b/video/fixtures/profiles_tests/720_720_700000.json index a4a9c8ad7..8e5b3584e 100644 --- a/video/fixtures/profiles_tests/720_720_700000.json +++ b/video/fixtures/profiles_tests/720_720_700000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":350000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":350000,"fps":0},{"name":"720p0","width":720,"height":720,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":350000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_900_1300000.json b/video/fixtures/profiles_tests/720_900_1300000.json index ee545fb5f..2833362d0 100644 --- a/video/fixtures/profiles_tests/720_900_1300000.json +++ b/video/fixtures/profiles_tests/720_900_1300000.json @@ -1 +1 @@ -{"Width":720,"Height":900,"Bitrate":1300000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"900p0","width":720,"height":900,"bitrate":1300000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":462222,"fps":0},{"name":"900p0","width":720,"height":900,"bitrate":1300000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":900,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":554666,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":1300000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_900_1800000.json b/video/fixtures/profiles_tests/720_900_1800000.json index 5e997e7fd..ada675b2e 100644 --- a/video/fixtures/profiles_tests/720_900_1800000.json +++ b/video/fixtures/profiles_tests/720_900_1800000.json @@ -1 +1 @@ -{"Width":720,"Height":900,"Bitrate":1800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"900p0","width":720,"height":900,"bitrate":1800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":640000,"fps":0},{"name":"900p0","width":720,"height":900,"bitrate":1800000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":900,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":768000,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_900_200000.json b/video/fixtures/profiles_tests/720_900_200000.json index 329bf9bc7..4954187ff 100644 --- a/video/fixtures/profiles_tests/720_900_200000.json +++ b/video/fixtures/profiles_tests/720_900_200000.json @@ -1 +1 @@ -{"Width":720,"Height":900,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":900,"bitrate":100000,"fps":0},{"name":"900p0","width":720,"height":900,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":900,"bitrate":100000,"fps":0},{"name":"900p0","width":720,"height":900,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":900,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":900,"bitrate":100000,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_900_4400000.json b/video/fixtures/profiles_tests/720_900_4400000.json index 14a3dffed..71c622424 100644 --- a/video/fixtures/profiles_tests/720_900_4400000.json +++ b/video/fixtures/profiles_tests/720_900_4400000.json @@ -1 +1 @@ -{"Width":720,"Height":900,"Bitrate":4400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"900p0","width":720,"height":900,"bitrate":4400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"900p0","width":720,"height":900,"bitrate":4400000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":900,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":4400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_900_500000.json b/video/fixtures/profiles_tests/720_900_500000.json index 8c45487e8..8d145dc5d 100644 --- a/video/fixtures/profiles_tests/720_900_500000.json +++ b/video/fixtures/profiles_tests/720_900_500000.json @@ -1 +1 @@ -{"Width":720,"Height":900,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":720,"height":900,"bitrate":250000,"fps":0},{"name":"900p0","width":720,"height":900,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":720,"height":900,"bitrate":250000,"fps":0},{"name":"900p0","width":720,"height":900,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":900,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":900,"bitrate":250000,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_966_1700000.json b/video/fixtures/profiles_tests/720_966_1700000.json index 1528d825f..19e1bb24e 100644 --- a/video/fixtures/profiles_tests/720_966_1700000.json +++ b/video/fixtures/profiles_tests/720_966_1700000.json @@ -1 +1 @@ -{"Width":720,"Height":966,"Bitrate":1700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"966p0","width":720,"height":966,"bitrate":1700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":563146,"fps":0},{"name":"966p0","width":720,"height":966,"bitrate":1700000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":966,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":675776,"fps":0,"quality":27},{"name":"966p0","width":720,"height":966,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_978_1800000.json b/video/fixtures/profiles_tests/720_978_1800000.json index bd25cbc63..5058f6256 100644 --- a/video/fixtures/profiles_tests/720_978_1800000.json +++ b/video/fixtures/profiles_tests/720_978_1800000.json @@ -1 +1 @@ -{"Width":720,"Height":978,"Bitrate":1800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"978p0","width":720,"height":978,"bitrate":1800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":588957,"fps":0},{"name":"978p0","width":720,"height":978,"bitrate":1800000,"fps":0}]} \ No newline at end of file +{"Width":720,"Height":978,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":706748,"fps":0,"quality":27},{"name":"978p0","width":720,"height":978,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/726_1280_2600000.json b/video/fixtures/profiles_tests/726_1280_2600000.json index 038b4a229..99e8948d6 100644 --- a/video/fixtures/profiles_tests/726_1280_2600000.json +++ b/video/fixtures/profiles_tests/726_1280_2600000.json @@ -1 +1 @@ -{"Width":726,"Height":1280,"Bitrate":2600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":726,"height":1280,"bitrate":2600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":644628,"fps":0},{"name":"1280p0","width":726,"height":1280,"bitrate":2600000,"fps":0}]} \ No newline at end of file +{"Width":726,"Height":1280,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":773553,"fps":0,"quality":27},{"name":"1280p0","width":726,"height":1280,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/734_1016_10200000.json b/video/fixtures/profiles_tests/734_1016_10200000.json index 7fa503bd5..30614f21e 100644 --- a/video/fixtures/profiles_tests/734_1016_10200000.json +++ b/video/fixtures/profiles_tests/734_1016_10200000.json @@ -1 +1 @@ -{"Width":734,"Height":1016,"Bitrate":10200000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1016p0","width":734,"height":1016,"bitrate":10200000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1016p0","width":734,"height":1016,"bitrate":10200000,"fps":0}]} \ No newline at end of file +{"Width":734,"Height":1016,"Bitrate":10200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":10200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/734_1016_3700000.json b/video/fixtures/profiles_tests/734_1016_3700000.json index 4388e7b24..db5706827 100644 --- a/video/fixtures/profiles_tests/734_1016_3700000.json +++ b/video/fixtures/profiles_tests/734_1016_3700000.json @@ -1 +1 @@ -{"Width":734,"Height":1016,"Bitrate":3700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1016p0","width":734,"height":1016,"bitrate":3700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1016p0","width":734,"height":1016,"bitrate":3700000,"fps":0}]} \ No newline at end of file +{"Width":734,"Height":1016,"Bitrate":3700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":3700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/734_1016_5900000.json b/video/fixtures/profiles_tests/734_1016_5900000.json index 929d4d324..0440ed084 100644 --- a/video/fixtures/profiles_tests/734_1016_5900000.json +++ b/video/fixtures/profiles_tests/734_1016_5900000.json @@ -1 +1 @@ -{"Width":734,"Height":1016,"Bitrate":5900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1016p0","width":734,"height":1016,"bitrate":5900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1016p0","width":734,"height":1016,"bitrate":5900000,"fps":0}]} \ No newline at end of file +{"Width":734,"Height":1016,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":5900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/734_1016_6400000.json b/video/fixtures/profiles_tests/734_1016_6400000.json index f7f3092ac..d0b5fad6c 100644 --- a/video/fixtures/profiles_tests/734_1016_6400000.json +++ b/video/fixtures/profiles_tests/734_1016_6400000.json @@ -1 +1 @@ -{"Width":734,"Height":1016,"Bitrate":6400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1016p0","width":734,"height":1016,"bitrate":6400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1016p0","width":734,"height":1016,"bitrate":6400000,"fps":0}]} \ No newline at end of file +{"Width":734,"Height":1016,"Bitrate":6400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":6400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/734_1016_9500000.json b/video/fixtures/profiles_tests/734_1016_9500000.json index 538515e94..c888f2869 100644 --- a/video/fixtures/profiles_tests/734_1016_9500000.json +++ b/video/fixtures/profiles_tests/734_1016_9500000.json @@ -1 +1 @@ -{"Width":734,"Height":1016,"Bitrate":9500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1016p0","width":734,"height":1016,"bitrate":9500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1016p0","width":734,"height":1016,"bitrate":9500000,"fps":0}]} \ No newline at end of file +{"Width":734,"Height":1016,"Bitrate":9500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":9500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/736_1280_3000000.json b/video/fixtures/profiles_tests/736_1280_3000000.json index 2294820d3..586b29ca6 100644 --- a/video/fixtures/profiles_tests/736_1280_3000000.json +++ b/video/fixtures/profiles_tests/736_1280_3000000.json @@ -1 +1 @@ -{"Width":736,"Height":1280,"Bitrate":3000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1280p0","width":736,"height":1280,"bitrate":3000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":733695,"fps":0},{"name":"1280p0","width":736,"height":1280,"bitrate":3000000,"fps":0}]} \ No newline at end of file +{"Width":736,"Height":1280,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":880434,"fps":0,"quality":27},{"name":"1280p0","width":736,"height":1280,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/740_1080_1000000.json b/video/fixtures/profiles_tests/740_1080_1000000.json index 705679fa2..b37a541e2 100644 --- a/video/fixtures/profiles_tests/740_1080_1000000.json +++ b/video/fixtures/profiles_tests/740_1080_1000000.json @@ -1 +1 @@ -{"Width":740,"Height":1080,"Bitrate":1000000,"ExpectedOutput":[{"name":"low-bitrate","width":740,"height":1080,"bitrate":500000,"fps":0},{"name":"1080p0","width":740,"height":1080,"bitrate":1000000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":740,"height":1080,"bitrate":500000,"fps":0},{"name":"1080p0","width":740,"height":1080,"bitrate":1000000,"fps":0}]} \ No newline at end of file +{"Width":740,"Height":1080,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":740,"height":1080,"bitrate":500000,"fps":0,"quality":27},{"name":"1080p0","width":740,"height":1080,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/750_814_10700000.json b/video/fixtures/profiles_tests/750_814_10700000.json index 9f84e1bee..a9bcfce02 100644 --- a/video/fixtures/profiles_tests/750_814_10700000.json +++ b/video/fixtures/profiles_tests/750_814_10700000.json @@ -1 +1 @@ -{"Width":750,"Height":814,"Bitrate":10700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"814p0","width":750,"height":814,"bitrate":10700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"814p0","width":750,"height":814,"bitrate":10700000,"fps":0}]} \ No newline at end of file +{"Width":750,"Height":814,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"814p0","width":750,"height":814,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/756_756_14800000.json b/video/fixtures/profiles_tests/756_756_14800000.json index 6e5732d83..1594ff830 100644 --- a/video/fixtures/profiles_tests/756_756_14800000.json +++ b/video/fixtures/profiles_tests/756_756_14800000.json @@ -1 +1 @@ -{"Width":756,"Height":756,"Bitrate":14800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"756p0","width":756,"height":756,"bitrate":14800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"756p0","width":756,"height":756,"bitrate":14800000,"fps":0}]} \ No newline at end of file +{"Width":756,"Height":756,"Bitrate":14800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"756p0","width":756,"height":756,"bitrate":14800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/768_1024_17600000.json b/video/fixtures/profiles_tests/768_1024_17600000.json index 1519a1075..4460d87c8 100644 --- a/video/fixtures/profiles_tests/768_1024_17600000.json +++ b/video/fixtures/profiles_tests/768_1024_17600000.json @@ -1 +1 @@ -{"Width":768,"Height":1024,"Bitrate":17600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":768,"height":1024,"bitrate":17600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":768,"height":1024,"bitrate":17600000,"fps":0}]} \ No newline at end of file +{"Width":768,"Height":1024,"Bitrate":17600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":768,"height":1024,"bitrate":17600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/768_1024_23100000.json b/video/fixtures/profiles_tests/768_1024_23100000.json index 45940bb20..d1f509840 100644 --- a/video/fixtures/profiles_tests/768_1024_23100000.json +++ b/video/fixtures/profiles_tests/768_1024_23100000.json @@ -1 +1 @@ -{"Width":768,"Height":1024,"Bitrate":23100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":768,"height":1024,"bitrate":23100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1024p0","width":768,"height":1024,"bitrate":23100000,"fps":0}]} \ No newline at end of file +{"Width":768,"Height":1024,"Bitrate":23100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":768,"height":1024,"bitrate":23100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/770_1000_7400000.json b/video/fixtures/profiles_tests/770_1000_7400000.json index 7e6791d87..17bf3f42f 100644 --- a/video/fixtures/profiles_tests/770_1000_7400000.json +++ b/video/fixtures/profiles_tests/770_1000_7400000.json @@ -1 +1 @@ -{"Width":770,"Height":1000,"Bitrate":7400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":770,"height":1000,"bitrate":7400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1000p0","width":770,"height":1000,"bitrate":7400000,"fps":0}]} \ No newline at end of file +{"Width":770,"Height":1000,"Bitrate":7400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":770,"height":1000,"bitrate":7400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_450_1800000.json b/video/fixtures/profiles_tests/800_450_1800000.json index bcb3f39f4..ec0fdf0a5 100644 --- a/video/fixtures/profiles_tests/800_450_1800000.json +++ b/video/fixtures/profiles_tests/800_450_1800000.json @@ -1 +1 @@ -{"Width":800,"Height":450,"Bitrate":1800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"450p0","width":800,"height":450,"bitrate":1800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"450p0","width":800,"height":450,"bitrate":1800000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":450,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"450p0","width":800,"height":450,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_450_700000.json b/video/fixtures/profiles_tests/800_450_700000.json index 50bca2b7c..91054cb53 100644 --- a/video/fixtures/profiles_tests/800_450_700000.json +++ b/video/fixtures/profiles_tests/800_450_700000.json @@ -1 +1 @@ -{"Width":800,"Height":450,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":350000,"fps":0},{"name":"450p0","width":800,"height":450,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":350000,"fps":0},{"name":"450p0","width":800,"height":450,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":450,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":350000,"fps":0,"quality":27},{"name":"450p0","width":800,"height":450,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_450_800000.json b/video/fixtures/profiles_tests/800_450_800000.json index 0f3a0c585..ed632493c 100644 --- a/video/fixtures/profiles_tests/800_450_800000.json +++ b/video/fixtures/profiles_tests/800_450_800000.json @@ -1 +1 @@ -{"Width":800,"Height":450,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":400000,"fps":0},{"name":"450p0","width":800,"height":450,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":400000,"fps":0},{"name":"450p0","width":800,"height":450,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":450,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":400000,"fps":0,"quality":27},{"name":"450p0","width":800,"height":450,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_450_900000.json b/video/fixtures/profiles_tests/800_450_900000.json index 2ba456116..02ee2a910 100644 --- a/video/fixtures/profiles_tests/800_450_900000.json +++ b/video/fixtures/profiles_tests/800_450_900000.json @@ -1 +1 @@ -{"Width":800,"Height":450,"Bitrate":900000,"ExpectedOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":450000,"fps":0},{"name":"450p0","width":800,"height":450,"bitrate":900000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":450000,"fps":0},{"name":"450p0","width":800,"height":450,"bitrate":900000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":450,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":450000,"fps":0,"quality":27},{"name":"450p0","width":800,"height":450,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_600_2400000.json b/video/fixtures/profiles_tests/800_600_2400000.json index bb44801cf..ea7dc9a91 100644 --- a/video/fixtures/profiles_tests/800_600_2400000.json +++ b/video/fixtures/profiles_tests/800_600_2400000.json @@ -1 +1 @@ -{"Width":800,"Height":600,"Bitrate":2400000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"600p0","width":800,"height":600,"bitrate":2400000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"600p0","width":800,"height":600,"bitrate":2400000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":600,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":800,"height":600,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_700_10100000.json b/video/fixtures/profiles_tests/800_700_10100000.json index f980d2c7d..76766ec25 100644 --- a/video/fixtures/profiles_tests/800_700_10100000.json +++ b/video/fixtures/profiles_tests/800_700_10100000.json @@ -1 +1 @@ -{"Width":800,"Height":700,"Bitrate":10100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"700p0","width":800,"height":700,"bitrate":10100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"700p0","width":800,"height":700,"bitrate":10100000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":700,"Bitrate":10100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"700p0","width":800,"height":700,"bitrate":10100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_3600000.json b/video/fixtures/profiles_tests/800_800_3600000.json index a8c33b2fd..b7c6eefe6 100644 --- a/video/fixtures/profiles_tests/800_800_3600000.json +++ b/video/fixtures/profiles_tests/800_800_3600000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":3600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":3600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":3600000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":3600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_3900000.json b/video/fixtures/profiles_tests/800_800_3900000.json index 632abbec5..ed7c7b789 100644 --- a/video/fixtures/profiles_tests/800_800_3900000.json +++ b/video/fixtures/profiles_tests/800_800_3900000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":3900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":3900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":3900000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":3900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":3900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_5900000.json b/video/fixtures/profiles_tests/800_800_5900000.json index fe4caaa01..04f2f34f5 100644 --- a/video/fixtures/profiles_tests/800_800_5900000.json +++ b/video/fixtures/profiles_tests/800_800_5900000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":5900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":5900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":5900000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":5900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_6100000.json b/video/fixtures/profiles_tests/800_800_6100000.json index 250af4521..b33bc467b 100644 --- a/video/fixtures/profiles_tests/800_800_6100000.json +++ b/video/fixtures/profiles_tests/800_800_6100000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":6100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":6100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":6100000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":6100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":6100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_6600000.json b/video/fixtures/profiles_tests/800_800_6600000.json index 09ec003fb..62f64e14b 100644 --- a/video/fixtures/profiles_tests/800_800_6600000.json +++ b/video/fixtures/profiles_tests/800_800_6600000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":6600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":6600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":6600000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":6600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":6600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_7900000.json b/video/fixtures/profiles_tests/800_800_7900000.json index 73917c44e..8da6f18ac 100644 --- a/video/fixtures/profiles_tests/800_800_7900000.json +++ b/video/fixtures/profiles_tests/800_800_7900000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":7900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":7900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":7900000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":7900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":7900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_8000000.json b/video/fixtures/profiles_tests/800_800_8000000.json index 2bb753d4e..23dadf2a6 100644 --- a/video/fixtures/profiles_tests/800_800_8000000.json +++ b/video/fixtures/profiles_tests/800_800_8000000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":8000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":8000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":8000000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":8000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_8500000.json b/video/fixtures/profiles_tests/800_800_8500000.json index 9c8e1c9c5..ba5411d73 100644 --- a/video/fixtures/profiles_tests/800_800_8500000.json +++ b/video/fixtures/profiles_tests/800_800_8500000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":8500000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":8500000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"800p0","width":800,"height":800,"bitrate":8500000,"fps":0}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":8500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":8500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/816_712_200000.json b/video/fixtures/profiles_tests/816_712_200000.json index 9b2417aa7..7e2895dee 100644 --- a/video/fixtures/profiles_tests/816_712_200000.json +++ b/video/fixtures/profiles_tests/816_712_200000.json @@ -1 +1 @@ -{"Width":816,"Height":712,"Bitrate":200000,"ExpectedOutput":[{"name":"low-bitrate","width":816,"height":712,"bitrate":100000,"fps":0},{"name":"712p0","width":816,"height":712,"bitrate":200000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":816,"height":712,"bitrate":100000,"fps":0},{"name":"712p0","width":816,"height":712,"bitrate":200000,"fps":0}]} \ No newline at end of file +{"Width":816,"Height":712,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":816,"height":712,"bitrate":100000,"fps":0,"quality":27},{"name":"712p0","width":816,"height":712,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/820_1188_16900000.json b/video/fixtures/profiles_tests/820_1188_16900000.json index b05c553ce..6456a6c3d 100644 --- a/video/fixtures/profiles_tests/820_1188_16900000.json +++ b/video/fixtures/profiles_tests/820_1188_16900000.json @@ -1 +1 @@ -{"Width":820,"Height":1188,"Bitrate":16900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1188p0","width":820,"height":1188,"bitrate":16900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1188p0","width":820,"height":1188,"bitrate":16900000,"fps":0}]} \ No newline at end of file +{"Width":820,"Height":1188,"Bitrate":16900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1188p0","width":820,"height":1188,"bitrate":16900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/840_1196_16700000.json b/video/fixtures/profiles_tests/840_1196_16700000.json index ee5f78ad4..f27fc37f5 100644 --- a/video/fixtures/profiles_tests/840_1196_16700000.json +++ b/video/fixtures/profiles_tests/840_1196_16700000.json @@ -1 +1 @@ -{"Width":840,"Height":1196,"Bitrate":16700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1196p0","width":840,"height":1196,"bitrate":16700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1196p0","width":840,"height":1196,"bitrate":16700000,"fps":0}]} \ No newline at end of file +{"Width":840,"Height":1196,"Bitrate":16700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1196p0","width":840,"height":1196,"bitrate":16700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/848_464_1100000.json b/video/fixtures/profiles_tests/848_464_1100000.json index 12aaab484..727c09b82 100644 --- a/video/fixtures/profiles_tests/848_464_1100000.json +++ b/video/fixtures/profiles_tests/848_464_1100000.json @@ -1 +1 @@ -{"Width":848,"Height":464,"Bitrate":1100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"464p0","width":848,"height":464,"bitrate":1100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":644111,"fps":0},{"name":"464p0","width":848,"height":464,"bitrate":1100000,"fps":0}]} \ No newline at end of file +{"Width":848,"Height":464,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":772934,"fps":0,"quality":27},{"name":"464p0","width":848,"height":464,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/854_1200_16600000.json b/video/fixtures/profiles_tests/854_1200_16600000.json index 7c6755349..484c35846 100644 --- a/video/fixtures/profiles_tests/854_1200_16600000.json +++ b/video/fixtures/profiles_tests/854_1200_16600000.json @@ -1 +1 @@ -{"Width":854,"Height":1200,"Bitrate":16600000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":854,"height":1200,"bitrate":16600000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":854,"height":1200,"bitrate":16600000,"fps":0}]} \ No newline at end of file +{"Width":854,"Height":1200,"Bitrate":16600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":854,"height":1200,"bitrate":16600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/854_480_700000.json b/video/fixtures/profiles_tests/854_480_700000.json index b39d4f704..c90135cea 100644 --- a/video/fixtures/profiles_tests/854_480_700000.json +++ b/video/fixtures/profiles_tests/854_480_700000.json @@ -1 +1 @@ -{"Width":854,"Height":480,"Bitrate":700000,"ExpectedOutput":[{"name":"low-bitrate","width":854,"height":480,"bitrate":350000,"fps":0},{"name":"480p0","width":854,"height":480,"bitrate":700000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":854,"height":480,"bitrate":350000,"fps":0},{"name":"480p0","width":854,"height":480,"bitrate":700000,"fps":0}]} \ No newline at end of file +{"Width":854,"Height":480,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":854,"height":480,"bitrate":350000,"fps":0,"quality":27},{"name":"480p0","width":854,"height":480,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/880_880_800000.json b/video/fixtures/profiles_tests/880_880_800000.json index 4c1fd7abd..5d2b93cb0 100644 --- a/video/fixtures/profiles_tests/880_880_800000.json +++ b/video/fixtures/profiles_tests/880_880_800000.json @@ -1 +1 @@ -{"Width":880,"Height":880,"Bitrate":800000,"ExpectedOutput":[{"name":"low-bitrate","width":880,"height":880,"bitrate":400000,"fps":0},{"name":"880p0","width":880,"height":880,"bitrate":800000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":880,"height":880,"bitrate":400000,"fps":0},{"name":"880p0","width":880,"height":880,"bitrate":800000,"fps":0}]} \ No newline at end of file +{"Width":880,"Height":880,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":880,"height":880,"bitrate":400000,"fps":0,"quality":27},{"name":"880p0","width":880,"height":880,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/886_534_12700000.json b/video/fixtures/profiles_tests/886_534_12700000.json index 4eb6d1660..8ace769d3 100644 --- a/video/fixtures/profiles_tests/886_534_12700000.json +++ b/video/fixtures/profiles_tests/886_534_12700000.json @@ -1 +1 @@ -{"Width":886,"Height":534,"Bitrate":12700000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"534p0","width":886,"height":534,"bitrate":12700000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"534p0","width":886,"height":534,"bitrate":12700000,"fps":0}]} \ No newline at end of file +{"Width":886,"Height":534,"Bitrate":12700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"534p0","width":886,"height":534,"bitrate":12700000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/900_1200_10900000.json b/video/fixtures/profiles_tests/900_1200_10900000.json index fa56b8e63..e16eac852 100644 --- a/video/fixtures/profiles_tests/900_1200_10900000.json +++ b/video/fixtures/profiles_tests/900_1200_10900000.json @@ -1 +1 @@ -{"Width":900,"Height":1200,"Bitrate":10900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":900,"height":1200,"bitrate":10900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0},{"name":"1200p0","width":900,"height":1200,"bitrate":10900000,"fps":0}]} \ No newline at end of file +{"Width":900,"Height":1200,"Bitrate":10900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":900,"height":1200,"bitrate":10900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/954_392_500000.json b/video/fixtures/profiles_tests/954_392_500000.json index 60fd48c05..912cc0e23 100644 --- a/video/fixtures/profiles_tests/954_392_500000.json +++ b/video/fixtures/profiles_tests/954_392_500000.json @@ -1 +1 @@ -{"Width":954,"Height":392,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":954,"height":392,"bitrate":250000,"fps":0},{"name":"392p0","width":954,"height":392,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":954,"height":392,"bitrate":250000,"fps":0},{"name":"392p0","width":954,"height":392,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":954,"Height":392,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":954,"height":392,"bitrate":250000,"fps":0,"quality":27},{"name":"392p0","width":954,"height":392,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_540_600000.json b/video/fixtures/profiles_tests/960_540_600000.json index 8776d39fe..317ce3725 100644 --- a/video/fixtures/profiles_tests/960_540_600000.json +++ b/video/fixtures/profiles_tests/960_540_600000.json @@ -1 +1 @@ -{"Width":960,"Height":540,"Bitrate":600000,"ExpectedOutput":[{"name":"low-bitrate","width":960,"height":540,"bitrate":300000,"fps":0},{"name":"540p0","width":960,"height":540,"bitrate":600000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":960,"height":540,"bitrate":300000,"fps":0},{"name":"540p0","width":960,"height":540,"bitrate":600000,"fps":0}]} \ No newline at end of file +{"Width":960,"Height":540,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":960,"height":540,"bitrate":300000,"fps":0,"quality":27},{"name":"540p0","width":960,"height":540,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_540_7000000.json b/video/fixtures/profiles_tests/960_540_7000000.json index 111bde556..a24b296e1 100644 --- a/video/fixtures/profiles_tests/960_540_7000000.json +++ b/video/fixtures/profiles_tests/960_540_7000000.json @@ -1 +1 @@ -{"Width":960,"Height":540,"Bitrate":7000000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"540p0","width":960,"height":540,"bitrate":7000000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"540p0","width":960,"height":540,"bitrate":7000000,"fps":0}]} \ No newline at end of file +{"Width":960,"Height":540,"Bitrate":7000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"540p0","width":960,"height":540,"bitrate":7000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_544_1900000.json b/video/fixtures/profiles_tests/960_544_1900000.json index c97324daf..2d8f22cda 100644 --- a/video/fixtures/profiles_tests/960_544_1900000.json +++ b/video/fixtures/profiles_tests/960_544_1900000.json @@ -1 +1 @@ -{"Width":960,"Height":544,"Bitrate":1900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"544p0","width":960,"height":544,"bitrate":1900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":838235,"fps":0},{"name":"544p0","width":960,"height":544,"bitrate":1900000,"fps":0}]} \ No newline at end of file +{"Width":960,"Height":544,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"544p0","width":960,"height":544,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_720_1900000.json b/video/fixtures/profiles_tests/960_720_1900000.json index be770607b..0f765c32f 100644 --- a/video/fixtures/profiles_tests/960_720_1900000.json +++ b/video/fixtures/profiles_tests/960_720_1900000.json @@ -1 +1 @@ -{"Width":960,"Height":720,"Bitrate":1900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":960,"height":720,"bitrate":1900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":633333,"fps":0},{"name":"720p0","width":960,"height":720,"bitrate":1900000,"fps":0}]} \ No newline at end of file +{"Width":960,"Height":720,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":760000,"fps":0,"quality":27},{"name":"720p0","width":960,"height":720,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_720_2100000.json b/video/fixtures/profiles_tests/960_720_2100000.json index 44fbd65d3..054170455 100644 --- a/video/fixtures/profiles_tests/960_720_2100000.json +++ b/video/fixtures/profiles_tests/960_720_2100000.json @@ -1 +1 @@ -{"Width":960,"Height":720,"Bitrate":2100000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"720p0","width":960,"height":720,"bitrate":2100000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":700000,"fps":0},{"name":"720p0","width":960,"height":720,"bitrate":2100000,"fps":0}]} \ No newline at end of file +{"Width":960,"Height":720,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":840000,"fps":0,"quality":27},{"name":"720p0","width":960,"height":720,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_720_500000.json b/video/fixtures/profiles_tests/960_720_500000.json index e11d2a19a..ff3c35a8f 100644 --- a/video/fixtures/profiles_tests/960_720_500000.json +++ b/video/fixtures/profiles_tests/960_720_500000.json @@ -1 +1 @@ -{"Width":960,"Height":720,"Bitrate":500000,"ExpectedOutput":[{"name":"low-bitrate","width":960,"height":720,"bitrate":250000,"fps":0},{"name":"720p0","width":960,"height":720,"bitrate":500000,"fps":0}],"CurrentOutput":[{"name":"low-bitrate","width":960,"height":720,"bitrate":250000,"fps":0},{"name":"720p0","width":960,"height":720,"bitrate":500000,"fps":0}]} \ No newline at end of file +{"Width":960,"Height":720,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":960,"height":720,"bitrate":250000,"fps":0,"quality":27},{"name":"720p0","width":960,"height":720,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_960_2800000.json b/video/fixtures/profiles_tests/960_960_2800000.json index 9ecb1d08e..7e04d5575 100644 --- a/video/fixtures/profiles_tests/960_960_2800000.json +++ b/video/fixtures/profiles_tests/960_960_2800000.json @@ -1 +1 @@ -{"Width":960,"Height":960,"Bitrate":2800000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"960p0","width":960,"height":960,"bitrate":2800000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":700000,"fps":0},{"name":"960p0","width":960,"height":960,"bitrate":2800000,"fps":0}]} \ No newline at end of file +{"Width":960,"Height":960,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":840000,"fps":0,"quality":27},{"name":"960p0","width":960,"height":960,"bitrate":2800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/992_1302_2900000.json b/video/fixtures/profiles_tests/992_1302_2900000.json index 2aefa4cdc..284f1bc8a 100644 --- a/video/fixtures/profiles_tests/992_1302_2900000.json +++ b/video/fixtures/profiles_tests/992_1302_2900000.json @@ -1 +1 @@ -{"Width":992,"Height":1302,"Bitrate":2900000,"ExpectedOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0},{"name":"1302p0","width":992,"height":1302,"bitrate":2900000,"fps":0}],"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":517318,"fps":0},{"name":"1302p0","width":992,"height":1302,"bitrate":2900000,"fps":0}]} \ No newline at end of file +{"Width":992,"Height":1302,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":620781,"fps":0,"quality":27},{"name":"1302p0","width":992,"height":1302,"bitrate":2900000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/profiles_test.go b/video/profiles_test.go index 0bb617168..2b1e88630 100644 --- a/video/profiles_test.go +++ b/video/profiles_test.go @@ -147,13 +147,12 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { } } -func TestCheckUpdatedAlgo(t *testing.T) { +func TestGetDefaultPlaybackProfilesFixtures(t *testing.T) { type ProfilesTest struct { - Width int64 - Height int64 - Bitrate int64 - ExpectedOutput []EncodedProfile - CurrentOutput []EncodedProfile + Width int64 + Height int64 + Bitrate int64 + CurrentOutput []EncodedProfile } dir := "./fixtures/profiles_tests" files, err := os.ReadDir(dir) @@ -162,7 +161,8 @@ func TestCheckUpdatedAlgo(t *testing.T) { if file.IsDir() { continue } - contents, err := os.ReadFile(filepath.Join(dir, file.Name())) + fileName := filepath.Join(dir, file.Name()) + contents, err := os.ReadFile(fileName) require.NoError(t, err) var testCase ProfilesTest err = json.Unmarshal(contents, &testCase) @@ -179,20 +179,19 @@ func TestCheckUpdatedAlgo(t *testing.T) { }, }}, } - oldAlgorithmOutput := testCase.ExpectedOutput vt, err := iv.GetTrack(TrackTypeVideo) require.NoError(t, err) current, err := GetDefaultPlaybackProfiles(vt) require.NoError(t, err) - require.Equal(t, testCase.CurrentOutput, current) - require.Equal(t, len(oldAlgorithmOutput), len(current)) - for i, profile := range oldAlgorithmOutput { - currentProfile := current[i] - // check that they're equal other than the new bitrates being lower - require.LessOrEqual(t, currentProfile.Bitrate, profile.Bitrate) - profile.Bitrate = currentProfile.Bitrate - require.Equal(t, profile, currentProfile) + + if os.Getenv("REGENERATE_FIXTURES") != "" { + testCase.CurrentOutput = current + bs, err := json.Marshal(testCase) + require.NoError(t, err) + err = os.WriteFile(fileName, bs, 0644) + require.NoError(t, err) } + require.Equal(t, testCase.CurrentOutput, current) }) } } From 4a96b00fc1e434a1a6d73f088b6f0fecff7af6f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Leszko?= Date: Fri, 8 Sep 2023 15:12:45 +0200 Subject: [PATCH 5/7] Fix unit tests --- video/profiles_test.go | 51 +++++++++++++++++++++++++++--------------- 1 file changed, 33 insertions(+), 18 deletions(-) diff --git a/video/profiles_test.go b/video/profiles_test.go index 2b1e88630..2428ba2e4 100644 --- a/video/profiles_test.go +++ b/video/profiles_test.go @@ -26,8 +26,8 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, }, want: []EncodedProfile{ - {Name: "low-bitrate", Width: 640, Height: 360, Bitrate: 500_000}, - {Name: "360p0", Width: 640, Height: 360, Bitrate: 1_000_001}, + {Name: "low-bitrate", Width: 640, Height: 360, Bitrate: 500_000, Quality: defaultQuality}, + {Name: "360p0", Width: 640, Height: 360, Bitrate: 1_000_001, Quality: defaultQuality}, }, }, { @@ -41,8 +41,8 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, }, want: []EncodedProfile{ - {Name: "low-bitrate", Width: 640, Height: 360, Bitrate: 250_000}, - {Name: "360p0", Width: 640, Height: 360, Bitrate: 500_000}, + {Name: "low-bitrate", Width: 640, Height: 360, Bitrate: 250_000, Quality: defaultQuality}, + {Name: "360p0", Width: 640, Height: 360, Bitrate: 500_000, Quality: defaultQuality}, }, }, { @@ -56,8 +56,8 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, }, want: []EncodedProfile{ - {Name: "360p0", Width: 640, Height: 360, Bitrate: 1_000_000}, - {Name: "720p0", Width: 1280, Height: 720, Bitrate: 4_000_001}, + {Name: "360p0", Width: 640, Height: 360, Bitrate: 1_000_000, Quality: defaultQuality}, + {Name: "720p0", Width: 1280, Height: 720, Bitrate: 4_000_001, Quality: defaultQuality}, }, }, { @@ -71,8 +71,8 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, }, want: []EncodedProfile{ - {Name: "360p0", Width: 640, Height: 360, Bitrate: 266_666}, - {Name: "720p0", Width: 1200, Height: 720, Bitrate: 1_000_001}, + {Name: "360p0", Width: 640, Height: 360, Bitrate: 320_000, Quality: defaultQuality}, + {Name: "720p0", Width: 1200, Height: 720, Bitrate: 1_000_001, Quality: defaultQuality}, }, }, { @@ -86,9 +86,9 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, }, want: []EncodedProfile{ - {Name: "360p0", Width: 640, Height: 360, Bitrate: 555_555}, - {Name: "720p0", Width: 1280, Height: 720, Bitrate: 2_222_222}, - {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: 5_000_000}, + {Name: "360p0", Width: 640, Height: 360, Bitrate: 666_666, Quality: defaultQuality}, + {Name: "720p0", Width: 1280, Height: 720, Bitrate: 2_666_666, Quality: defaultQuality}, + {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: 5_000_000, Quality: defaultQuality}, }, }, { @@ -102,8 +102,8 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, }, want: []EncodedProfile{ - {Name: "low-bitrate", Width: 400, Height: 240, Bitrate: 258549}, - {Name: "240p0", Width: 400, Height: 240, Bitrate: 517099}, + {Name: "low-bitrate", Width: 400, Height: 240, Bitrate: 258549, Quality: defaultQuality}, + {Name: "240p0", Width: 400, Height: 240, Bitrate: 517099, Quality: defaultQuality}, }, }, { @@ -117,9 +117,9 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, }, want: []EncodedProfile{ - {Name: "360p0", Width: 640, Height: 360, Bitrate: 1_000_000}, - {Name: "720p0", Width: 1280, Height: 720, Bitrate: 4_000_000}, - {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: MaxVideoBitrate}, + {Name: "360p0", Width: 640, Height: 360, Bitrate: 1_000_000, Quality: defaultQuality}, + {Name: "720p0", Width: 1280, Height: 720, Bitrate: 4_000_000, Quality: defaultQuality}, + {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: MaxVideoBitrate, Quality: defaultQuality}, }, }, { @@ -133,8 +133,23 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, }, want: []EncodedProfile{ - {Name: "360p0", Width: 640, Height: 360, Bitrate: 122_222}, - {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: 1_100_000}, + {Name: "360p0", Width: 640, Height: 360, Bitrate: 146_666, Quality: defaultQuality}, + {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: 1_100_000, Quality: defaultQuality}, + }, + }, + { + name: "low bitrate 1080p", // https://linear.app/livepeer/issue/VID-228/streameth-recording-uploaded-assets-returns-bad-quality + track: InputTrack{ + Type: "video", + Bitrate: 1_100_000, + VideoTrack: VideoTrack{ + Width: 1920, + Height: 1080, + }, + }, + want: []EncodedProfile{ + {Name: "360p0", Width: 640, Height: 360, Bitrate: 146_666, Quality: defaultQuality}, + {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: 1_100_000, Quality: defaultQuality}, }, }, } From 13a6bf2ed7c79f1f2e5781d5f46123dd4c16dced Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Leszko?= Date: Tue, 12 Sep 2023 14:46:18 +0200 Subject: [PATCH 6/7] Add 1.2 multiplier also for the source video bitrate --- video/profiles.go | 9 +++++---- video/profiles_test.go | 16 ++++++++-------- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/video/profiles.go b/video/profiles.go index 90a9199bf..178f60d27 100644 --- a/video/profiles.go +++ b/video/profiles.go @@ -13,6 +13,9 @@ const ( TrackTypeVideo = "video" TrackTypeAudio = "audio" defaultQuality = 27 + // Livepeer network uses bitrate to set max bitrate for encoding, so for the video to look good, we multiply + // it by a factor of 1.2. + maxBitrateFactor = 1.2 ) type InputVideo struct { @@ -143,9 +146,7 @@ func GetDefaultPlaybackProfiles(video InputTrack) ([]EncodedProfile, error) { lowerQualityThanSrc := profile.Height < video.Height && profile.Bitrate < video.Bitrate if lowerQualityThanSrc { // relativeBitrate needs to be slightly higher than the proportional average bitrate of the source video. - // Livepeer network uses bitrate to set max bitrate for encoding, so for the video to look good, we multiply - // it by a factor of 1.2. - relativeBitrate := 1.2 * float64(profile.Width*profile.Height) * (float64(videoBitrate) / float64(video.Width*video.Height)) + relativeBitrate := maxBitrateFactor * float64(profile.Width*profile.Height) * (float64(videoBitrate) / float64(video.Width*video.Height)) br := math.Min(relativeBitrate, float64(profile.Bitrate)) profile.Bitrate = int64(br) profiles = append(profiles, profile) @@ -156,7 +157,7 @@ func GetDefaultPlaybackProfiles(video InputTrack) ([]EncodedProfile, error) { } profiles = append(profiles, EncodedProfile{ Name: strconv.FormatInt(nearestEven(video.Height), 10) + "p0", - Bitrate: videoBitrate, + Bitrate: int64(math.Min(maxBitrateFactor*float64(videoBitrate), MaxVideoBitrate)), FPS: 0, Width: nearestEven(video.Width), Height: nearestEven(video.Height), diff --git a/video/profiles_test.go b/video/profiles_test.go index 2428ba2e4..f4c5c896f 100644 --- a/video/profiles_test.go +++ b/video/profiles_test.go @@ -27,7 +27,7 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, want: []EncodedProfile{ {Name: "low-bitrate", Width: 640, Height: 360, Bitrate: 500_000, Quality: defaultQuality}, - {Name: "360p0", Width: 640, Height: 360, Bitrate: 1_000_001, Quality: defaultQuality}, + {Name: "360p0", Width: 640, Height: 360, Bitrate: 1_200_001, Quality: defaultQuality}, }, }, { @@ -42,7 +42,7 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, want: []EncodedProfile{ {Name: "low-bitrate", Width: 640, Height: 360, Bitrate: 250_000, Quality: defaultQuality}, - {Name: "360p0", Width: 640, Height: 360, Bitrate: 500_000, Quality: defaultQuality}, + {Name: "360p0", Width: 640, Height: 360, Bitrate: 600_000, Quality: defaultQuality}, }, }, { @@ -57,7 +57,7 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, want: []EncodedProfile{ {Name: "360p0", Width: 640, Height: 360, Bitrate: 1_000_000, Quality: defaultQuality}, - {Name: "720p0", Width: 1280, Height: 720, Bitrate: 4_000_001, Quality: defaultQuality}, + {Name: "720p0", Width: 1280, Height: 720, Bitrate: 4_800_001, Quality: defaultQuality}, }, }, { @@ -72,7 +72,7 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, want: []EncodedProfile{ {Name: "360p0", Width: 640, Height: 360, Bitrate: 320_000, Quality: defaultQuality}, - {Name: "720p0", Width: 1200, Height: 720, Bitrate: 1_000_001, Quality: defaultQuality}, + {Name: "720p0", Width: 1200, Height: 720, Bitrate: 1_200_001, Quality: defaultQuality}, }, }, { @@ -88,7 +88,7 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { want: []EncodedProfile{ {Name: "360p0", Width: 640, Height: 360, Bitrate: 666_666, Quality: defaultQuality}, {Name: "720p0", Width: 1280, Height: 720, Bitrate: 2_666_666, Quality: defaultQuality}, - {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: 5_000_000, Quality: defaultQuality}, + {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: 6_000_000, Quality: defaultQuality}, }, }, { @@ -103,7 +103,7 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, want: []EncodedProfile{ {Name: "low-bitrate", Width: 400, Height: 240, Bitrate: 258549, Quality: defaultQuality}, - {Name: "240p0", Width: 400, Height: 240, Bitrate: 517099, Quality: defaultQuality}, + {Name: "240p0", Width: 400, Height: 240, Bitrate: 620518, Quality: defaultQuality}, }, }, { @@ -134,7 +134,7 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, want: []EncodedProfile{ {Name: "360p0", Width: 640, Height: 360, Bitrate: 146_666, Quality: defaultQuality}, - {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: 1_100_000, Quality: defaultQuality}, + {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: 1_320_000, Quality: defaultQuality}, }, }, { @@ -149,7 +149,7 @@ func TestGetDefaultPlaybackProfiles(t *testing.T) { }, want: []EncodedProfile{ {Name: "360p0", Width: 640, Height: 360, Bitrate: 146_666, Quality: defaultQuality}, - {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: 1_100_000, Quality: defaultQuality}, + {Name: "1080p0", Width: 1920, Height: 1080, Bitrate: 1_320_000, Quality: defaultQuality}, }, }, } From b3be1d03fb9b139eb9ab998ff6e9d9f950f97a4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Leszko?= Date: Tue, 12 Sep 2023 14:48:25 +0200 Subject: [PATCH 7/7] Update profile fixtures --- video/fixtures/profiles_tests/1000_1000_10700000.json | 2 +- video/fixtures/profiles_tests/1000_1000_1100000.json | 2 +- video/fixtures/profiles_tests/1000_1000_11500000.json | 2 +- video/fixtures/profiles_tests/1000_1000_1200000.json | 2 +- video/fixtures/profiles_tests/1000_1000_1300000.json | 2 +- video/fixtures/profiles_tests/1000_1000_13500000.json | 2 +- video/fixtures/profiles_tests/1000_1000_1400000.json | 2 +- video/fixtures/profiles_tests/1000_1000_1600000.json | 2 +- video/fixtures/profiles_tests/1000_1000_1700000.json | 2 +- video/fixtures/profiles_tests/1000_1000_200000.json | 2 +- video/fixtures/profiles_tests/1000_1000_2100000.json | 2 +- video/fixtures/profiles_tests/1000_1000_3000000.json | 2 +- video/fixtures/profiles_tests/1000_1000_5300000.json | 2 +- video/fixtures/profiles_tests/1000_1000_7500000.json | 2 +- video/fixtures/profiles_tests/1000_1000_800000.json | 2 +- video/fixtures/profiles_tests/1000_1000_8200000.json | 2 +- video/fixtures/profiles_tests/1000_1000_900000.json | 2 +- video/fixtures/profiles_tests/1000_1400_10700000.json | 2 +- video/fixtures/profiles_tests/1024_1024_100000.json | 2 +- video/fixtures/profiles_tests/1024_1024_10500000.json | 2 +- video/fixtures/profiles_tests/1024_1024_10600000.json | 2 +- video/fixtures/profiles_tests/1024_1024_12100000.json | 2 +- video/fixtures/profiles_tests/1024_1024_13200000.json | 2 +- video/fixtures/profiles_tests/1024_1024_1800000.json | 2 +- video/fixtures/profiles_tests/1024_1024_1900000.json | 2 +- video/fixtures/profiles_tests/1024_1024_2000000.json | 2 +- video/fixtures/profiles_tests/1024_1024_2100000.json | 2 +- video/fixtures/profiles_tests/1024_1024_2800000.json | 2 +- video/fixtures/profiles_tests/1024_1024_3500000.json | 2 +- video/fixtures/profiles_tests/1024_1024_3800000.json | 2 +- video/fixtures/profiles_tests/1024_1024_4200000.json | 2 +- video/fixtures/profiles_tests/1024_1024_5600000.json | 2 +- video/fixtures/profiles_tests/1024_1024_700000.json | 2 +- video/fixtures/profiles_tests/1024_1024_7300000.json | 2 +- video/fixtures/profiles_tests/1024_1024_8600000.json | 2 +- video/fixtures/profiles_tests/1024_1024_900000.json | 2 +- video/fixtures/profiles_tests/1024_576_7700000.json | 2 +- video/fixtures/profiles_tests/1030_720_2000000.json | 2 +- video/fixtures/profiles_tests/1038_1202_1300000.json | 2 +- video/fixtures/profiles_tests/1076_604_800000.json | 2 +- video/fixtures/profiles_tests/1080_1080_10000000.json | 2 +- video/fixtures/profiles_tests/1080_1080_10300000.json | 2 +- video/fixtures/profiles_tests/1080_1080_10400000.json | 2 +- video/fixtures/profiles_tests/1080_1080_10500000.json | 2 +- video/fixtures/profiles_tests/1080_1080_10700000.json | 2 +- video/fixtures/profiles_tests/1080_1080_10800000.json | 2 +- video/fixtures/profiles_tests/1080_1080_11400000.json | 2 +- video/fixtures/profiles_tests/1080_1080_11600000.json | 2 +- video/fixtures/profiles_tests/1080_1080_11700000.json | 2 +- video/fixtures/profiles_tests/1080_1080_11900000.json | 2 +- video/fixtures/profiles_tests/1080_1080_12100000.json | 2 +- video/fixtures/profiles_tests/1080_1080_14900000.json | 2 +- video/fixtures/profiles_tests/1080_1080_1500000.json | 2 +- video/fixtures/profiles_tests/1080_1080_15000000.json | 2 +- video/fixtures/profiles_tests/1080_1080_1600000.json | 2 +- video/fixtures/profiles_tests/1080_1080_200000.json | 2 +- video/fixtures/profiles_tests/1080_1080_20400000.json | 2 +- video/fixtures/profiles_tests/1080_1080_2100000.json | 2 +- video/fixtures/profiles_tests/1080_1080_2400000.json | 2 +- video/fixtures/profiles_tests/1080_1080_28500000.json | 2 +- video/fixtures/profiles_tests/1080_1080_300000.json | 2 +- video/fixtures/profiles_tests/1080_1080_3000000.json | 2 +- video/fixtures/profiles_tests/1080_1080_39300000.json | 2 +- video/fixtures/profiles_tests/1080_1080_400000.json | 2 +- video/fixtures/profiles_tests/1080_1080_4200000.json | 2 +- video/fixtures/profiles_tests/1080_1080_500000.json | 2 +- video/fixtures/profiles_tests/1080_1080_5400000.json | 2 +- video/fixtures/profiles_tests/1080_1080_600000.json | 2 +- video/fixtures/profiles_tests/1080_1080_6400000.json | 2 +- video/fixtures/profiles_tests/1080_1080_6500000.json | 2 +- video/fixtures/profiles_tests/1080_1080_7700000.json | 2 +- video/fixtures/profiles_tests/1080_1080_8000000.json | 2 +- video/fixtures/profiles_tests/1080_1080_8100000.json | 2 +- video/fixtures/profiles_tests/1080_1080_8400000.json | 2 +- video/fixtures/profiles_tests/1080_1080_8500000.json | 2 +- video/fixtures/profiles_tests/1080_1080_8700000.json | 2 +- video/fixtures/profiles_tests/1080_1080_8900000.json | 2 +- video/fixtures/profiles_tests/1080_1080_900000.json | 2 +- video/fixtures/profiles_tests/1080_1080_9000000.json | 2 +- video/fixtures/profiles_tests/1080_1080_9100000.json | 2 +- video/fixtures/profiles_tests/1080_1080_9200000.json | 2 +- video/fixtures/profiles_tests/1080_1080_9500000.json | 2 +- video/fixtures/profiles_tests/1080_1080_9900000.json | 2 +- video/fixtures/profiles_tests/1080_1440_11000000.json | 2 +- video/fixtures/profiles_tests/1080_1440_200000.json | 2 +- video/fixtures/profiles_tests/1080_1440_2100000.json | 2 +- video/fixtures/profiles_tests/1080_1620_10700000.json | 2 +- video/fixtures/profiles_tests/1080_1620_10900000.json | 2 +- video/fixtures/profiles_tests/1080_1834_4600000.json | 2 +- video/fixtures/profiles_tests/1080_1908_14500000.json | 2 +- video/fixtures/profiles_tests/1080_1920_10000000.json | 2 +- video/fixtures/profiles_tests/1080_1920_10200000.json | 2 +- video/fixtures/profiles_tests/1080_1920_10300000.json | 2 +- video/fixtures/profiles_tests/1080_1920_11400000.json | 2 +- video/fixtures/profiles_tests/1080_1920_11800000.json | 2 +- video/fixtures/profiles_tests/1080_1920_12100000.json | 2 +- video/fixtures/profiles_tests/1080_1920_12200000.json | 2 +- video/fixtures/profiles_tests/1080_1920_12300000.json | 2 +- video/fixtures/profiles_tests/1080_1920_12400000.json | 2 +- video/fixtures/profiles_tests/1080_1920_12500000.json | 2 +- video/fixtures/profiles_tests/1080_1920_1400000.json | 2 +- video/fixtures/profiles_tests/1080_1920_14900000.json | 2 +- video/fixtures/profiles_tests/1080_1920_15100000.json | 2 +- video/fixtures/profiles_tests/1080_1920_15200000.json | 2 +- video/fixtures/profiles_tests/1080_1920_15300000.json | 2 +- video/fixtures/profiles_tests/1080_1920_15900000.json | 2 +- video/fixtures/profiles_tests/1080_1920_1600000.json | 2 +- video/fixtures/profiles_tests/1080_1920_16900000.json | 2 +- video/fixtures/profiles_tests/1080_1920_1700000.json | 2 +- video/fixtures/profiles_tests/1080_1920_17000000.json | 2 +- video/fixtures/profiles_tests/1080_1920_1900000.json | 2 +- video/fixtures/profiles_tests/1080_1920_2000000.json | 2 +- video/fixtures/profiles_tests/1080_1920_2100000.json | 2 +- video/fixtures/profiles_tests/1080_1920_2200000.json | 2 +- video/fixtures/profiles_tests/1080_1920_2300000.json | 2 +- video/fixtures/profiles_tests/1080_1920_2500000.json | 2 +- video/fixtures/profiles_tests/1080_1920_2600000.json | 2 +- video/fixtures/profiles_tests/1080_1920_2700000.json | 2 +- video/fixtures/profiles_tests/1080_1920_2800000.json | 2 +- video/fixtures/profiles_tests/1080_1920_2900000.json | 2 +- video/fixtures/profiles_tests/1080_1920_3000000.json | 2 +- video/fixtures/profiles_tests/1080_1920_3100000.json | 2 +- video/fixtures/profiles_tests/1080_1920_3200000.json | 2 +- video/fixtures/profiles_tests/1080_1920_3400000.json | 2 +- video/fixtures/profiles_tests/1080_1920_3600000.json | 2 +- video/fixtures/profiles_tests/1080_1920_3700000.json | 2 +- video/fixtures/profiles_tests/1080_1920_3900000.json | 2 +- video/fixtures/profiles_tests/1080_1920_4000000.json | 2 +- video/fixtures/profiles_tests/1080_1920_4100000.json | 2 +- video/fixtures/profiles_tests/1080_1920_4200000.json | 2 +- video/fixtures/profiles_tests/1080_1920_43700000.json | 2 +- video/fixtures/profiles_tests/1080_1920_4600000.json | 2 +- video/fixtures/profiles_tests/1080_1920_4700000.json | 2 +- video/fixtures/profiles_tests/1080_1920_4900000.json | 2 +- video/fixtures/profiles_tests/1080_1920_5000000.json | 2 +- video/fixtures/profiles_tests/1080_1920_5300000.json | 2 +- video/fixtures/profiles_tests/1080_1920_600000.json | 2 +- video/fixtures/profiles_tests/1080_1920_6000000.json | 2 +- video/fixtures/profiles_tests/1080_1920_6100000.json | 2 +- video/fixtures/profiles_tests/1080_1920_6500000.json | 2 +- video/fixtures/profiles_tests/1080_1920_6800000.json | 2 +- video/fixtures/profiles_tests/1080_1920_700000.json | 2 +- video/fixtures/profiles_tests/1080_1920_7100000.json | 2 +- video/fixtures/profiles_tests/1080_1920_7700000.json | 2 +- video/fixtures/profiles_tests/1080_1920_800000.json | 2 +- video/fixtures/profiles_tests/1080_1920_8000000.json | 2 +- video/fixtures/profiles_tests/1080_1920_8400000.json | 2 +- video/fixtures/profiles_tests/1080_1920_8500000.json | 2 +- video/fixtures/profiles_tests/1080_1920_900000.json | 2 +- video/fixtures/profiles_tests/1080_1920_9500000.json | 2 +- video/fixtures/profiles_tests/1080_2400_3800000.json | 2 +- video/fixtures/profiles_tests/1080_442_4900000.json | 2 +- video/fixtures/profiles_tests/1080_642_1200000.json | 2 +- video/fixtures/profiles_tests/1080_720_1100000.json | 2 +- video/fixtures/profiles_tests/1094_622_100000.json | 2 +- video/fixtures/profiles_tests/1100_1100_18400000.json | 2 +- video/fixtures/profiles_tests/1200_1200_13800000.json | 2 +- video/fixtures/profiles_tests/1200_1200_1600000.json | 2 +- video/fixtures/profiles_tests/1200_1200_2400000.json | 2 +- video/fixtures/profiles_tests/1200_1200_2600000.json | 2 +- video/fixtures/profiles_tests/1200_1200_300000.json | 2 +- video/fixtures/profiles_tests/1200_1200_3000000.json | 2 +- video/fixtures/profiles_tests/1200_1200_4100000.json | 2 +- video/fixtures/profiles_tests/1200_1200_4700000.json | 2 +- video/fixtures/profiles_tests/1200_1200_5000000.json | 2 +- video/fixtures/profiles_tests/1200_1200_6200000.json | 2 +- video/fixtures/profiles_tests/1200_1200_6900000.json | 2 +- video/fixtures/profiles_tests/1200_1200_8000000.json | 2 +- video/fixtures/profiles_tests/1200_1200_9100000.json | 2 +- video/fixtures/profiles_tests/1200_1680_20800000.json | 2 +- video/fixtures/profiles_tests/1200_1680_21200000.json | 2 +- video/fixtures/profiles_tests/1200_674_1300000.json | 2 +- video/fixtures/profiles_tests/1260_1280_4700000.json | 2 +- video/fixtures/profiles_tests/1278_660_8400000.json | 2 +- video/fixtures/profiles_tests/1280_1280_1000000.json | 2 +- video/fixtures/profiles_tests/1280_1280_1100000.json | 2 +- video/fixtures/profiles_tests/1280_1280_20500000.json | 2 +- video/fixtures/profiles_tests/1280_1280_3800000.json | 2 +- video/fixtures/profiles_tests/1280_1280_5000000.json | 2 +- video/fixtures/profiles_tests/1280_1280_800000.json | 2 +- video/fixtures/profiles_tests/1280_1280_900000.json | 2 +- video/fixtures/profiles_tests/1280_532_1900000.json | 2 +- video/fixtures/profiles_tests/1280_720_1000000.json | 2 +- video/fixtures/profiles_tests/1280_720_10000000.json | 2 +- video/fixtures/profiles_tests/1280_720_1100000.json | 2 +- video/fixtures/profiles_tests/1280_720_11300000.json | 2 +- video/fixtures/profiles_tests/1280_720_11900000.json | 2 +- video/fixtures/profiles_tests/1280_720_1200000.json | 2 +- video/fixtures/profiles_tests/1280_720_12000000.json | 2 +- video/fixtures/profiles_tests/1280_720_1400000.json | 2 +- video/fixtures/profiles_tests/1280_720_1500000.json | 2 +- video/fixtures/profiles_tests/1280_720_1600000.json | 2 +- video/fixtures/profiles_tests/1280_720_16400000.json | 2 +- video/fixtures/profiles_tests/1280_720_2000000.json | 2 +- video/fixtures/profiles_tests/1280_720_2100000.json | 2 +- video/fixtures/profiles_tests/1280_720_2200000.json | 2 +- video/fixtures/profiles_tests/1280_720_2300000.json | 2 +- video/fixtures/profiles_tests/1280_720_2400000.json | 2 +- video/fixtures/profiles_tests/1280_720_2500000.json | 2 +- video/fixtures/profiles_tests/1280_720_2600000.json | 2 +- video/fixtures/profiles_tests/1280_720_2700000.json | 2 +- video/fixtures/profiles_tests/1280_720_300000.json | 2 +- video/fixtures/profiles_tests/1280_720_3000000.json | 2 +- video/fixtures/profiles_tests/1280_720_400000.json | 2 +- video/fixtures/profiles_tests/1280_720_500000.json | 2 +- video/fixtures/profiles_tests/1280_720_5100000.json | 2 +- video/fixtures/profiles_tests/1280_720_5300000.json | 2 +- video/fixtures/profiles_tests/1280_720_600000.json | 2 +- video/fixtures/profiles_tests/1280_720_6800000.json | 2 +- video/fixtures/profiles_tests/1280_720_700000.json | 2 +- video/fixtures/profiles_tests/1280_720_800000.json | 2 +- video/fixtures/profiles_tests/1280_720_8600000.json | 2 +- video/fixtures/profiles_tests/1280_720_900000.json | 2 +- video/fixtures/profiles_tests/1280_852_3000000.json | 2 +- video/fixtures/profiles_tests/1280_960_5100000.json | 2 +- video/fixtures/profiles_tests/1400_1400_100000.json | 2 +- video/fixtures/profiles_tests/1400_400_1000000.json | 2 +- video/fixtures/profiles_tests/1400_400_2100000.json | 2 +- video/fixtures/profiles_tests/1402_1920_15800000.json | 2 +- video/fixtures/profiles_tests/1440_1440_17000000.json | 2 +- video/fixtures/profiles_tests/1440_1440_3600000.json | 2 +- video/fixtures/profiles_tests/1440_2174_12000000.json | 2 +- video/fixtures/profiles_tests/1490_1990_19400000.json | 2 +- video/fixtures/profiles_tests/1498_2100_45400000.json | 2 +- video/fixtures/profiles_tests/1498_2100_46800000.json | 2 +- video/fixtures/profiles_tests/1500_1000_13800000.json | 2 +- video/fixtures/profiles_tests/1500_1500_10400000.json | 2 +- video/fixtures/profiles_tests/1500_1500_1600000.json | 2 +- video/fixtures/profiles_tests/1500_1500_2100000.json | 2 +- video/fixtures/profiles_tests/1500_1500_2300000.json | 2 +- video/fixtures/profiles_tests/1500_1500_2400000.json | 2 +- video/fixtures/profiles_tests/1500_1500_2500000.json | 2 +- video/fixtures/profiles_tests/1500_1500_3600000.json | 2 +- video/fixtures/profiles_tests/1500_1500_8600000.json | 2 +- video/fixtures/profiles_tests/1500_1500_8900000.json | 2 +- video/fixtures/profiles_tests/1600_1600_18500000.json | 2 +- video/fixtures/profiles_tests/1600_1600_26700000.json | 2 +- video/fixtures/profiles_tests/1686_546_300000.json | 2 +- video/fixtures/profiles_tests/1722_1350_25700000.json | 2 +- video/fixtures/profiles_tests/1780_1742_7600000.json | 2 +- video/fixtures/profiles_tests/1800_1800_10400000.json | 2 +- video/fixtures/profiles_tests/1800_1800_15300000.json | 2 +- video/fixtures/profiles_tests/1862_1396_17900000.json | 2 +- video/fixtures/profiles_tests/1920_1076_10300000.json | 2 +- video/fixtures/profiles_tests/1920_1076_1100000.json | 2 +- video/fixtures/profiles_tests/1920_1076_2600000.json | 2 +- video/fixtures/profiles_tests/1920_1076_3100000.json | 2 +- video/fixtures/profiles_tests/1920_1080_100000.json | 2 +- video/fixtures/profiles_tests/1920_1080_1000000.json | 2 +- video/fixtures/profiles_tests/1920_1080_10000000.json | 2 +- video/fixtures/profiles_tests/1920_1080_10100000.json | 2 +- video/fixtures/profiles_tests/1920_1080_10300000.json | 2 +- video/fixtures/profiles_tests/1920_1080_10400000.json | 2 +- video/fixtures/profiles_tests/1920_1080_10500000.json | 2 +- video/fixtures/profiles_tests/1920_1080_10600000.json | 2 +- video/fixtures/profiles_tests/1920_1080_10700000.json | 2 +- video/fixtures/profiles_tests/1920_1080_1100000.json | 2 +- video/fixtures/profiles_tests/1920_1080_11200000.json | 2 +- video/fixtures/profiles_tests/1920_1080_11300000.json | 2 +- video/fixtures/profiles_tests/1920_1080_11400000.json | 2 +- video/fixtures/profiles_tests/1920_1080_11900000.json | 2 +- video/fixtures/profiles_tests/1920_1080_1200000.json | 2 +- video/fixtures/profiles_tests/1920_1080_12000000.json | 2 +- video/fixtures/profiles_tests/1920_1080_12100000.json | 2 +- video/fixtures/profiles_tests/1920_1080_12300000.json | 2 +- video/fixtures/profiles_tests/1920_1080_12400000.json | 2 +- video/fixtures/profiles_tests/1920_1080_12500000.json | 2 +- video/fixtures/profiles_tests/1920_1080_1300000.json | 2 +- video/fixtures/profiles_tests/1920_1080_13500000.json | 2 +- video/fixtures/profiles_tests/1920_1080_13900000.json | 2 +- video/fixtures/profiles_tests/1920_1080_1400000.json | 2 +- video/fixtures/profiles_tests/1920_1080_14200000.json | 2 +- video/fixtures/profiles_tests/1920_1080_14700000.json | 2 +- video/fixtures/profiles_tests/1920_1080_14800000.json | 2 +- video/fixtures/profiles_tests/1920_1080_14900000.json | 2 +- video/fixtures/profiles_tests/1920_1080_1500000.json | 2 +- video/fixtures/profiles_tests/1920_1080_15000000.json | 2 +- video/fixtures/profiles_tests/1920_1080_16000000.json | 2 +- video/fixtures/profiles_tests/1920_1080_16600000.json | 2 +- video/fixtures/profiles_tests/1920_1080_16900000.json | 2 +- video/fixtures/profiles_tests/1920_1080_17000000.json | 2 +- video/fixtures/profiles_tests/1920_1080_1800000.json | 2 +- video/fixtures/profiles_tests/1920_1080_18400000.json | 2 +- video/fixtures/profiles_tests/1920_1080_19300000.json | 2 +- video/fixtures/profiles_tests/1920_1080_19400000.json | 2 +- video/fixtures/profiles_tests/1920_1080_19500000.json | 2 +- video/fixtures/profiles_tests/1920_1080_19700000.json | 2 +- video/fixtures/profiles_tests/1920_1080_19900000.json | 2 +- video/fixtures/profiles_tests/1920_1080_2000000.json | 2 +- video/fixtures/profiles_tests/1920_1080_20000000.json | 2 +- video/fixtures/profiles_tests/1920_1080_20100000.json | 2 +- video/fixtures/profiles_tests/1920_1080_20200000.json | 2 +- video/fixtures/profiles_tests/1920_1080_21100000.json | 2 +- video/fixtures/profiles_tests/1920_1080_2200000.json | 2 +- video/fixtures/profiles_tests/1920_1080_22000000.json | 2 +- video/fixtures/profiles_tests/1920_1080_23700000.json | 2 +- video/fixtures/profiles_tests/1920_1080_23800000.json | 2 +- video/fixtures/profiles_tests/1920_1080_24600000.json | 2 +- video/fixtures/profiles_tests/1920_1080_2500000.json | 2 +- video/fixtures/profiles_tests/1920_1080_25000000.json | 2 +- video/fixtures/profiles_tests/1920_1080_25200000.json | 2 +- video/fixtures/profiles_tests/1920_1080_2600000.json | 2 +- video/fixtures/profiles_tests/1920_1080_2700000.json | 2 +- video/fixtures/profiles_tests/1920_1080_2800000.json | 2 +- video/fixtures/profiles_tests/1920_1080_2900000.json | 2 +- video/fixtures/profiles_tests/1920_1080_3100000.json | 2 +- video/fixtures/profiles_tests/1920_1080_3200000.json | 2 +- video/fixtures/profiles_tests/1920_1080_3300000.json | 2 +- video/fixtures/profiles_tests/1920_1080_3500000.json | 2 +- video/fixtures/profiles_tests/1920_1080_3700000.json | 2 +- video/fixtures/profiles_tests/1920_1080_37700000.json | 2 +- video/fixtures/profiles_tests/1920_1080_3800000.json | 2 +- video/fixtures/profiles_tests/1920_1080_400000.json | 2 +- video/fixtures/profiles_tests/1920_1080_4100000.json | 2 +- video/fixtures/profiles_tests/1920_1080_4200000.json | 2 +- video/fixtures/profiles_tests/1920_1080_4400000.json | 2 +- video/fixtures/profiles_tests/1920_1080_4500000.json | 2 +- video/fixtures/profiles_tests/1920_1080_4800000.json | 2 +- video/fixtures/profiles_tests/1920_1080_5000000.json | 2 +- video/fixtures/profiles_tests/1920_1080_5200000.json | 2 +- video/fixtures/profiles_tests/1920_1080_5600000.json | 2 +- video/fixtures/profiles_tests/1920_1080_5700000.json | 2 +- video/fixtures/profiles_tests/1920_1080_5900000.json | 2 +- video/fixtures/profiles_tests/1920_1080_600000.json | 2 +- video/fixtures/profiles_tests/1920_1080_6100000.json | 2 +- video/fixtures/profiles_tests/1920_1080_6800000.json | 2 +- video/fixtures/profiles_tests/1920_1080_7000000.json | 2 +- video/fixtures/profiles_tests/1920_1080_7700000.json | 2 +- video/fixtures/profiles_tests/1920_1080_7800000.json | 2 +- video/fixtures/profiles_tests/1920_1080_800000.json | 2 +- video/fixtures/profiles_tests/1920_1080_8200000.json | 2 +- video/fixtures/profiles_tests/1920_1080_8300000.json | 2 +- video/fixtures/profiles_tests/1920_1080_8400000.json | 2 +- video/fixtures/profiles_tests/1920_1080_8700000.json | 2 +- video/fixtures/profiles_tests/1920_1080_9100000.json | 2 +- video/fixtures/profiles_tests/1920_1080_9400000.json | 2 +- video/fixtures/profiles_tests/1920_1080_9800000.json | 2 +- video/fixtures/profiles_tests/1920_1080_9900000.json | 2 +- video/fixtures/profiles_tests/1920_1440_15000000.json | 2 +- video/fixtures/profiles_tests/1920_1440_19700000.json | 2 +- video/fixtures/profiles_tests/1920_1440_22500000.json | 2 +- video/fixtures/profiles_tests/1920_1920_10200000.json | 2 +- video/fixtures/profiles_tests/1920_1920_10600000.json | 2 +- video/fixtures/profiles_tests/1920_1920_1100000.json | 2 +- video/fixtures/profiles_tests/1920_1920_15400000.json | 2 +- video/fixtures/profiles_tests/1920_1920_25000000.json | 2 +- video/fixtures/profiles_tests/1920_1920_29000000.json | 2 +- video/fixtures/profiles_tests/1920_1920_3800000.json | 2 +- video/fixtures/profiles_tests/1920_1920_52500000.json | 2 +- video/fixtures/profiles_tests/1920_1920_5300000.json | 2 +- video/fixtures/profiles_tests/1920_1920_5500000.json | 2 +- video/fixtures/profiles_tests/1920_1920_6600000.json | 2 +- video/fixtures/profiles_tests/1920_600_10400000.json | 2 +- video/fixtures/profiles_tests/1980_1980_24700000.json | 2 +- video/fixtures/profiles_tests/2000_1500_5600000.json | 2 +- video/fixtures/profiles_tests/2000_2000_10300000.json | 2 +- video/fixtures/profiles_tests/2000_2000_10900000.json | 2 +- video/fixtures/profiles_tests/2000_2000_11400000.json | 2 +- video/fixtures/profiles_tests/2000_2000_13200000.json | 2 +- video/fixtures/profiles_tests/2000_2000_14600000.json | 2 +- video/fixtures/profiles_tests/2000_2000_15100000.json | 2 +- video/fixtures/profiles_tests/2000_2000_16900000.json | 2 +- video/fixtures/profiles_tests/2000_2000_19500000.json | 2 +- video/fixtures/profiles_tests/2000_2000_22800000.json | 2 +- video/fixtures/profiles_tests/2000_2000_24500000.json | 2 +- video/fixtures/profiles_tests/2000_2000_2900000.json | 2 +- video/fixtures/profiles_tests/2000_2000_29900000.json | 2 +- video/fixtures/profiles_tests/2000_2000_30000000.json | 2 +- video/fixtures/profiles_tests/2000_2000_4100000.json | 2 +- video/fixtures/profiles_tests/2000_2000_4400000.json | 2 +- video/fixtures/profiles_tests/2000_2000_4900000.json | 2 +- video/fixtures/profiles_tests/2000_2000_8100000.json | 2 +- video/fixtures/profiles_tests/2000_2000_8400000.json | 2 +- video/fixtures/profiles_tests/2000_2000_9800000.json | 2 +- video/fixtures/profiles_tests/2000_2000_9900000.json | 2 +- video/fixtures/profiles_tests/2000_3000_22400000.json | 2 +- video/fixtures/profiles_tests/2000_3000_6800000.json | 2 +- video/fixtures/profiles_tests/2048_1152_400000.json | 2 +- video/fixtures/profiles_tests/2048_2048_10800000.json | 2 +- video/fixtures/profiles_tests/2048_2048_20300000.json | 2 +- video/fixtures/profiles_tests/2048_2048_24500000.json | 2 +- video/fixtures/profiles_tests/2048_2048_26900000.json | 2 +- video/fixtures/profiles_tests/2048_2048_2700000.json | 2 +- video/fixtures/profiles_tests/2048_2048_27100000.json | 2 +- video/fixtures/profiles_tests/2048_2048_27200000.json | 2 +- video/fixtures/profiles_tests/2048_2048_27600000.json | 2 +- video/fixtures/profiles_tests/2048_2048_27700000.json | 2 +- video/fixtures/profiles_tests/2048_2048_2800000.json | 2 +- video/fixtures/profiles_tests/2048_2048_37100000.json | 2 +- video/fixtures/profiles_tests/2048_2048_37900000.json | 2 +- video/fixtures/profiles_tests/2048_2048_38200000.json | 2 +- video/fixtures/profiles_tests/2048_2048_4300000.json | 2 +- video/fixtures/profiles_tests/2048_2048_7400000.json | 2 +- video/fixtures/profiles_tests/2048_2048_7700000.json | 2 +- video/fixtures/profiles_tests/2048_2048_8000000.json | 2 +- video/fixtures/profiles_tests/2048_2048_8800000.json | 2 +- video/fixtures/profiles_tests/2048_2048_9900000.json | 2 +- video/fixtures/profiles_tests/2112_2112_67900000.json | 2 +- video/fixtures/profiles_tests/2160_2160_10000000.json | 2 +- video/fixtures/profiles_tests/2160_2160_10200000.json | 2 +- video/fixtures/profiles_tests/2160_2160_16000000.json | 2 +- video/fixtures/profiles_tests/2160_2160_25400000.json | 2 +- video/fixtures/profiles_tests/2160_2160_30800000.json | 2 +- video/fixtures/profiles_tests/2160_2160_400000.json | 2 +- video/fixtures/profiles_tests/2160_2160_59700000.json | 2 +- video/fixtures/profiles_tests/2160_2160_65000000.json | 2 +- video/fixtures/profiles_tests/2160_2160_8800000.json | 2 +- video/fixtures/profiles_tests/2160_2160_9600000.json | 2 +- video/fixtures/profiles_tests/2160_2160_9900000.json | 2 +- video/fixtures/profiles_tests/2160_3840_14900000.json | 2 +- video/fixtures/profiles_tests/2160_3840_19000000.json | 2 +- video/fixtures/profiles_tests/2160_3840_31100000.json | 2 +- video/fixtures/profiles_tests/2160_3840_38000000.json | 2 +- video/fixtures/profiles_tests/2160_720_7200000.json | 2 +- video/fixtures/profiles_tests/2210_2164_4700000.json | 2 +- video/fixtures/profiles_tests/2304_2304_20600000.json | 2 +- video/fixtures/profiles_tests/2304_2304_49100000.json | 2 +- video/fixtures/profiles_tests/2304_2304_92700000.json | 2 +- video/fixtures/profiles_tests/2340_1612_4600000.json | 2 +- video/fixtures/profiles_tests/2384_1576_5400000.json | 2 +- video/fixtures/profiles_tests/2400_2400_9400000.json | 2 +- video/fixtures/profiles_tests/2408_3508_74700000.json | 2 +- video/fixtures/profiles_tests/2432_2380_10600000.json | 2 +- video/fixtures/profiles_tests/2500_1400_11800000.json | 2 +- video/fixtures/profiles_tests/2500_2500_2300000.json | 2 +- video/fixtures/profiles_tests/2500_2500_6300000.json | 2 +- video/fixtures/profiles_tests/2500_2500_7200000.json | 2 +- video/fixtures/profiles_tests/2500_3000_10300000.json | 2 +- video/fixtures/profiles_tests/250_442_400000.json | 2 +- video/fixtures/profiles_tests/2560_1440_12200000.json | 2 +- video/fixtures/profiles_tests/2560_1440_13800000.json | 2 +- video/fixtures/profiles_tests/2560_1440_1500000.json | 2 +- video/fixtures/profiles_tests/264_480_700000.json | 2 +- video/fixtures/profiles_tests/2720_1530_10300000.json | 2 +- video/fixtures/profiles_tests/280_580_200000.json | 2 +- video/fixtures/profiles_tests/2880_2880_1500000.json | 2 +- video/fixtures/profiles_tests/3000_1688_81700000.json | 2 +- video/fixtures/profiles_tests/3000_3000_5300000.json | 2 +- video/fixtures/profiles_tests/300_270_100000.json | 2 +- video/fixtures/profiles_tests/300_428_300000.json | 2 +- video/fixtures/profiles_tests/320_240_300000.json | 2 +- video/fixtures/profiles_tests/320_320_300000.json | 2 +- video/fixtures/profiles_tests/320_400_200000.json | 2 +- video/fixtures/profiles_tests/320_432_700000.json | 2 +- video/fixtures/profiles_tests/3434_3454_32100000.json | 2 +- video/fixtures/profiles_tests/350_480_600000.json | 2 +- video/fixtures/profiles_tests/3520_4160_24500000.json | 2 +- video/fixtures/profiles_tests/352_640_1100000.json | 2 +- video/fixtures/profiles_tests/352_640_200000.json | 2 +- video/fixtures/profiles_tests/352_640_900000.json | 2 +- video/fixtures/profiles_tests/360_360_200000.json | 2 +- video/fixtures/profiles_tests/360_558_1100000.json | 2 +- video/fixtures/profiles_tests/360_640_2500000.json | 2 +- video/fixtures/profiles_tests/360_640_500000.json | 2 +- video/fixtures/profiles_tests/368_600_1200000.json | 2 +- video/fixtures/profiles_tests/368_640_500000.json | 2 +- video/fixtures/profiles_tests/368_640_600000.json | 2 +- video/fixtures/profiles_tests/368_640_900000.json | 2 +- video/fixtures/profiles_tests/368_656_1400000.json | 2 +- video/fixtures/profiles_tests/380_640_400000.json | 2 +- video/fixtures/profiles_tests/382_690_1200000.json | 2 +- video/fixtures/profiles_tests/3840_1644_7100000.json | 2 +- video/fixtures/profiles_tests/3840_2160_10300000.json | 2 +- video/fixtures/profiles_tests/3840_2160_107800000.json | 2 +- video/fixtures/profiles_tests/3840_2160_18300000.json | 2 +- video/fixtures/profiles_tests/3840_2160_20000000.json | 2 +- video/fixtures/profiles_tests/3840_2160_20200000.json | 2 +- video/fixtures/profiles_tests/3840_2160_20700000.json | 2 +- video/fixtures/profiles_tests/3840_2160_21700000.json | 2 +- video/fixtures/profiles_tests/3840_2160_23200000.json | 2 +- video/fixtures/profiles_tests/3840_2160_23300000.json | 2 +- video/fixtures/profiles_tests/3840_2160_24300000.json | 2 +- video/fixtures/profiles_tests/3840_2160_24400000.json | 2 +- video/fixtures/profiles_tests/3840_2160_24600000.json | 2 +- video/fixtures/profiles_tests/3840_2160_26900000.json | 2 +- video/fixtures/profiles_tests/3840_2160_29200000.json | 2 +- video/fixtures/profiles_tests/3840_2160_37400000.json | 2 +- video/fixtures/profiles_tests/3840_2160_37700000.json | 2 +- video/fixtures/profiles_tests/3840_2160_500000.json | 2 +- video/fixtures/profiles_tests/3840_2160_53000000.json | 2 +- video/fixtures/profiles_tests/3840_2160_5600000.json | 2 +- video/fixtures/profiles_tests/3840_2160_56300000.json | 2 +- video/fixtures/profiles_tests/3840_2160_59100000.json | 2 +- video/fixtures/profiles_tests/3840_2160_59800000.json | 2 +- video/fixtures/profiles_tests/3840_2160_62600000.json | 2 +- video/fixtures/profiles_tests/3840_2160_6400000.json | 2 +- video/fixtures/profiles_tests/3840_2160_79200000.json | 2 +- video/fixtures/profiles_tests/3840_2160_79800000.json | 2 +- video/fixtures/profiles_tests/3840_2160_8800000.json | 2 +- video/fixtures/profiles_tests/4000_4000_10300000.json | 2 +- video/fixtures/profiles_tests/400_224_100000.json | 2 +- video/fixtures/profiles_tests/400_400_3500000.json | 2 +- video/fixtures/profiles_tests/400_880_900000.json | 2 +- video/fixtures/profiles_tests/4096_2160_24400000.json | 2 +- video/fixtures/profiles_tests/4096_4096_23000000.json | 2 +- video/fixtures/profiles_tests/416_640_700000.json | 2 +- video/fixtures/profiles_tests/426_240_100000.json | 2 +- video/fixtures/profiles_tests/448_768_2100000.json | 2 +- video/fixtures/profiles_tests/450_450_800000.json | 2 +- video/fixtures/profiles_tests/458_512_800000.json | 2 +- video/fixtures/profiles_tests/460_352_200000.json | 2 +- video/fixtures/profiles_tests/460_640_500000.json | 2 +- video/fixtures/profiles_tests/460_816_800000.json | 2 +- video/fixtures/profiles_tests/464_848_1100000.json | 2 +- video/fixtures/profiles_tests/464_848_1400000.json | 2 +- video/fixtures/profiles_tests/464_848_1600000.json | 2 +- video/fixtures/profiles_tests/480_264_700000.json | 2 +- video/fixtures/profiles_tests/480_270_300000.json | 2 +- video/fixtures/profiles_tests/480_336_500000.json | 2 +- video/fixtures/profiles_tests/480_480_2200000.json | 2 +- video/fixtures/profiles_tests/480_480_500000.json | 2 +- video/fixtures/profiles_tests/480_504_400000.json | 2 +- video/fixtures/profiles_tests/480_600_300000.json | 2 +- video/fixtures/profiles_tests/480_600_400000.json | 2 +- video/fixtures/profiles_tests/480_600_500000.json | 2 +- video/fixtures/profiles_tests/480_664_500000.json | 2 +- video/fixtures/profiles_tests/480_672_600000.json | 2 +- video/fixtures/profiles_tests/480_724_500000.json | 2 +- video/fixtures/profiles_tests/480_852_1000000.json | 2 +- video/fixtures/profiles_tests/480_852_300000.json | 2 +- video/fixtures/profiles_tests/480_852_500000.json | 2 +- video/fixtures/profiles_tests/480_854_1100000.json | 2 +- video/fixtures/profiles_tests/480_854_1700000.json | 2 +- video/fixtures/profiles_tests/480_854_200000.json | 2 +- video/fixtures/profiles_tests/480_854_4300000.json | 2 +- video/fixtures/profiles_tests/480_854_500000.json | 2 +- video/fixtures/profiles_tests/480_854_600000.json | 2 +- video/fixtures/profiles_tests/480_864_1600000.json | 2 +- video/fixtures/profiles_tests/498_280_200000.json | 2 +- video/fixtures/profiles_tests/498_476_800000.json | 2 +- video/fixtures/profiles_tests/500_500_100000.json | 2 +- video/fixtures/profiles_tests/500_500_400000.json | 2 +- video/fixtures/profiles_tests/500_878_800000.json | 2 +- video/fixtures/profiles_tests/512_512_100000.json | 2 +- video/fixtures/profiles_tests/512_512_200000.json | 2 +- video/fixtures/profiles_tests/512_512_3300000.json | 2 +- video/fixtures/profiles_tests/512_512_5200000.json | 2 +- video/fixtures/profiles_tests/528_848_300000.json | 2 +- video/fixtures/profiles_tests/540_540_2400000.json | 2 +- video/fixtures/profiles_tests/540_540_300000.json | 2 +- video/fixtures/profiles_tests/540_540_400000.json | 2 +- video/fixtures/profiles_tests/540_960_4400000.json | 2 +- video/fixtures/profiles_tests/540_960_700000.json | 2 +- video/fixtures/profiles_tests/544_960_1700000.json | 2 +- video/fixtures/profiles_tests/544_960_1900000.json | 2 +- video/fixtures/profiles_tests/544_960_2000000.json | 2 +- video/fixtures/profiles_tests/544_960_2200000.json | 2 +- video/fixtures/profiles_tests/544_960_2300000.json | 2 +- video/fixtures/profiles_tests/544_960_2800000.json | 2 +- video/fixtures/profiles_tests/544_960_700000.json | 2 +- video/fixtures/profiles_tests/544_960_800000.json | 2 +- video/fixtures/profiles_tests/552_640_5900000.json | 2 +- video/fixtures/profiles_tests/558_540_200000.json | 2 +- video/fixtures/profiles_tests/558_560_3300000.json | 2 +- video/fixtures/profiles_tests/568_320_700000.json | 2 +- video/fixtures/profiles_tests/574_1024_10700000.json | 2 +- video/fixtures/profiles_tests/574_1024_11900000.json | 2 +- video/fixtures/profiles_tests/576_1024_1100000.json | 2 +- video/fixtures/profiles_tests/576_1024_1200000.json | 2 +- video/fixtures/profiles_tests/576_1024_1400000.json | 2 +- video/fixtures/profiles_tests/576_1024_1500000.json | 2 +- video/fixtures/profiles_tests/576_1024_1600000.json | 2 +- video/fixtures/profiles_tests/576_1024_1800000.json | 2 +- video/fixtures/profiles_tests/576_1024_200000.json | 2 +- video/fixtures/profiles_tests/576_1024_2200000.json | 2 +- video/fixtures/profiles_tests/576_1024_300000.json | 2 +- video/fixtures/profiles_tests/576_1024_400000.json | 2 +- video/fixtures/profiles_tests/576_1024_4200000.json | 2 +- video/fixtures/profiles_tests/576_1024_500000.json | 2 +- video/fixtures/profiles_tests/576_1024_5900000.json | 2 +- video/fixtures/profiles_tests/576_1024_600000.json | 2 +- video/fixtures/profiles_tests/576_324_400000.json | 2 +- video/fixtures/profiles_tests/576_360_100000.json | 2 +- video/fixtures/profiles_tests/576_576_3100000.json | 2 +- video/fixtures/profiles_tests/576_576_700000.json | 2 +- video/fixtures/profiles_tests/576_640_400000.json | 2 +- video/fixtures/profiles_tests/576_728_300000.json | 2 +- video/fixtures/profiles_tests/576_816_200000.json | 2 +- video/fixtures/profiles_tests/576_896_400000.json | 2 +- video/fixtures/profiles_tests/578_1028_500000.json | 2 +- video/fixtures/profiles_tests/5920_3000_10400000.json | 2 +- video/fixtures/profiles_tests/600_600_1500000.json | 2 +- video/fixtures/profiles_tests/600_600_4400000.json | 2 +- video/fixtures/profiles_tests/600_600_800000.json | 2 +- video/fixtures/profiles_tests/600_750_2500000.json | 2 +- video/fixtures/profiles_tests/608_1080_1100000.json | 2 +- video/fixtures/profiles_tests/608_1080_1200000.json | 2 +- video/fixtures/profiles_tests/608_1080_1600000.json | 2 +- video/fixtures/profiles_tests/608_1080_200000.json | 2 +- video/fixtures/profiles_tests/624_1280_1000000.json | 2 +- video/fixtures/profiles_tests/624_526_700000.json | 2 +- video/fixtures/profiles_tests/624_832_1600000.json | 2 +- video/fixtures/profiles_tests/628_698_200000.json | 2 +- video/fixtures/profiles_tests/636_1000_1400000.json | 2 +- video/fixtures/profiles_tests/640_1138_1000000.json | 2 +- video/fixtures/profiles_tests/640_1138_5400000.json | 2 +- video/fixtures/profiles_tests/640_332_2500000.json | 2 +- video/fixtures/profiles_tests/640_332_300000.json | 2 +- video/fixtures/profiles_tests/640_352_1900000.json | 2 +- video/fixtures/profiles_tests/640_360_200000.json | 2 +- video/fixtures/profiles_tests/640_360_300000.json | 2 +- video/fixtures/profiles_tests/640_360_400000.json | 2 +- video/fixtures/profiles_tests/640_360_500000.json | 2 +- video/fixtures/profiles_tests/640_360_600000.json | 2 +- video/fixtures/profiles_tests/640_360_800000.json | 2 +- video/fixtures/profiles_tests/640_368_400000.json | 2 +- video/fixtures/profiles_tests/640_640_1400000.json | 2 +- video/fixtures/profiles_tests/640_640_1500000.json | 2 +- video/fixtures/profiles_tests/640_640_1700000.json | 2 +- video/fixtures/profiles_tests/640_640_400000.json | 2 +- video/fixtures/profiles_tests/640_640_600000.json | 2 +- video/fixtures/profiles_tests/640_640_700000.json | 2 +- video/fixtures/profiles_tests/658_1080_800000.json | 2 +- video/fixtures/profiles_tests/684_1216_1900000.json | 2 +- video/fixtures/profiles_tests/704_1280_2700000.json | 2 +- video/fixtures/profiles_tests/704_1280_500000.json | 2 +- video/fixtures/profiles_tests/718_720_600000.json | 2 +- video/fixtures/profiles_tests/720_1120_1200000.json | 2 +- video/fixtures/profiles_tests/720_1126_800000.json | 2 +- video/fixtures/profiles_tests/720_1280_1000000.json | 2 +- video/fixtures/profiles_tests/720_1280_1100000.json | 2 +- video/fixtures/profiles_tests/720_1280_1200000.json | 2 +- video/fixtures/profiles_tests/720_1280_1300000.json | 2 +- video/fixtures/profiles_tests/720_1280_1400000.json | 2 +- video/fixtures/profiles_tests/720_1280_1500000.json | 2 +- video/fixtures/profiles_tests/720_1280_1600000.json | 2 +- video/fixtures/profiles_tests/720_1280_1700000.json | 2 +- video/fixtures/profiles_tests/720_1280_1800000.json | 2 +- video/fixtures/profiles_tests/720_1280_1900000.json | 2 +- video/fixtures/profiles_tests/720_1280_2000000.json | 2 +- video/fixtures/profiles_tests/720_1280_2100000.json | 2 +- video/fixtures/profiles_tests/720_1280_2200000.json | 2 +- video/fixtures/profiles_tests/720_1280_2300000.json | 2 +- video/fixtures/profiles_tests/720_1280_2400000.json | 2 +- video/fixtures/profiles_tests/720_1280_2500000.json | 2 +- video/fixtures/profiles_tests/720_1280_2600000.json | 2 +- video/fixtures/profiles_tests/720_1280_2900000.json | 2 +- video/fixtures/profiles_tests/720_1280_300000.json | 2 +- video/fixtures/profiles_tests/720_1280_3000000.json | 2 +- video/fixtures/profiles_tests/720_1280_3100000.json | 2 +- video/fixtures/profiles_tests/720_1280_3500000.json | 2 +- video/fixtures/profiles_tests/720_1280_3700000.json | 2 +- video/fixtures/profiles_tests/720_1280_400000.json | 2 +- video/fixtures/profiles_tests/720_1280_500000.json | 2 +- video/fixtures/profiles_tests/720_1280_5700000.json | 2 +- video/fixtures/profiles_tests/720_1280_600000.json | 2 +- video/fixtures/profiles_tests/720_1280_6300000.json | 2 +- video/fixtures/profiles_tests/720_1280_6400000.json | 2 +- video/fixtures/profiles_tests/720_1280_700000.json | 2 +- video/fixtures/profiles_tests/720_1280_7100000.json | 2 +- video/fixtures/profiles_tests/720_1280_7200000.json | 2 +- video/fixtures/profiles_tests/720_1280_800000.json | 2 +- video/fixtures/profiles_tests/720_1280_900000.json | 2 +- video/fixtures/profiles_tests/720_404_300000.json | 2 +- video/fixtures/profiles_tests/720_416_1000000.json | 2 +- video/fixtures/profiles_tests/720_416_1100000.json | 2 +- video/fixtures/profiles_tests/720_416_1200000.json | 2 +- video/fixtures/profiles_tests/720_416_1900000.json | 2 +- video/fixtures/profiles_tests/720_416_2000000.json | 2 +- video/fixtures/profiles_tests/720_416_2100000.json | 2 +- video/fixtures/profiles_tests/720_416_2300000.json | 2 +- video/fixtures/profiles_tests/720_416_2400000.json | 2 +- video/fixtures/profiles_tests/720_720_1000000.json | 2 +- video/fixtures/profiles_tests/720_720_1100000.json | 2 +- video/fixtures/profiles_tests/720_720_1200000.json | 2 +- video/fixtures/profiles_tests/720_720_1700000.json | 2 +- video/fixtures/profiles_tests/720_720_2500000.json | 2 +- video/fixtures/profiles_tests/720_720_300000.json | 2 +- video/fixtures/profiles_tests/720_720_400000.json | 2 +- video/fixtures/profiles_tests/720_720_600000.json | 2 +- video/fixtures/profiles_tests/720_720_700000.json | 2 +- video/fixtures/profiles_tests/720_900_1300000.json | 2 +- video/fixtures/profiles_tests/720_900_1800000.json | 2 +- video/fixtures/profiles_tests/720_900_200000.json | 2 +- video/fixtures/profiles_tests/720_900_4400000.json | 2 +- video/fixtures/profiles_tests/720_900_500000.json | 2 +- video/fixtures/profiles_tests/720_966_1700000.json | 2 +- video/fixtures/profiles_tests/720_978_1800000.json | 2 +- video/fixtures/profiles_tests/726_1280_2600000.json | 2 +- video/fixtures/profiles_tests/734_1016_10200000.json | 2 +- video/fixtures/profiles_tests/734_1016_3700000.json | 2 +- video/fixtures/profiles_tests/734_1016_5900000.json | 2 +- video/fixtures/profiles_tests/734_1016_6400000.json | 2 +- video/fixtures/profiles_tests/734_1016_9500000.json | 2 +- video/fixtures/profiles_tests/736_1280_3000000.json | 2 +- video/fixtures/profiles_tests/740_1080_1000000.json | 2 +- video/fixtures/profiles_tests/750_814_10700000.json | 2 +- video/fixtures/profiles_tests/756_756_14800000.json | 2 +- video/fixtures/profiles_tests/768_1024_17600000.json | 2 +- video/fixtures/profiles_tests/768_1024_23100000.json | 2 +- video/fixtures/profiles_tests/770_1000_7400000.json | 2 +- video/fixtures/profiles_tests/800_450_1800000.json | 2 +- video/fixtures/profiles_tests/800_450_700000.json | 2 +- video/fixtures/profiles_tests/800_450_800000.json | 2 +- video/fixtures/profiles_tests/800_450_900000.json | 2 +- video/fixtures/profiles_tests/800_600_2400000.json | 2 +- video/fixtures/profiles_tests/800_700_10100000.json | 2 +- video/fixtures/profiles_tests/800_800_3600000.json | 2 +- video/fixtures/profiles_tests/800_800_3900000.json | 2 +- video/fixtures/profiles_tests/800_800_5900000.json | 2 +- video/fixtures/profiles_tests/800_800_6100000.json | 2 +- video/fixtures/profiles_tests/800_800_6600000.json | 2 +- video/fixtures/profiles_tests/800_800_7900000.json | 2 +- video/fixtures/profiles_tests/800_800_8000000.json | 2 +- video/fixtures/profiles_tests/800_800_8500000.json | 2 +- video/fixtures/profiles_tests/816_712_200000.json | 2 +- video/fixtures/profiles_tests/820_1188_16900000.json | 2 +- video/fixtures/profiles_tests/840_1196_16700000.json | 2 +- video/fixtures/profiles_tests/848_464_1100000.json | 2 +- video/fixtures/profiles_tests/854_1200_16600000.json | 2 +- video/fixtures/profiles_tests/854_480_700000.json | 2 +- video/fixtures/profiles_tests/880_880_800000.json | 2 +- video/fixtures/profiles_tests/886_534_12700000.json | 2 +- video/fixtures/profiles_tests/900_1200_10900000.json | 2 +- video/fixtures/profiles_tests/954_392_500000.json | 2 +- video/fixtures/profiles_tests/960_540_600000.json | 2 +- video/fixtures/profiles_tests/960_540_7000000.json | 2 +- video/fixtures/profiles_tests/960_544_1900000.json | 2 +- video/fixtures/profiles_tests/960_720_1900000.json | 2 +- video/fixtures/profiles_tests/960_720_2100000.json | 2 +- video/fixtures/profiles_tests/960_720_500000.json | 2 +- video/fixtures/profiles_tests/960_960_2800000.json | 2 +- video/fixtures/profiles_tests/992_1302_2900000.json | 2 +- 723 files changed, 723 insertions(+), 723 deletions(-) diff --git a/video/fixtures/profiles_tests/1000_1000_10700000.json b/video/fixtures/profiles_tests/1000_1000_10700000.json index f58a78742..1aafbd426 100644 --- a/video/fixtures/profiles_tests/1000_1000_10700000.json +++ b/video/fixtures/profiles_tests/1000_1000_10700000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":12840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_1100000.json b/video/fixtures/profiles_tests/1000_1000_1100000.json index aa30a4c4d..d697a932b 100644 --- a/video/fixtures/profiles_tests/1000_1000_1100000.json +++ b/video/fixtures/profiles_tests/1000_1000_1100000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":304128,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":304128,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_11500000.json b/video/fixtures/profiles_tests/1000_1000_11500000.json index abc7eaf07..ee2a799f5 100644 --- a/video/fixtures/profiles_tests/1000_1000_11500000.json +++ b/video/fixtures/profiles_tests/1000_1000_11500000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":11500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":11500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":11500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":13800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_1200000.json b/video/fixtures/profiles_tests/1000_1000_1200000.json index dc3cc1eab..173096e89 100644 --- a/video/fixtures/profiles_tests/1000_1000_1200000.json +++ b/video/fixtures/profiles_tests/1000_1000_1200000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":331776,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":331776,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_1300000.json b/video/fixtures/profiles_tests/1000_1000_1300000.json index 0042196e3..65bf67921 100644 --- a/video/fixtures/profiles_tests/1000_1000_1300000.json +++ b/video/fixtures/profiles_tests/1000_1000_1300000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":359424,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":359424,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_13500000.json b/video/fixtures/profiles_tests/1000_1000_13500000.json index 7f9c6288f..6230be80d 100644 --- a/video/fixtures/profiles_tests/1000_1000_13500000.json +++ b/video/fixtures/profiles_tests/1000_1000_13500000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":13500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":13500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":13500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":16200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_1400000.json b/video/fixtures/profiles_tests/1000_1000_1400000.json index de1543bea..f448ee197 100644 --- a/video/fixtures/profiles_tests/1000_1000_1400000.json +++ b/video/fixtures/profiles_tests/1000_1000_1400000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":387072,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":387072,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_1600000.json b/video/fixtures/profiles_tests/1000_1000_1600000.json index 276a16295..f6055c8b3 100644 --- a/video/fixtures/profiles_tests/1000_1000_1600000.json +++ b/video/fixtures/profiles_tests/1000_1000_1600000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":442368,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":442368,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_1700000.json b/video/fixtures/profiles_tests/1000_1000_1700000.json index 208fbffaf..87f92a3f9 100644 --- a/video/fixtures/profiles_tests/1000_1000_1700000.json +++ b/video/fixtures/profiles_tests/1000_1000_1700000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":470016,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":470016,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":2040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_200000.json b/video/fixtures/profiles_tests/1000_1000_200000.json index 4e3ae848f..779ed0fe2 100644 --- a/video/fixtures/profiles_tests/1000_1000_200000.json +++ b/video/fixtures/profiles_tests/1000_1000_200000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":100000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":100000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_2100000.json b/video/fixtures/profiles_tests/1000_1000_2100000.json index d7b5c2a4c..33cb1b202 100644 --- a/video/fixtures/profiles_tests/1000_1000_2100000.json +++ b/video/fixtures/profiles_tests/1000_1000_2100000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":580608,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":580608,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":2520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_3000000.json b/video/fixtures/profiles_tests/1000_1000_3000000.json index 0b51b6053..81b4882fb 100644 --- a/video/fixtures/profiles_tests/1000_1000_3000000.json +++ b/video/fixtures/profiles_tests/1000_1000_3000000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":829440,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":829440,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_5300000.json b/video/fixtures/profiles_tests/1000_1000_5300000.json index af459c522..aee3d0374 100644 --- a/video/fixtures/profiles_tests/1000_1000_5300000.json +++ b/video/fixtures/profiles_tests/1000_1000_5300000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":5300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":6360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_7500000.json b/video/fixtures/profiles_tests/1000_1000_7500000.json index 8262ba0be..0d84a3553 100644 --- a/video/fixtures/profiles_tests/1000_1000_7500000.json +++ b/video/fixtures/profiles_tests/1000_1000_7500000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":7500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":7500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":7500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":9000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_800000.json b/video/fixtures/profiles_tests/1000_1000_800000.json index 96cceb9cb..1bcdb4d5c 100644 --- a/video/fixtures/profiles_tests/1000_1000_800000.json +++ b/video/fixtures/profiles_tests/1000_1000_800000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":400000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":400000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_8200000.json b/video/fixtures/profiles_tests/1000_1000_8200000.json index 307c25e02..89a935cd9 100644 --- a/video/fixtures/profiles_tests/1000_1000_8200000.json +++ b/video/fixtures/profiles_tests/1000_1000_8200000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":8200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":8200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":8200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":9840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1000_900000.json b/video/fixtures/profiles_tests/1000_1000_900000.json index 31864d134..c61a7fdf7 100644 --- a/video/fixtures/profiles_tests/1000_1000_900000.json +++ b/video/fixtures/profiles_tests/1000_1000_900000.json @@ -1 +1 @@ -{"Width":1000,"Height":1000,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":450000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1000,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1000,"height":1000,"bitrate":450000,"fps":0,"quality":27},{"name":"1000p0","width":1000,"height":1000,"bitrate":1080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1000_1400_10700000.json b/video/fixtures/profiles_tests/1000_1400_10700000.json index 8ea1d6af0..9af0a2089 100644 --- a/video/fixtures/profiles_tests/1000_1400_10700000.json +++ b/video/fixtures/profiles_tests/1000_1400_10700000.json @@ -1 +1 @@ -{"Width":1000,"Height":1400,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1400p0","width":1000,"height":1400,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1000,"Height":1400,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1400p0","width":1000,"height":1400,"bitrate":12840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_100000.json b/video/fixtures/profiles_tests/1024_1024_100000.json index 672b41e37..3bcb2250d 100644 --- a/video/fixtures/profiles_tests/1024_1024_100000.json +++ b/video/fixtures/profiles_tests/1024_1024_100000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":50000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":50000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_10500000.json b/video/fixtures/profiles_tests/1024_1024_10500000.json index c116a55d4..9d6fdee79 100644 --- a/video/fixtures/profiles_tests/1024_1024_10500000.json +++ b/video/fixtures/profiles_tests/1024_1024_10500000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":10500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":10500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":10500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":12600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_10600000.json b/video/fixtures/profiles_tests/1024_1024_10600000.json index 50703a7bd..d403976b8 100644 --- a/video/fixtures/profiles_tests/1024_1024_10600000.json +++ b/video/fixtures/profiles_tests/1024_1024_10600000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":10600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":10600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":10600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":12720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_12100000.json b/video/fixtures/profiles_tests/1024_1024_12100000.json index 9f8d57bd0..b511a7322 100644 --- a/video/fixtures/profiles_tests/1024_1024_12100000.json +++ b/video/fixtures/profiles_tests/1024_1024_12100000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":12100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":12100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":12100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":14520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_13200000.json b/video/fixtures/profiles_tests/1024_1024_13200000.json index 665e78478..ce98d0e9c 100644 --- a/video/fixtures/profiles_tests/1024_1024_13200000.json +++ b/video/fixtures/profiles_tests/1024_1024_13200000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":13200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":13200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":13200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":15840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_1800000.json b/video/fixtures/profiles_tests/1024_1024_1800000.json index 9623d0304..00ae8399c 100644 --- a/video/fixtures/profiles_tests/1024_1024_1800000.json +++ b/video/fixtures/profiles_tests/1024_1024_1800000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":474609,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":474609,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":2160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_1900000.json b/video/fixtures/profiles_tests/1024_1024_1900000.json index dd04f06c4..46b4584fa 100644 --- a/video/fixtures/profiles_tests/1024_1024_1900000.json +++ b/video/fixtures/profiles_tests/1024_1024_1900000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":500976,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":500976,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":2280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_2000000.json b/video/fixtures/profiles_tests/1024_1024_2000000.json index 35ad3fab0..8c2f00cfe 100644 --- a/video/fixtures/profiles_tests/1024_1024_2000000.json +++ b/video/fixtures/profiles_tests/1024_1024_2000000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":527343,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":527343,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_2100000.json b/video/fixtures/profiles_tests/1024_1024_2100000.json index 9025d4cb2..2939ae449 100644 --- a/video/fixtures/profiles_tests/1024_1024_2100000.json +++ b/video/fixtures/profiles_tests/1024_1024_2100000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":553710,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":553710,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":2520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_2800000.json b/video/fixtures/profiles_tests/1024_1024_2800000.json index 593b1af74..0ebe1495a 100644 --- a/video/fixtures/profiles_tests/1024_1024_2800000.json +++ b/video/fixtures/profiles_tests/1024_1024_2800000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":738281,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":2800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":738281,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":3360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_3500000.json b/video/fixtures/profiles_tests/1024_1024_3500000.json index 86acf235e..cc080b0ef 100644 --- a/video/fixtures/profiles_tests/1024_1024_3500000.json +++ b/video/fixtures/profiles_tests/1024_1024_3500000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":3500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":922851,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":3500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":3500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":922851,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_3800000.json b/video/fixtures/profiles_tests/1024_1024_3800000.json index 52d2f8b86..04e344dc2 100644 --- a/video/fixtures/profiles_tests/1024_1024_3800000.json +++ b/video/fixtures/profiles_tests/1024_1024_3800000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":3800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":4560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_4200000.json b/video/fixtures/profiles_tests/1024_1024_4200000.json index 1f79c67fc..22658b5d1 100644 --- a/video/fixtures/profiles_tests/1024_1024_4200000.json +++ b/video/fixtures/profiles_tests/1024_1024_4200000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":5040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_5600000.json b/video/fixtures/profiles_tests/1024_1024_5600000.json index 90899e2af..6ca1a9888 100644 --- a/video/fixtures/profiles_tests/1024_1024_5600000.json +++ b/video/fixtures/profiles_tests/1024_1024_5600000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":5600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":5600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":5600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":6720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_700000.json b/video/fixtures/profiles_tests/1024_1024_700000.json index 73691a10d..e243563e9 100644 --- a/video/fixtures/profiles_tests/1024_1024_700000.json +++ b/video/fixtures/profiles_tests/1024_1024_700000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":350000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":350000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_7300000.json b/video/fixtures/profiles_tests/1024_1024_7300000.json index 540bb20d1..a0ec257f7 100644 --- a/video/fixtures/profiles_tests/1024_1024_7300000.json +++ b/video/fixtures/profiles_tests/1024_1024_7300000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":7300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":7300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":7300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":8760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_8600000.json b/video/fixtures/profiles_tests/1024_1024_8600000.json index 10aa22396..996ba56b1 100644 --- a/video/fixtures/profiles_tests/1024_1024_8600000.json +++ b/video/fixtures/profiles_tests/1024_1024_8600000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":8600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":8600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":8600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":10320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_1024_900000.json b/video/fixtures/profiles_tests/1024_1024_900000.json index f279cd875..9d9c03dbd 100644 --- a/video/fixtures/profiles_tests/1024_1024_900000.json +++ b/video/fixtures/profiles_tests/1024_1024_900000.json @@ -1 +1 @@ -{"Width":1024,"Height":1024,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":450000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":1024,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1024,"height":1024,"bitrate":450000,"fps":0,"quality":27},{"name":"1024p0","width":1024,"height":1024,"bitrate":1080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1024_576_7700000.json b/video/fixtures/profiles_tests/1024_576_7700000.json index feb3e287b..e7f38713d 100644 --- a/video/fixtures/profiles_tests/1024_576_7700000.json +++ b/video/fixtures/profiles_tests/1024_576_7700000.json @@ -1 +1 @@ -{"Width":1024,"Height":576,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"576p0","width":1024,"height":576,"bitrate":7700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1024,"Height":576,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"576p0","width":1024,"height":576,"bitrate":9240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1030_720_2000000.json b/video/fixtures/profiles_tests/1030_720_2000000.json index 90f7383f3..b2c1b3762 100644 --- a/video/fixtures/profiles_tests/1030_720_2000000.json +++ b/video/fixtures/profiles_tests/1030_720_2000000.json @@ -1 +1 @@ -{"Width":1030,"Height":720,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":745631,"fps":0,"quality":27},{"name":"720p0","width":1030,"height":720,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1030,"Height":720,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":745631,"fps":0,"quality":27},{"name":"720p0","width":1030,"height":720,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1038_1202_1300000.json b/video/fixtures/profiles_tests/1038_1202_1300000.json index a853be1bd..ecdac1157 100644 --- a/video/fixtures/profiles_tests/1038_1202_1300000.json +++ b/video/fixtures/profiles_tests/1038_1202_1300000.json @@ -1 +1 @@ -{"Width":1038,"Height":1202,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":288074,"fps":0,"quality":27},{"name":"1202p0","width":1038,"height":1202,"bitrate":1300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1038,"Height":1202,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":288074,"fps":0,"quality":27},{"name":"1202p0","width":1038,"height":1202,"bitrate":1560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1076_604_800000.json b/video/fixtures/profiles_tests/1076_604_800000.json index 21b948e9f..5410762c8 100644 --- a/video/fixtures/profiles_tests/1076_604_800000.json +++ b/video/fixtures/profiles_tests/1076_604_800000.json @@ -1 +1 @@ -{"Width":1076,"Height":604,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1076,"height":604,"bitrate":400000,"fps":0,"quality":27},{"name":"604p0","width":1076,"height":604,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1076,"Height":604,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1076,"height":604,"bitrate":400000,"fps":0,"quality":27},{"name":"604p0","width":1076,"height":604,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_10000000.json b/video/fixtures/profiles_tests/1080_1080_10000000.json index a8029425e..240ef3036 100644 --- a/video/fixtures/profiles_tests/1080_1080_10000000.json +++ b/video/fixtures/profiles_tests/1080_1080_10000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":12000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_10300000.json b/video/fixtures/profiles_tests/1080_1080_10300000.json index 7b6132fee..2a33e6b15 100644 --- a/video/fixtures/profiles_tests/1080_1080_10300000.json +++ b/video/fixtures/profiles_tests/1080_1080_10300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":12360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_10400000.json b/video/fixtures/profiles_tests/1080_1080_10400000.json index 19fb9157c..23d6d911b 100644 --- a/video/fixtures/profiles_tests/1080_1080_10400000.json +++ b/video/fixtures/profiles_tests/1080_1080_10400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":12480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_10500000.json b/video/fixtures/profiles_tests/1080_1080_10500000.json index 68554745c..e1ed7b371 100644 --- a/video/fixtures/profiles_tests/1080_1080_10500000.json +++ b/video/fixtures/profiles_tests/1080_1080_10500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":10500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":10500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":12600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_10700000.json b/video/fixtures/profiles_tests/1080_1080_10700000.json index f991385cb..8658fae5d 100644 --- a/video/fixtures/profiles_tests/1080_1080_10700000.json +++ b/video/fixtures/profiles_tests/1080_1080_10700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":12840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_10800000.json b/video/fixtures/profiles_tests/1080_1080_10800000.json index c728ef98a..7352c1a62 100644 --- a/video/fixtures/profiles_tests/1080_1080_10800000.json +++ b/video/fixtures/profiles_tests/1080_1080_10800000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":10800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":10800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":12960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_11400000.json b/video/fixtures/profiles_tests/1080_1080_11400000.json index 17b4d15b1..e5d69d77b 100644 --- a/video/fixtures/profiles_tests/1080_1080_11400000.json +++ b/video/fixtures/profiles_tests/1080_1080_11400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":11400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":11400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":11400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":13680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_11600000.json b/video/fixtures/profiles_tests/1080_1080_11600000.json index 47775a404..041f7b465 100644 --- a/video/fixtures/profiles_tests/1080_1080_11600000.json +++ b/video/fixtures/profiles_tests/1080_1080_11600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":11600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":11600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":11600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":13920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_11700000.json b/video/fixtures/profiles_tests/1080_1080_11700000.json index c069ba0b2..d91e28480 100644 --- a/video/fixtures/profiles_tests/1080_1080_11700000.json +++ b/video/fixtures/profiles_tests/1080_1080_11700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":11700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":11700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":11700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":14040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_11900000.json b/video/fixtures/profiles_tests/1080_1080_11900000.json index 2a6ae14d3..16b82c87d 100644 --- a/video/fixtures/profiles_tests/1080_1080_11900000.json +++ b/video/fixtures/profiles_tests/1080_1080_11900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":11900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":11900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":11900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":14280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_12100000.json b/video/fixtures/profiles_tests/1080_1080_12100000.json index ece50ece3..711c82356 100644 --- a/video/fixtures/profiles_tests/1080_1080_12100000.json +++ b/video/fixtures/profiles_tests/1080_1080_12100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":12100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":12100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":12100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":14520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_14900000.json b/video/fixtures/profiles_tests/1080_1080_14900000.json index b6c51b384..03288f57a 100644 --- a/video/fixtures/profiles_tests/1080_1080_14900000.json +++ b/video/fixtures/profiles_tests/1080_1080_14900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":14900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":14900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":14900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":17880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_1500000.json b/video/fixtures/profiles_tests/1080_1080_1500000.json index 02bce572b..cbb730695 100644 --- a/video/fixtures/profiles_tests/1080_1080_1500000.json +++ b/video/fixtures/profiles_tests/1080_1080_1500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":355555,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":355555,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_15000000.json b/video/fixtures/profiles_tests/1080_1080_15000000.json index 78cbc48d0..0e5a985e7 100644 --- a/video/fixtures/profiles_tests/1080_1080_15000000.json +++ b/video/fixtures/profiles_tests/1080_1080_15000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":15000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":15000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":15000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":18000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_1600000.json b/video/fixtures/profiles_tests/1080_1080_1600000.json index 05ec09294..15423dd79 100644 --- a/video/fixtures/profiles_tests/1080_1080_1600000.json +++ b/video/fixtures/profiles_tests/1080_1080_1600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":379259,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":379259,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":1920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_200000.json b/video/fixtures/profiles_tests/1080_1080_200000.json index 574511f71..3c1c8fe3e 100644 --- a/video/fixtures/profiles_tests/1080_1080_200000.json +++ b/video/fixtures/profiles_tests/1080_1080_200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":100000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":100000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_20400000.json b/video/fixtures/profiles_tests/1080_1080_20400000.json index 6c91c3ee1..7722e4cce 100644 --- a/video/fixtures/profiles_tests/1080_1080_20400000.json +++ b/video/fixtures/profiles_tests/1080_1080_20400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":20400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":20400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":20400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":24480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_2100000.json b/video/fixtures/profiles_tests/1080_1080_2100000.json index 5835398ec..24c7e89b0 100644 --- a/video/fixtures/profiles_tests/1080_1080_2100000.json +++ b/video/fixtures/profiles_tests/1080_1080_2100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":497777,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":497777,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":2520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_2400000.json b/video/fixtures/profiles_tests/1080_1080_2400000.json index a6b91253e..3106238b6 100644 --- a/video/fixtures/profiles_tests/1080_1080_2400000.json +++ b/video/fixtures/profiles_tests/1080_1080_2400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":568888,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":568888,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":2880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_28500000.json b/video/fixtures/profiles_tests/1080_1080_28500000.json index 1cb0a5310..85f77eca6 100644 --- a/video/fixtures/profiles_tests/1080_1080_28500000.json +++ b/video/fixtures/profiles_tests/1080_1080_28500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":28500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":28500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":28500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":34200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_300000.json b/video/fixtures/profiles_tests/1080_1080_300000.json index e24427dcf..476ee710b 100644 --- a/video/fixtures/profiles_tests/1080_1080_300000.json +++ b/video/fixtures/profiles_tests/1080_1080_300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":150000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":150000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_3000000.json b/video/fixtures/profiles_tests/1080_1080_3000000.json index 31d572939..1771f99a4 100644 --- a/video/fixtures/profiles_tests/1080_1080_3000000.json +++ b/video/fixtures/profiles_tests/1080_1080_3000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":711111,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":711111,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_39300000.json b/video/fixtures/profiles_tests/1080_1080_39300000.json index a5e025c3f..196d17826 100644 --- a/video/fixtures/profiles_tests/1080_1080_39300000.json +++ b/video/fixtures/profiles_tests/1080_1080_39300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":39300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":39300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":39300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":47160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_400000.json b/video/fixtures/profiles_tests/1080_1080_400000.json index ca87cd04b..3e3632256 100644 --- a/video/fixtures/profiles_tests/1080_1080_400000.json +++ b/video/fixtures/profiles_tests/1080_1080_400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":200000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":200000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_4200000.json b/video/fixtures/profiles_tests/1080_1080_4200000.json index a30e1ee75..5103609c6 100644 --- a/video/fixtures/profiles_tests/1080_1080_4200000.json +++ b/video/fixtures/profiles_tests/1080_1080_4200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":995555,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3982222,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":995555,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3982222,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":5040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_500000.json b/video/fixtures/profiles_tests/1080_1080_500000.json index 70c5ec4ca..fefbf079e 100644 --- a/video/fixtures/profiles_tests/1080_1080_500000.json +++ b/video/fixtures/profiles_tests/1080_1080_500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":250000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":250000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_5400000.json b/video/fixtures/profiles_tests/1080_1080_5400000.json index 3bd7d0d25..a7432831f 100644 --- a/video/fixtures/profiles_tests/1080_1080_5400000.json +++ b/video/fixtures/profiles_tests/1080_1080_5400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":5400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":5400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":5400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":6480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_600000.json b/video/fixtures/profiles_tests/1080_1080_600000.json index 8e7ec2c4c..dbece5255 100644 --- a/video/fixtures/profiles_tests/1080_1080_600000.json +++ b/video/fixtures/profiles_tests/1080_1080_600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":300000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":300000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_6400000.json b/video/fixtures/profiles_tests/1080_1080_6400000.json index 36d8d7fc8..047bfc583 100644 --- a/video/fixtures/profiles_tests/1080_1080_6400000.json +++ b/video/fixtures/profiles_tests/1080_1080_6400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":6400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":6400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":6400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":7680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_6500000.json b/video/fixtures/profiles_tests/1080_1080_6500000.json index fd828f712..48b1d1fe8 100644 --- a/video/fixtures/profiles_tests/1080_1080_6500000.json +++ b/video/fixtures/profiles_tests/1080_1080_6500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":6500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":6500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":6500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":7800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_7700000.json b/video/fixtures/profiles_tests/1080_1080_7700000.json index 4855edba9..5f721a9bd 100644 --- a/video/fixtures/profiles_tests/1080_1080_7700000.json +++ b/video/fixtures/profiles_tests/1080_1080_7700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":7700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_8000000.json b/video/fixtures/profiles_tests/1080_1080_8000000.json index db6643653..6e345caed 100644 --- a/video/fixtures/profiles_tests/1080_1080_8000000.json +++ b/video/fixtures/profiles_tests/1080_1080_8000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":8000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_8100000.json b/video/fixtures/profiles_tests/1080_1080_8100000.json index 275f85a01..7e4120eb1 100644 --- a/video/fixtures/profiles_tests/1080_1080_8100000.json +++ b/video/fixtures/profiles_tests/1080_1080_8100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":8100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":8100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":8100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_8400000.json b/video/fixtures/profiles_tests/1080_1080_8400000.json index 46b3533fd..4fb6ca61f 100644 --- a/video/fixtures/profiles_tests/1080_1080_8400000.json +++ b/video/fixtures/profiles_tests/1080_1080_8400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":8400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_8500000.json b/video/fixtures/profiles_tests/1080_1080_8500000.json index f0f97d240..f38e7160a 100644 --- a/video/fixtures/profiles_tests/1080_1080_8500000.json +++ b/video/fixtures/profiles_tests/1080_1080_8500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":8500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":8500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":8500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_8700000.json b/video/fixtures/profiles_tests/1080_1080_8700000.json index b4558e729..7e512065b 100644 --- a/video/fixtures/profiles_tests/1080_1080_8700000.json +++ b/video/fixtures/profiles_tests/1080_1080_8700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":8700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":8700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":8700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_8900000.json b/video/fixtures/profiles_tests/1080_1080_8900000.json index f6f756390..b8ec10506 100644 --- a/video/fixtures/profiles_tests/1080_1080_8900000.json +++ b/video/fixtures/profiles_tests/1080_1080_8900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":8900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":8900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":8900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_900000.json b/video/fixtures/profiles_tests/1080_1080_900000.json index 9217c5a2f..326ec1a64 100644 --- a/video/fixtures/profiles_tests/1080_1080_900000.json +++ b/video/fixtures/profiles_tests/1080_1080_900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":450000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1080,"bitrate":450000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":1080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_9000000.json b/video/fixtures/profiles_tests/1080_1080_9000000.json index 28b5a9c62..4c6dd3ba9 100644 --- a/video/fixtures/profiles_tests/1080_1080_9000000.json +++ b/video/fixtures/profiles_tests/1080_1080_9000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":9000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":9000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_9100000.json b/video/fixtures/profiles_tests/1080_1080_9100000.json index ff0a34e8a..d2201b00e 100644 --- a/video/fixtures/profiles_tests/1080_1080_9100000.json +++ b/video/fixtures/profiles_tests/1080_1080_9100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":9100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":9100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":10920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_9200000.json b/video/fixtures/profiles_tests/1080_1080_9200000.json index 828ca7bbb..c950abef5 100644 --- a/video/fixtures/profiles_tests/1080_1080_9200000.json +++ b/video/fixtures/profiles_tests/1080_1080_9200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":9200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":9200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":11040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_9500000.json b/video/fixtures/profiles_tests/1080_1080_9500000.json index 543f37a34..98e253220 100644 --- a/video/fixtures/profiles_tests/1080_1080_9500000.json +++ b/video/fixtures/profiles_tests/1080_1080_9500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":9500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":9500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":11400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1080_9900000.json b/video/fixtures/profiles_tests/1080_1080_9900000.json index 7c170f5af..6229beb17 100644 --- a/video/fixtures/profiles_tests/1080_1080_9900000.json +++ b/video/fixtures/profiles_tests/1080_1080_9900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1080,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":9900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1080,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1080,"height":1080,"bitrate":11880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1440_11000000.json b/video/fixtures/profiles_tests/1080_1440_11000000.json index 0892ba8b9..3920da1a6 100644 --- a/video/fixtures/profiles_tests/1080_1440_11000000.json +++ b/video/fixtures/profiles_tests/1080_1440_11000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1440,"Bitrate":11000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1080,"height":1440,"bitrate":11000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1440,"Bitrate":11000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1080,"height":1440,"bitrate":13200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1440_200000.json b/video/fixtures/profiles_tests/1080_1440_200000.json index efee86bc4..79a47c06d 100644 --- a/video/fixtures/profiles_tests/1080_1440_200000.json +++ b/video/fixtures/profiles_tests/1080_1440_200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1440,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1440,"bitrate":100000,"fps":0,"quality":27},{"name":"1440p0","width":1080,"height":1440,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1440,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1440,"bitrate":100000,"fps":0,"quality":27},{"name":"1440p0","width":1080,"height":1440,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1440_2100000.json b/video/fixtures/profiles_tests/1080_1440_2100000.json index 638a053a2..0c9a43c88 100644 --- a/video/fixtures/profiles_tests/1080_1440_2100000.json +++ b/video/fixtures/profiles_tests/1080_1440_2100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1440,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":373333,"fps":0,"quality":27},{"name":"1440p0","width":1080,"height":1440,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1440,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":373333,"fps":0,"quality":27},{"name":"1440p0","width":1080,"height":1440,"bitrate":2520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1620_10700000.json b/video/fixtures/profiles_tests/1080_1620_10700000.json index 983acee75..5ab9843b2 100644 --- a/video/fixtures/profiles_tests/1080_1620_10700000.json +++ b/video/fixtures/profiles_tests/1080_1620_10700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1620,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1620p0","width":1080,"height":1620,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1620,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1620p0","width":1080,"height":1620,"bitrate":12840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1620_10900000.json b/video/fixtures/profiles_tests/1080_1620_10900000.json index 5bd2d1f26..c98cbf6f7 100644 --- a/video/fixtures/profiles_tests/1080_1620_10900000.json +++ b/video/fixtures/profiles_tests/1080_1620_10900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1620,"Bitrate":10900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1620p0","width":1080,"height":1620,"bitrate":10900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1620,"Bitrate":10900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1620p0","width":1080,"height":1620,"bitrate":13080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1834_4600000.json b/video/fixtures/profiles_tests/1080_1834_4600000.json index 7bded81b6..c03e1c86a 100644 --- a/video/fixtures/profiles_tests/1080_1834_4600000.json +++ b/video/fixtures/profiles_tests/1080_1834_4600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1834,"Bitrate":4600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":642093,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2568375,"fps":0,"quality":27},{"name":"1834p0","width":1080,"height":1834,"bitrate":4600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1834,"Bitrate":4600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":642093,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2568375,"fps":0,"quality":27},{"name":"1834p0","width":1080,"height":1834,"bitrate":5520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1908_14500000.json b/video/fixtures/profiles_tests/1080_1908_14500000.json index 8c858134c..fa7a659a1 100644 --- a/video/fixtures/profiles_tests/1080_1908_14500000.json +++ b/video/fixtures/profiles_tests/1080_1908_14500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1908,"Bitrate":14500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1908p0","width":1080,"height":1908,"bitrate":14500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1908,"Bitrate":14500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1908p0","width":1080,"height":1908,"bitrate":17400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_10000000.json b/video/fixtures/profiles_tests/1080_1920_10000000.json index 2405d0a4f..8ca5f59e0 100644 --- a/video/fixtures/profiles_tests/1080_1920_10000000.json +++ b/video/fixtures/profiles_tests/1080_1920_10000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":10000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_10200000.json b/video/fixtures/profiles_tests/1080_1920_10200000.json index d455327e6..d281090be 100644 --- a/video/fixtures/profiles_tests/1080_1920_10200000.json +++ b/video/fixtures/profiles_tests/1080_1920_10200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":10200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":10200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":10200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_10300000.json b/video/fixtures/profiles_tests/1080_1920_10300000.json index c1ee3e891..d6354c259 100644 --- a/video/fixtures/profiles_tests/1080_1920_10300000.json +++ b/video/fixtures/profiles_tests/1080_1920_10300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_11400000.json b/video/fixtures/profiles_tests/1080_1920_11400000.json index 49b558bde..3328a625a 100644 --- a/video/fixtures/profiles_tests/1080_1920_11400000.json +++ b/video/fixtures/profiles_tests/1080_1920_11400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":11400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":11400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":11400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":13680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_11800000.json b/video/fixtures/profiles_tests/1080_1920_11800000.json index b94a00886..40986cee1 100644 --- a/video/fixtures/profiles_tests/1080_1920_11800000.json +++ b/video/fixtures/profiles_tests/1080_1920_11800000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":11800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":11800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":11800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":14160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_12100000.json b/video/fixtures/profiles_tests/1080_1920_12100000.json index ef746f87c..23802a84c 100644 --- a/video/fixtures/profiles_tests/1080_1920_12100000.json +++ b/video/fixtures/profiles_tests/1080_1920_12100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":12100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":12100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":14520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_12200000.json b/video/fixtures/profiles_tests/1080_1920_12200000.json index 3eafbcdc8..544f43408 100644 --- a/video/fixtures/profiles_tests/1080_1920_12200000.json +++ b/video/fixtures/profiles_tests/1080_1920_12200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":12200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":12200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":14640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_12300000.json b/video/fixtures/profiles_tests/1080_1920_12300000.json index 76f724ffe..adaf552a6 100644 --- a/video/fixtures/profiles_tests/1080_1920_12300000.json +++ b/video/fixtures/profiles_tests/1080_1920_12300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":12300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":12300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":14760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_12400000.json b/video/fixtures/profiles_tests/1080_1920_12400000.json index 194317ad5..818b19391 100644 --- a/video/fixtures/profiles_tests/1080_1920_12400000.json +++ b/video/fixtures/profiles_tests/1080_1920_12400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":12400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":12400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":14880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_12500000.json b/video/fixtures/profiles_tests/1080_1920_12500000.json index b5389a3d1..c2dbd93fd 100644 --- a/video/fixtures/profiles_tests/1080_1920_12500000.json +++ b/video/fixtures/profiles_tests/1080_1920_12500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":12500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":12500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":12500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":15000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_1400000.json b/video/fixtures/profiles_tests/1080_1920_1400000.json index 414e89300..1b2a855b9 100644 --- a/video/fixtures/profiles_tests/1080_1920_1400000.json +++ b/video/fixtures/profiles_tests/1080_1920_1400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":186666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":186666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":1680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_14900000.json b/video/fixtures/profiles_tests/1080_1920_14900000.json index bd44230e9..d0f7157a7 100644 --- a/video/fixtures/profiles_tests/1080_1920_14900000.json +++ b/video/fixtures/profiles_tests/1080_1920_14900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":14900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":14900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":14900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":17880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_15100000.json b/video/fixtures/profiles_tests/1080_1920_15100000.json index bc82e4ca7..3f1652506 100644 --- a/video/fixtures/profiles_tests/1080_1920_15100000.json +++ b/video/fixtures/profiles_tests/1080_1920_15100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":15100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":15100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":15100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":18120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_15200000.json b/video/fixtures/profiles_tests/1080_1920_15200000.json index 766bba091..39771379e 100644 --- a/video/fixtures/profiles_tests/1080_1920_15200000.json +++ b/video/fixtures/profiles_tests/1080_1920_15200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":15200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":15200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":15200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":18240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_15300000.json b/video/fixtures/profiles_tests/1080_1920_15300000.json index 521908eb4..cdc4465c1 100644 --- a/video/fixtures/profiles_tests/1080_1920_15300000.json +++ b/video/fixtures/profiles_tests/1080_1920_15300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":15300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":15300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":15300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":18360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_15900000.json b/video/fixtures/profiles_tests/1080_1920_15900000.json index 92757e8cd..df3dd3ed1 100644 --- a/video/fixtures/profiles_tests/1080_1920_15900000.json +++ b/video/fixtures/profiles_tests/1080_1920_15900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":15900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":15900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":15900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":19080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_1600000.json b/video/fixtures/profiles_tests/1080_1920_1600000.json index 80eed9651..e08d76741 100644 --- a/video/fixtures/profiles_tests/1080_1920_1600000.json +++ b/video/fixtures/profiles_tests/1080_1920_1600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":213333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":213333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":1920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_16900000.json b/video/fixtures/profiles_tests/1080_1920_16900000.json index 6039eefb0..f88a73cae 100644 --- a/video/fixtures/profiles_tests/1080_1920_16900000.json +++ b/video/fixtures/profiles_tests/1080_1920_16900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":16900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":16900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":16900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":20280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_1700000.json b/video/fixtures/profiles_tests/1080_1920_1700000.json index b4a64987b..3f0e043d8 100644 --- a/video/fixtures/profiles_tests/1080_1920_1700000.json +++ b/video/fixtures/profiles_tests/1080_1920_1700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":226666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":226666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_17000000.json b/video/fixtures/profiles_tests/1080_1920_17000000.json index 859b8cb0b..87a567c0a 100644 --- a/video/fixtures/profiles_tests/1080_1920_17000000.json +++ b/video/fixtures/profiles_tests/1080_1920_17000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":17000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":17000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":17000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":20400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_1900000.json b/video/fixtures/profiles_tests/1080_1920_1900000.json index 64021e5ad..3bd8af3eb 100644 --- a/video/fixtures/profiles_tests/1080_1920_1900000.json +++ b/video/fixtures/profiles_tests/1080_1920_1900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":253333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":253333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2000000.json b/video/fixtures/profiles_tests/1080_1920_2000000.json index 23abb55b8..0123fa210 100644 --- a/video/fixtures/profiles_tests/1080_1920_2000000.json +++ b/video/fixtures/profiles_tests/1080_1920_2000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":266666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":266666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2100000.json b/video/fixtures/profiles_tests/1080_1920_2100000.json index 38284fca2..77988a028 100644 --- a/video/fixtures/profiles_tests/1080_1920_2100000.json +++ b/video/fixtures/profiles_tests/1080_1920_2100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":280000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":280000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2200000.json b/video/fixtures/profiles_tests/1080_1920_2200000.json index e6a2aaa0e..46b8aea89 100644 --- a/video/fixtures/profiles_tests/1080_1920_2200000.json +++ b/video/fixtures/profiles_tests/1080_1920_2200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":293333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":293333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2300000.json b/video/fixtures/profiles_tests/1080_1920_2300000.json index 9381b998d..d809b1cc9 100644 --- a/video/fixtures/profiles_tests/1080_1920_2300000.json +++ b/video/fixtures/profiles_tests/1080_1920_2300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":306666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":306666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2500000.json b/video/fixtures/profiles_tests/1080_1920_2500000.json index 2fef6d160..77f0cc1c5 100644 --- a/video/fixtures/profiles_tests/1080_1920_2500000.json +++ b/video/fixtures/profiles_tests/1080_1920_2500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":333333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":333333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2600000.json b/video/fixtures/profiles_tests/1080_1920_2600000.json index f967a44e4..860be4db7 100644 --- a/video/fixtures/profiles_tests/1080_1920_2600000.json +++ b/video/fixtures/profiles_tests/1080_1920_2600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":346666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":346666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2700000.json b/video/fixtures/profiles_tests/1080_1920_2700000.json index aefb037d6..304d9f823 100644 --- a/video/fixtures/profiles_tests/1080_1920_2700000.json +++ b/video/fixtures/profiles_tests/1080_1920_2700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2800000.json b/video/fixtures/profiles_tests/1080_1920_2800000.json index b79777705..d8c18669c 100644 --- a/video/fixtures/profiles_tests/1080_1920_2800000.json +++ b/video/fixtures/profiles_tests/1080_1920_2800000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":373333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":373333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_2900000.json b/video/fixtures/profiles_tests/1080_1920_2900000.json index 143fb8c2e..2bc03b826 100644 --- a/video/fixtures/profiles_tests/1080_1920_2900000.json +++ b/video/fixtures/profiles_tests/1080_1920_2900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":386666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":2900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":386666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3000000.json b/video/fixtures/profiles_tests/1080_1920_3000000.json index 5efc8bc64..d1730cc96 100644 --- a/video/fixtures/profiles_tests/1080_1920_3000000.json +++ b/video/fixtures/profiles_tests/1080_1920_3000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":400000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":400000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3100000.json b/video/fixtures/profiles_tests/1080_1920_3100000.json index 9c2708237..7f0555bc7 100644 --- a/video/fixtures/profiles_tests/1080_1920_3100000.json +++ b/video/fixtures/profiles_tests/1080_1920_3100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":413333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":413333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3200000.json b/video/fixtures/profiles_tests/1080_1920_3200000.json index 4413a8d89..5442592a0 100644 --- a/video/fixtures/profiles_tests/1080_1920_3200000.json +++ b/video/fixtures/profiles_tests/1080_1920_3200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":426666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":426666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3400000.json b/video/fixtures/profiles_tests/1080_1920_3400000.json index da5b143d4..36a962352 100644 --- a/video/fixtures/profiles_tests/1080_1920_3400000.json +++ b/video/fixtures/profiles_tests/1080_1920_3400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":453333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":453333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3600000.json b/video/fixtures/profiles_tests/1080_1920_3600000.json index f560d51b9..39d462636 100644 --- a/video/fixtures/profiles_tests/1080_1920_3600000.json +++ b/video/fixtures/profiles_tests/1080_1920_3600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3700000.json b/video/fixtures/profiles_tests/1080_1920_3700000.json index 99a2da15b..b3cae376a 100644 --- a/video/fixtures/profiles_tests/1080_1920_3700000.json +++ b/video/fixtures/profiles_tests/1080_1920_3700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":493333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":493333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_3900000.json b/video/fixtures/profiles_tests/1080_1920_3900000.json index 6200ead0b..1ab511638 100644 --- a/video/fixtures/profiles_tests/1080_1920_3900000.json +++ b/video/fixtures/profiles_tests/1080_1920_3900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":3900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":520000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":3900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":3900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":520000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_4000000.json b/video/fixtures/profiles_tests/1080_1920_4000000.json index 6df3bfa2c..0572a0fa5 100644 --- a/video/fixtures/profiles_tests/1080_1920_4000000.json +++ b/video/fixtures/profiles_tests/1080_1920_4000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":4000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":533333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":4000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":533333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_4100000.json b/video/fixtures/profiles_tests/1080_1920_4100000.json index 9b08f3a13..54d70c670 100644 --- a/video/fixtures/profiles_tests/1080_1920_4100000.json +++ b/video/fixtures/profiles_tests/1080_1920_4100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":4100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":546666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2186666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":4100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":546666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2186666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_4200000.json b/video/fixtures/profiles_tests/1080_1920_4200000.json index ffdd2950c..a14ff5bd4 100644 --- a/video/fixtures/profiles_tests/1080_1920_4200000.json +++ b/video/fixtures/profiles_tests/1080_1920_4200000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":560000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2240000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":560000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2240000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":5040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_43700000.json b/video/fixtures/profiles_tests/1080_1920_43700000.json index 0d3880910..d49a00cc4 100644 --- a/video/fixtures/profiles_tests/1080_1920_43700000.json +++ b/video/fixtures/profiles_tests/1080_1920_43700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":43700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":43700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":43700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":52440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_4600000.json b/video/fixtures/profiles_tests/1080_1920_4600000.json index b6db53df9..a24336bd2 100644 --- a/video/fixtures/profiles_tests/1080_1920_4600000.json +++ b/video/fixtures/profiles_tests/1080_1920_4600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":4600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":613333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2453333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":4600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":613333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2453333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":5520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_4700000.json b/video/fixtures/profiles_tests/1080_1920_4700000.json index 010b07d2c..2a6254613 100644 --- a/video/fixtures/profiles_tests/1080_1920_4700000.json +++ b/video/fixtures/profiles_tests/1080_1920_4700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":4700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":626666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2506666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":4700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":626666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2506666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":5640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_4900000.json b/video/fixtures/profiles_tests/1080_1920_4900000.json index e541cda4b..19a7a0cfb 100644 --- a/video/fixtures/profiles_tests/1080_1920_4900000.json +++ b/video/fixtures/profiles_tests/1080_1920_4900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":4900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":653333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2613333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":4900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":4900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":653333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2613333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":5880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_5000000.json b/video/fixtures/profiles_tests/1080_1920_5000000.json index 16f9bd878..f83436a80 100644 --- a/video/fixtures/profiles_tests/1080_1920_5000000.json +++ b/video/fixtures/profiles_tests/1080_1920_5000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":5000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":666666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2666666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":5000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":5000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":666666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2666666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":6000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_5300000.json b/video/fixtures/profiles_tests/1080_1920_5300000.json index f5cd4e1e7..cfc513f6e 100644 --- a/video/fixtures/profiles_tests/1080_1920_5300000.json +++ b/video/fixtures/profiles_tests/1080_1920_5300000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":706666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2826666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":5300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":706666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2826666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":6360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_600000.json b/video/fixtures/profiles_tests/1080_1920_600000.json index 62e53d327..b34446862 100644 --- a/video/fixtures/profiles_tests/1080_1920_600000.json +++ b/video/fixtures/profiles_tests/1080_1920_600000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":300000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":300000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_6000000.json b/video/fixtures/profiles_tests/1080_1920_6000000.json index a9e81f6ec..dd823c7b9 100644 --- a/video/fixtures/profiles_tests/1080_1920_6000000.json +++ b/video/fixtures/profiles_tests/1080_1920_6000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":6000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":800000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3200000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":6000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":6000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":800000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3200000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":7200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_6100000.json b/video/fixtures/profiles_tests/1080_1920_6100000.json index 8886ca808..eb0fa9224 100644 --- a/video/fixtures/profiles_tests/1080_1920_6100000.json +++ b/video/fixtures/profiles_tests/1080_1920_6100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":6100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":813333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3253333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":6100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":6100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":813333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3253333,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":7320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_6500000.json b/video/fixtures/profiles_tests/1080_1920_6500000.json index ee151c943..72bfbfbfa 100644 --- a/video/fixtures/profiles_tests/1080_1920_6500000.json +++ b/video/fixtures/profiles_tests/1080_1920_6500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":6500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":866666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3466666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":6500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":6500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":866666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3466666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":7800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_6800000.json b/video/fixtures/profiles_tests/1080_1920_6800000.json index 6f2ac36c7..1ae861672 100644 --- a/video/fixtures/profiles_tests/1080_1920_6800000.json +++ b/video/fixtures/profiles_tests/1080_1920_6800000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":6800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":906666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3626666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":6800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":6800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":906666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3626666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":8160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_700000.json b/video/fixtures/profiles_tests/1080_1920_700000.json index 855aa28a0..c26eaf202 100644 --- a/video/fixtures/profiles_tests/1080_1920_700000.json +++ b/video/fixtures/profiles_tests/1080_1920_700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":350000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":350000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_7100000.json b/video/fixtures/profiles_tests/1080_1920_7100000.json index ae9e2a8c6..e868c1bd2 100644 --- a/video/fixtures/profiles_tests/1080_1920_7100000.json +++ b/video/fixtures/profiles_tests/1080_1920_7100000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":7100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":946666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3786666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":7100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":7100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":946666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3786666,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":8520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_7700000.json b/video/fixtures/profiles_tests/1080_1920_7700000.json index 460c46eca..c5e5f7db6 100644 --- a/video/fixtures/profiles_tests/1080_1920_7700000.json +++ b/video/fixtures/profiles_tests/1080_1920_7700000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":7700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":9240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_800000.json b/video/fixtures/profiles_tests/1080_1920_800000.json index 3ad43c0b7..7d0e69d25 100644 --- a/video/fixtures/profiles_tests/1080_1920_800000.json +++ b/video/fixtures/profiles_tests/1080_1920_800000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":400000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":400000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_8000000.json b/video/fixtures/profiles_tests/1080_1920_8000000.json index b36d5fa50..d708c2229 100644 --- a/video/fixtures/profiles_tests/1080_1920_8000000.json +++ b/video/fixtures/profiles_tests/1080_1920_8000000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":8000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":9600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_8400000.json b/video/fixtures/profiles_tests/1080_1920_8400000.json index 36f959859..47b280a1d 100644 --- a/video/fixtures/profiles_tests/1080_1920_8400000.json +++ b/video/fixtures/profiles_tests/1080_1920_8400000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":8400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":10080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_8500000.json b/video/fixtures/profiles_tests/1080_1920_8500000.json index 4ee4cdbc3..9eb48729b 100644 --- a/video/fixtures/profiles_tests/1080_1920_8500000.json +++ b/video/fixtures/profiles_tests/1080_1920_8500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":8500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":8500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":8500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":10200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_900000.json b/video/fixtures/profiles_tests/1080_1920_900000.json index 546429c3a..c3d2d34b9 100644 --- a/video/fixtures/profiles_tests/1080_1920_900000.json +++ b/video/fixtures/profiles_tests/1080_1920_900000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":450000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1080,"height":1920,"bitrate":450000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":1080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_1920_9500000.json b/video/fixtures/profiles_tests/1080_1920_9500000.json index 75cc776b1..34009423d 100644 --- a/video/fixtures/profiles_tests/1080_1920_9500000.json +++ b/video/fixtures/profiles_tests/1080_1920_9500000.json @@ -1 +1 @@ -{"Width":1080,"Height":1920,"Bitrate":9500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":9500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":1920,"Bitrate":9500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1080,"height":1920,"bitrate":11400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_2400_3800000.json b/video/fixtures/profiles_tests/1080_2400_3800000.json index f54cf7e14..95ee1a5a7 100644 --- a/video/fixtures/profiles_tests/1080_2400_3800000.json +++ b/video/fixtures/profiles_tests/1080_2400_3800000.json @@ -1 +1 @@ -{"Width":1080,"Height":2400,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":405333,"fps":0,"quality":27},{"name":"2400p0","width":1080,"height":2400,"bitrate":3800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":2400,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":405333,"fps":0,"quality":27},{"name":"2400p0","width":1080,"height":2400,"bitrate":4560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_442_4900000.json b/video/fixtures/profiles_tests/1080_442_4900000.json index 39facc01d..88551d2bb 100644 --- a/video/fixtures/profiles_tests/1080_442_4900000.json +++ b/video/fixtures/profiles_tests/1080_442_4900000.json @@ -1 +1 @@ -{"Width":1080,"Height":442,"Bitrate":4900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"442p0","width":1080,"height":442,"bitrate":4900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":442,"Bitrate":4900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"442p0","width":1080,"height":442,"bitrate":5880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_642_1200000.json b/video/fixtures/profiles_tests/1080_642_1200000.json index a38099fb2..b86d90295 100644 --- a/video/fixtures/profiles_tests/1080_642_1200000.json +++ b/video/fixtures/profiles_tests/1080_642_1200000.json @@ -1 +1 @@ -{"Width":1080,"Height":642,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":478504,"fps":0,"quality":27},{"name":"642p0","width":1080,"height":642,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":642,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":478504,"fps":0,"quality":27},{"name":"642p0","width":1080,"height":642,"bitrate":1440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1080_720_1100000.json b/video/fixtures/profiles_tests/1080_720_1100000.json index 6c63b4e42..3964638e9 100644 --- a/video/fixtures/profiles_tests/1080_720_1100000.json +++ b/video/fixtures/profiles_tests/1080_720_1100000.json @@ -1 +1 @@ -{"Width":1080,"Height":720,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":391111,"fps":0,"quality":27},{"name":"720p0","width":1080,"height":720,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1080,"Height":720,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":391111,"fps":0,"quality":27},{"name":"720p0","width":1080,"height":720,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1094_622_100000.json b/video/fixtures/profiles_tests/1094_622_100000.json index ec30ec2b6..7cc467cad 100644 --- a/video/fixtures/profiles_tests/1094_622_100000.json +++ b/video/fixtures/profiles_tests/1094_622_100000.json @@ -1 +1 @@ -{"Width":1094,"Height":622,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":1094,"height":622,"bitrate":50000,"fps":0,"quality":27},{"name":"622p0","width":1094,"height":622,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1094,"Height":622,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":1094,"height":622,"bitrate":50000,"fps":0,"quality":27},{"name":"622p0","width":1094,"height":622,"bitrate":120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1100_1100_18400000.json b/video/fixtures/profiles_tests/1100_1100_18400000.json index fc266db08..4e5c63a39 100644 --- a/video/fixtures/profiles_tests/1100_1100_18400000.json +++ b/video/fixtures/profiles_tests/1100_1100_18400000.json @@ -1 +1 @@ -{"Width":1100,"Height":1100,"Bitrate":18400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1100p0","width":1100,"height":1100,"bitrate":18400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1100,"Height":1100,"Bitrate":18400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1100p0","width":1100,"height":1100,"bitrate":22080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_13800000.json b/video/fixtures/profiles_tests/1200_1200_13800000.json index 56a6a049a..0f3e70f88 100644 --- a/video/fixtures/profiles_tests/1200_1200_13800000.json +++ b/video/fixtures/profiles_tests/1200_1200_13800000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":13800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":13800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":13800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":16560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_1600000.json b/video/fixtures/profiles_tests/1200_1200_1600000.json index 92a9558d1..67123535f 100644 --- a/video/fixtures/profiles_tests/1200_1200_1600000.json +++ b/video/fixtures/profiles_tests/1200_1200_1600000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":307200,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":307200,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":1920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_2400000.json b/video/fixtures/profiles_tests/1200_1200_2400000.json index e2cf050cf..9c7ec5a09 100644 --- a/video/fixtures/profiles_tests/1200_1200_2400000.json +++ b/video/fixtures/profiles_tests/1200_1200_2400000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":460800,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":460800,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":2880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_2600000.json b/video/fixtures/profiles_tests/1200_1200_2600000.json index 661fd25e1..857846fbc 100644 --- a/video/fixtures/profiles_tests/1200_1200_2600000.json +++ b/video/fixtures/profiles_tests/1200_1200_2600000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":499200,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":499200,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":3120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_300000.json b/video/fixtures/profiles_tests/1200_1200_300000.json index 1baf8ae1f..0ce38acbe 100644 --- a/video/fixtures/profiles_tests/1200_1200_300000.json +++ b/video/fixtures/profiles_tests/1200_1200_300000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":1200,"height":1200,"bitrate":150000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":1200,"height":1200,"bitrate":150000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_3000000.json b/video/fixtures/profiles_tests/1200_1200_3000000.json index d9f192ddc..31977e173 100644 --- a/video/fixtures/profiles_tests/1200_1200_3000000.json +++ b/video/fixtures/profiles_tests/1200_1200_3000000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":576000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":576000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_4100000.json b/video/fixtures/profiles_tests/1200_1200_4100000.json index fc60792e4..ab7ce5284 100644 --- a/video/fixtures/profiles_tests/1200_1200_4100000.json +++ b/video/fixtures/profiles_tests/1200_1200_4100000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":4100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":787200,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3148800,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":4100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":4100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":787200,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3148800,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":4920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_4700000.json b/video/fixtures/profiles_tests/1200_1200_4700000.json index f0a6642b4..96efe55a1 100644 --- a/video/fixtures/profiles_tests/1200_1200_4700000.json +++ b/video/fixtures/profiles_tests/1200_1200_4700000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":4700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":902400,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3609600,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":4700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":4700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":902400,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3609600,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":5640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_5000000.json b/video/fixtures/profiles_tests/1200_1200_5000000.json index 1c7ccd11c..6a7e40bd1 100644 --- a/video/fixtures/profiles_tests/1200_1200_5000000.json +++ b/video/fixtures/profiles_tests/1200_1200_5000000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":5000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":960000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3840000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":5000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":5000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":960000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3840000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":6000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_6200000.json b/video/fixtures/profiles_tests/1200_1200_6200000.json index 4a7f7b450..7323eb4b5 100644 --- a/video/fixtures/profiles_tests/1200_1200_6200000.json +++ b/video/fixtures/profiles_tests/1200_1200_6200000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":6200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":6200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":6200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":7440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_6900000.json b/video/fixtures/profiles_tests/1200_1200_6900000.json index fd289d1e3..dfd398e6a 100644 --- a/video/fixtures/profiles_tests/1200_1200_6900000.json +++ b/video/fixtures/profiles_tests/1200_1200_6900000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":6900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":6900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":6900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":8280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_8000000.json b/video/fixtures/profiles_tests/1200_1200_8000000.json index 90662c412..bddab1cf4 100644 --- a/video/fixtures/profiles_tests/1200_1200_8000000.json +++ b/video/fixtures/profiles_tests/1200_1200_8000000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":8000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":9600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1200_9100000.json b/video/fixtures/profiles_tests/1200_1200_9100000.json index 1a83bdcb5..7f9054ebd 100644 --- a/video/fixtures/profiles_tests/1200_1200_9100000.json +++ b/video/fixtures/profiles_tests/1200_1200_9100000.json @@ -1 +1 @@ -{"Width":1200,"Height":1200,"Bitrate":9100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":9100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1200,"Bitrate":9100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":1200,"height":1200,"bitrate":10920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1680_20800000.json b/video/fixtures/profiles_tests/1200_1680_20800000.json index c284d8c2e..ce4d0a9d1 100644 --- a/video/fixtures/profiles_tests/1200_1680_20800000.json +++ b/video/fixtures/profiles_tests/1200_1680_20800000.json @@ -1 +1 @@ -{"Width":1200,"Height":1680,"Bitrate":20800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1680p0","width":1200,"height":1680,"bitrate":20800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1680,"Bitrate":20800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1680p0","width":1200,"height":1680,"bitrate":24960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_1680_21200000.json b/video/fixtures/profiles_tests/1200_1680_21200000.json index 40b33008a..b02c30cb8 100644 --- a/video/fixtures/profiles_tests/1200_1680_21200000.json +++ b/video/fixtures/profiles_tests/1200_1680_21200000.json @@ -1 +1 @@ -{"Width":1200,"Height":1680,"Bitrate":21200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1680p0","width":1200,"height":1680,"bitrate":21200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":1680,"Bitrate":21200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1680p0","width":1200,"height":1680,"bitrate":25440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1200_674_1300000.json b/video/fixtures/profiles_tests/1200_674_1300000.json index 322eb9c61..2d60a515e 100644 --- a/video/fixtures/profiles_tests/1200_674_1300000.json +++ b/video/fixtures/profiles_tests/1200_674_1300000.json @@ -1 +1 @@ -{"Width":1200,"Height":674,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":444391,"fps":0,"quality":27},{"name":"674p0","width":1200,"height":674,"bitrate":1300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1200,"Height":674,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":444391,"fps":0,"quality":27},{"name":"674p0","width":1200,"height":674,"bitrate":1560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1260_1280_4700000.json b/video/fixtures/profiles_tests/1260_1280_4700000.json index c44c429ea..488d4f74a 100644 --- a/video/fixtures/profiles_tests/1260_1280_4700000.json +++ b/video/fixtures/profiles_tests/1260_1280_4700000.json @@ -1 +1 @@ -{"Width":1260,"Height":1280,"Bitrate":4700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":805714,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3222857,"fps":0,"quality":27},{"name":"1280p0","width":1260,"height":1280,"bitrate":4700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1260,"Height":1280,"Bitrate":4700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":805714,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3222857,"fps":0,"quality":27},{"name":"1280p0","width":1260,"height":1280,"bitrate":5640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1278_660_8400000.json b/video/fixtures/profiles_tests/1278_660_8400000.json index 2ac655027..1d023e679 100644 --- a/video/fixtures/profiles_tests/1278_660_8400000.json +++ b/video/fixtures/profiles_tests/1278_660_8400000.json @@ -1 +1 @@ -{"Width":1278,"Height":660,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"660p0","width":1278,"height":660,"bitrate":8400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1278,"Height":660,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"660p0","width":1278,"height":660,"bitrate":10080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_1000000.json b/video/fixtures/profiles_tests/1280_1280_1000000.json index 27ae6c4fe..b12c46f38 100644 --- a/video/fixtures/profiles_tests/1280_1280_1000000.json +++ b/video/fixtures/profiles_tests/1280_1280_1000000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":500000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":500000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_1100000.json b/video/fixtures/profiles_tests/1280_1280_1100000.json index 31220e03b..373b93f39 100644 --- a/video/fixtures/profiles_tests/1280_1280_1100000.json +++ b/video/fixtures/profiles_tests/1280_1280_1100000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":185625,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":185625,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_20500000.json b/video/fixtures/profiles_tests/1280_1280_20500000.json index 4fd60723f..9353f4eca 100644 --- a/video/fixtures/profiles_tests/1280_1280_20500000.json +++ b/video/fixtures/profiles_tests/1280_1280_20500000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":20500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":20500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":20500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":24600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_3800000.json b/video/fixtures/profiles_tests/1280_1280_3800000.json index 6ed8ee952..7c669f4b9 100644 --- a/video/fixtures/profiles_tests/1280_1280_3800000.json +++ b/video/fixtures/profiles_tests/1280_1280_3800000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":641250,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":3800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":641250,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":4560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_5000000.json b/video/fixtures/profiles_tests/1280_1280_5000000.json index f0652ce31..a416648b7 100644 --- a/video/fixtures/profiles_tests/1280_1280_5000000.json +++ b/video/fixtures/profiles_tests/1280_1280_5000000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":5000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":843750,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3375000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":5000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":5000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":843750,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3375000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":6000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_800000.json b/video/fixtures/profiles_tests/1280_1280_800000.json index 4f09bbde7..c369da36e 100644 --- a/video/fixtures/profiles_tests/1280_1280_800000.json +++ b/video/fixtures/profiles_tests/1280_1280_800000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":400000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":400000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_1280_900000.json b/video/fixtures/profiles_tests/1280_1280_900000.json index 431d6e721..1d524dfb2 100644 --- a/video/fixtures/profiles_tests/1280_1280_900000.json +++ b/video/fixtures/profiles_tests/1280_1280_900000.json @@ -1 +1 @@ -{"Width":1280,"Height":1280,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":450000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":1280,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":1280,"bitrate":450000,"fps":0,"quality":27},{"name":"1280p0","width":1280,"height":1280,"bitrate":1080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_532_1900000.json b/video/fixtures/profiles_tests/1280_532_1900000.json index e8de974a2..6e9ff868b 100644 --- a/video/fixtures/profiles_tests/1280_532_1900000.json +++ b/video/fixtures/profiles_tests/1280_532_1900000.json @@ -1 +1 @@ -{"Width":1280,"Height":532,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":771428,"fps":0,"quality":27},{"name":"532p0","width":1280,"height":532,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":532,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":771428,"fps":0,"quality":27},{"name":"532p0","width":1280,"height":532,"bitrate":2280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_1000000.json b/video/fixtures/profiles_tests/1280_720_1000000.json index a665f8e3c..1bb5a04ea 100644 --- a/video/fixtures/profiles_tests/1280_720_1000000.json +++ b/video/fixtures/profiles_tests/1280_720_1000000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":500000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":500000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_10000000.json b/video/fixtures/profiles_tests/1280_720_10000000.json index d64b08d43..dd97675de 100644 --- a/video/fixtures/profiles_tests/1280_720_10000000.json +++ b/video/fixtures/profiles_tests/1280_720_10000000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":10000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":12000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_1100000.json b/video/fixtures/profiles_tests/1280_720_1100000.json index 7f243e200..0b4acc842 100644 --- a/video/fixtures/profiles_tests/1280_720_1100000.json +++ b/video/fixtures/profiles_tests/1280_720_1100000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":330000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":330000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_11300000.json b/video/fixtures/profiles_tests/1280_720_11300000.json index b666eced6..edea7e3ba 100644 --- a/video/fixtures/profiles_tests/1280_720_11300000.json +++ b/video/fixtures/profiles_tests/1280_720_11300000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":11300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":11300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":11300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":13560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_11900000.json b/video/fixtures/profiles_tests/1280_720_11900000.json index 1f454315b..02ecc1588 100644 --- a/video/fixtures/profiles_tests/1280_720_11900000.json +++ b/video/fixtures/profiles_tests/1280_720_11900000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":11900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":11900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":11900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":14280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_1200000.json b/video/fixtures/profiles_tests/1280_720_1200000.json index 2ba507b01..f46a2c90d 100644 --- a/video/fixtures/profiles_tests/1280_720_1200000.json +++ b/video/fixtures/profiles_tests/1280_720_1200000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_12000000.json b/video/fixtures/profiles_tests/1280_720_12000000.json index 226db1f64..cf989804d 100644 --- a/video/fixtures/profiles_tests/1280_720_12000000.json +++ b/video/fixtures/profiles_tests/1280_720_12000000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":12000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":12000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":12000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":14400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_1400000.json b/video/fixtures/profiles_tests/1280_720_1400000.json index d62c4dc76..3c6157aa0 100644 --- a/video/fixtures/profiles_tests/1280_720_1400000.json +++ b/video/fixtures/profiles_tests/1280_720_1400000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":420000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":420000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_1500000.json b/video/fixtures/profiles_tests/1280_720_1500000.json index 156721597..fd4874348 100644 --- a/video/fixtures/profiles_tests/1280_720_1500000.json +++ b/video/fixtures/profiles_tests/1280_720_1500000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":450000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":450000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_1600000.json b/video/fixtures/profiles_tests/1280_720_1600000.json index 60537f390..be244b194 100644 --- a/video/fixtures/profiles_tests/1280_720_1600000.json +++ b/video/fixtures/profiles_tests/1280_720_1600000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_16400000.json b/video/fixtures/profiles_tests/1280_720_16400000.json index 445bbed24..475fcd9fa 100644 --- a/video/fixtures/profiles_tests/1280_720_16400000.json +++ b/video/fixtures/profiles_tests/1280_720_16400000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":16400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":16400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":16400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":19680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2000000.json b/video/fixtures/profiles_tests/1280_720_2000000.json index 551e09d98..bc28579ca 100644 --- a/video/fixtures/profiles_tests/1280_720_2000000.json +++ b/video/fixtures/profiles_tests/1280_720_2000000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2100000.json b/video/fixtures/profiles_tests/1280_720_2100000.json index ed175a7a1..397cabbe3 100644 --- a/video/fixtures/profiles_tests/1280_720_2100000.json +++ b/video/fixtures/profiles_tests/1280_720_2100000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":630000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":630000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2200000.json b/video/fixtures/profiles_tests/1280_720_2200000.json index 2cc991133..a1b91e5fd 100644 --- a/video/fixtures/profiles_tests/1280_720_2200000.json +++ b/video/fixtures/profiles_tests/1280_720_2200000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":660000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":660000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2300000.json b/video/fixtures/profiles_tests/1280_720_2300000.json index 1d48eece9..a15326009 100644 --- a/video/fixtures/profiles_tests/1280_720_2300000.json +++ b/video/fixtures/profiles_tests/1280_720_2300000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":690000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":690000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2400000.json b/video/fixtures/profiles_tests/1280_720_2400000.json index 2f2a415eb..eeafef224 100644 --- a/video/fixtures/profiles_tests/1280_720_2400000.json +++ b/video/fixtures/profiles_tests/1280_720_2400000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":720000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":720000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2500000.json b/video/fixtures/profiles_tests/1280_720_2500000.json index 2aa4a0837..0cc2e1312 100644 --- a/video/fixtures/profiles_tests/1280_720_2500000.json +++ b/video/fixtures/profiles_tests/1280_720_2500000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":750000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":750000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2600000.json b/video/fixtures/profiles_tests/1280_720_2600000.json index 2c84ecc6d..10c47cb89 100644 --- a/video/fixtures/profiles_tests/1280_720_2600000.json +++ b/video/fixtures/profiles_tests/1280_720_2600000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":780000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":780000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_2700000.json b/video/fixtures/profiles_tests/1280_720_2700000.json index 57aee0e16..81122f0d4 100644 --- a/video/fixtures/profiles_tests/1280_720_2700000.json +++ b/video/fixtures/profiles_tests/1280_720_2700000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":810000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":810000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_300000.json b/video/fixtures/profiles_tests/1280_720_300000.json index ef8b464ac..72f8b0810 100644 --- a/video/fixtures/profiles_tests/1280_720_300000.json +++ b/video/fixtures/profiles_tests/1280_720_300000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":150000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":150000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_3000000.json b/video/fixtures/profiles_tests/1280_720_3000000.json index 184a862c6..0084c0cd0 100644 --- a/video/fixtures/profiles_tests/1280_720_3000000.json +++ b/video/fixtures/profiles_tests/1280_720_3000000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":900000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":900000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_400000.json b/video/fixtures/profiles_tests/1280_720_400000.json index 177b8f57e..7eeeea65a 100644 --- a/video/fixtures/profiles_tests/1280_720_400000.json +++ b/video/fixtures/profiles_tests/1280_720_400000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":200000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":200000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_500000.json b/video/fixtures/profiles_tests/1280_720_500000.json index dfbb2dc78..aa2ffdf64 100644 --- a/video/fixtures/profiles_tests/1280_720_500000.json +++ b/video/fixtures/profiles_tests/1280_720_500000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":250000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":250000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_5100000.json b/video/fixtures/profiles_tests/1280_720_5100000.json index 377a5f17c..78610582d 100644 --- a/video/fixtures/profiles_tests/1280_720_5100000.json +++ b/video/fixtures/profiles_tests/1280_720_5100000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":5100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":5100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":5100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":6120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_5300000.json b/video/fixtures/profiles_tests/1280_720_5300000.json index 40ec7ef1e..006be89f3 100644 --- a/video/fixtures/profiles_tests/1280_720_5300000.json +++ b/video/fixtures/profiles_tests/1280_720_5300000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":5300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":6360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_600000.json b/video/fixtures/profiles_tests/1280_720_600000.json index bb7871acd..3638141d9 100644 --- a/video/fixtures/profiles_tests/1280_720_600000.json +++ b/video/fixtures/profiles_tests/1280_720_600000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":300000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":300000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_6800000.json b/video/fixtures/profiles_tests/1280_720_6800000.json index d4adce4b0..227732429 100644 --- a/video/fixtures/profiles_tests/1280_720_6800000.json +++ b/video/fixtures/profiles_tests/1280_720_6800000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":6800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":6800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":6800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":8160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_700000.json b/video/fixtures/profiles_tests/1280_720_700000.json index 5b3c349ef..ba36c9baf 100644 --- a/video/fixtures/profiles_tests/1280_720_700000.json +++ b/video/fixtures/profiles_tests/1280_720_700000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":350000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":350000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_800000.json b/video/fixtures/profiles_tests/1280_720_800000.json index 816feda16..7c11d5bb2 100644 --- a/video/fixtures/profiles_tests/1280_720_800000.json +++ b/video/fixtures/profiles_tests/1280_720_800000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":400000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":400000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_8600000.json b/video/fixtures/profiles_tests/1280_720_8600000.json index aae8f5354..0f34a6c27 100644 --- a/video/fixtures/profiles_tests/1280_720_8600000.json +++ b/video/fixtures/profiles_tests/1280_720_8600000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":8600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":8600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":8600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":10320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_720_900000.json b/video/fixtures/profiles_tests/1280_720_900000.json index aafa1b288..1e8469221 100644 --- a/video/fixtures/profiles_tests/1280_720_900000.json +++ b/video/fixtures/profiles_tests/1280_720_900000.json @@ -1 +1 @@ -{"Width":1280,"Height":720,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":450000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":720,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":1280,"height":720,"bitrate":450000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_852_3000000.json b/video/fixtures/profiles_tests/1280_852_3000000.json index 7506bcb95..a75fce495 100644 --- a/video/fixtures/profiles_tests/1280_852_3000000.json +++ b/video/fixtures/profiles_tests/1280_852_3000000.json @@ -1 +1 @@ -{"Width":1280,"Height":852,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":760563,"fps":0,"quality":27},{"name":"852p0","width":1280,"height":852,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":852,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":760563,"fps":0,"quality":27},{"name":"852p0","width":1280,"height":852,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1280_960_5100000.json b/video/fixtures/profiles_tests/1280_960_5100000.json index c5347993a..8274d1527 100644 --- a/video/fixtures/profiles_tests/1280_960_5100000.json +++ b/video/fixtures/profiles_tests/1280_960_5100000.json @@ -1 +1 @@ -{"Width":1280,"Height":960,"Bitrate":5100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"960p0","width":1280,"height":960,"bitrate":5100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1280,"Height":960,"Bitrate":5100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"960p0","width":1280,"height":960,"bitrate":6120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1400_1400_100000.json b/video/fixtures/profiles_tests/1400_1400_100000.json index 370c6b810..75f0524da 100644 --- a/video/fixtures/profiles_tests/1400_1400_100000.json +++ b/video/fixtures/profiles_tests/1400_1400_100000.json @@ -1 +1 @@ -{"Width":1400,"Height":1400,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":1400,"height":1400,"bitrate":50000,"fps":0,"quality":27},{"name":"1400p0","width":1400,"height":1400,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1400,"Height":1400,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":1400,"height":1400,"bitrate":50000,"fps":0,"quality":27},{"name":"1400p0","width":1400,"height":1400,"bitrate":120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1400_400_1000000.json b/video/fixtures/profiles_tests/1400_400_1000000.json index f2d27f142..115c66b22 100644 --- a/video/fixtures/profiles_tests/1400_400_1000000.json +++ b/video/fixtures/profiles_tests/1400_400_1000000.json @@ -1 +1 @@ -{"Width":1400,"Height":400,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":1400,"height":400,"bitrate":500000,"fps":0,"quality":27},{"name":"400p0","width":1400,"height":400,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1400,"Height":400,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":1400,"height":400,"bitrate":500000,"fps":0,"quality":27},{"name":"400p0","width":1400,"height":400,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1400_400_2100000.json b/video/fixtures/profiles_tests/1400_400_2100000.json index 6e790c63b..1b3cdeb3c 100644 --- a/video/fixtures/profiles_tests/1400_400_2100000.json +++ b/video/fixtures/profiles_tests/1400_400_2100000.json @@ -1 +1 @@ -{"Width":1400,"Height":400,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"400p0","width":1400,"height":400,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1400,"Height":400,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"400p0","width":1400,"height":400,"bitrate":2520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1402_1920_15800000.json b/video/fixtures/profiles_tests/1402_1920_15800000.json index 90c601552..52025bb80 100644 --- a/video/fixtures/profiles_tests/1402_1920_15800000.json +++ b/video/fixtures/profiles_tests/1402_1920_15800000.json @@ -1 +1 @@ -{"Width":1402,"Height":1920,"Bitrate":15800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1402,"height":1920,"bitrate":15800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1402,"Height":1920,"Bitrate":15800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1402,"height":1920,"bitrate":18960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1440_1440_17000000.json b/video/fixtures/profiles_tests/1440_1440_17000000.json index 4ec5dc89b..b3a611f6a 100644 --- a/video/fixtures/profiles_tests/1440_1440_17000000.json +++ b/video/fixtures/profiles_tests/1440_1440_17000000.json @@ -1 +1 @@ -{"Width":1440,"Height":1440,"Bitrate":17000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1440,"height":1440,"bitrate":17000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1440,"Height":1440,"Bitrate":17000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1440,"height":1440,"bitrate":20400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1440_1440_3600000.json b/video/fixtures/profiles_tests/1440_1440_3600000.json index 0fc914f90..231a38815 100644 --- a/video/fixtures/profiles_tests/1440_1440_3600000.json +++ b/video/fixtures/profiles_tests/1440_1440_3600000.json @@ -1 +1 @@ -{"Width":1440,"Height":1440,"Bitrate":3600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27},{"name":"1440p0","width":1440,"height":1440,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1440,"Height":1440,"Bitrate":3600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27},{"name":"1440p0","width":1440,"height":1440,"bitrate":4320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1440_2174_12000000.json b/video/fixtures/profiles_tests/1440_2174_12000000.json index e17a6238b..ba76f7ce5 100644 --- a/video/fixtures/profiles_tests/1440_2174_12000000.json +++ b/video/fixtures/profiles_tests/1440_2174_12000000.json @@ -1 +1 @@ -{"Width":1440,"Height":2174,"Bitrate":12000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2174p0","width":1440,"height":2174,"bitrate":12000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1440,"Height":2174,"Bitrate":12000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2174p0","width":1440,"height":2174,"bitrate":14400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1490_1990_19400000.json b/video/fixtures/profiles_tests/1490_1990_19400000.json index ec194b2f9..83aa45745 100644 --- a/video/fixtures/profiles_tests/1490_1990_19400000.json +++ b/video/fixtures/profiles_tests/1490_1990_19400000.json @@ -1 +1 @@ -{"Width":1490,"Height":1990,"Bitrate":19400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1990p0","width":1490,"height":1990,"bitrate":19400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1490,"Height":1990,"Bitrate":19400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1990p0","width":1490,"height":1990,"bitrate":23280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1498_2100_45400000.json b/video/fixtures/profiles_tests/1498_2100_45400000.json index 3197ba7a6..4972cdfc4 100644 --- a/video/fixtures/profiles_tests/1498_2100_45400000.json +++ b/video/fixtures/profiles_tests/1498_2100_45400000.json @@ -1 +1 @@ -{"Width":1498,"Height":2100,"Bitrate":45400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2100p0","width":1498,"height":2100,"bitrate":45400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1498,"Height":2100,"Bitrate":45400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2100p0","width":1498,"height":2100,"bitrate":54480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1498_2100_46800000.json b/video/fixtures/profiles_tests/1498_2100_46800000.json index dffe321c2..74a9099e6 100644 --- a/video/fixtures/profiles_tests/1498_2100_46800000.json +++ b/video/fixtures/profiles_tests/1498_2100_46800000.json @@ -1 +1 @@ -{"Width":1498,"Height":2100,"Bitrate":46800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2100p0","width":1498,"height":2100,"bitrate":46800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1498,"Height":2100,"Bitrate":46800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2100p0","width":1498,"height":2100,"bitrate":56160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1000_13800000.json b/video/fixtures/profiles_tests/1500_1000_13800000.json index 2028a1407..a3cd05d38 100644 --- a/video/fixtures/profiles_tests/1500_1000_13800000.json +++ b/video/fixtures/profiles_tests/1500_1000_13800000.json @@ -1 +1 @@ -{"Width":1500,"Height":1000,"Bitrate":13800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1500,"height":1000,"bitrate":13800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1500,"Height":1000,"Bitrate":13800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":1500,"height":1000,"bitrate":16560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_10400000.json b/video/fixtures/profiles_tests/1500_1500_10400000.json index c037530f1..935e1778c 100644 --- a/video/fixtures/profiles_tests/1500_1500_10400000.json +++ b/video/fixtures/profiles_tests/1500_1500_10400000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":10400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":12480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_1600000.json b/video/fixtures/profiles_tests/1500_1500_1600000.json index d90ad24a7..5dc8cfb26 100644 --- a/video/fixtures/profiles_tests/1500_1500_1600000.json +++ b/video/fixtures/profiles_tests/1500_1500_1600000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":196608,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":196608,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":1920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_2100000.json b/video/fixtures/profiles_tests/1500_1500_2100000.json index b645691d1..35c13d1d1 100644 --- a/video/fixtures/profiles_tests/1500_1500_2100000.json +++ b/video/fixtures/profiles_tests/1500_1500_2100000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":258048,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":258048,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":2520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_2300000.json b/video/fixtures/profiles_tests/1500_1500_2300000.json index 429d1a86d..00a7a3c7e 100644 --- a/video/fixtures/profiles_tests/1500_1500_2300000.json +++ b/video/fixtures/profiles_tests/1500_1500_2300000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":282624,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":282624,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":2760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_2400000.json b/video/fixtures/profiles_tests/1500_1500_2400000.json index 12f573c3e..5102e045f 100644 --- a/video/fixtures/profiles_tests/1500_1500_2400000.json +++ b/video/fixtures/profiles_tests/1500_1500_2400000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":294912,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":294912,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":2880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_2500000.json b/video/fixtures/profiles_tests/1500_1500_2500000.json index 29590f574..ff364baaf 100644 --- a/video/fixtures/profiles_tests/1500_1500_2500000.json +++ b/video/fixtures/profiles_tests/1500_1500_2500000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":307200,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":307200,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_3600000.json b/video/fixtures/profiles_tests/1500_1500_3600000.json index 2fe4fb225..6d3ab3893 100644 --- a/video/fixtures/profiles_tests/1500_1500_3600000.json +++ b/video/fixtures/profiles_tests/1500_1500_3600000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":3600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":442368,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":3600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":442368,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":4320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_8600000.json b/video/fixtures/profiles_tests/1500_1500_8600000.json index edbe29689..0557dfa13 100644 --- a/video/fixtures/profiles_tests/1500_1500_8600000.json +++ b/video/fixtures/profiles_tests/1500_1500_8600000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":8600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":8600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":8600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":10320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1500_1500_8900000.json b/video/fixtures/profiles_tests/1500_1500_8900000.json index eddce9263..f03ddbfb3 100644 --- a/video/fixtures/profiles_tests/1500_1500_8900000.json +++ b/video/fixtures/profiles_tests/1500_1500_8900000.json @@ -1 +1 @@ -{"Width":1500,"Height":1500,"Bitrate":8900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":8900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1500,"Height":1500,"Bitrate":8900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1500p0","width":1500,"height":1500,"bitrate":10680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1600_1600_18500000.json b/video/fixtures/profiles_tests/1600_1600_18500000.json index c19e7bf6c..b163477cc 100644 --- a/video/fixtures/profiles_tests/1600_1600_18500000.json +++ b/video/fixtures/profiles_tests/1600_1600_18500000.json @@ -1 +1 @@ -{"Width":1600,"Height":1600,"Bitrate":18500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1600p0","width":1600,"height":1600,"bitrate":18500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1600,"Height":1600,"Bitrate":18500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1600p0","width":1600,"height":1600,"bitrate":22200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1600_1600_26700000.json b/video/fixtures/profiles_tests/1600_1600_26700000.json index c691d5911..94369aedd 100644 --- a/video/fixtures/profiles_tests/1600_1600_26700000.json +++ b/video/fixtures/profiles_tests/1600_1600_26700000.json @@ -1 +1 @@ -{"Width":1600,"Height":1600,"Bitrate":26700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1600p0","width":1600,"height":1600,"bitrate":26700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1600,"Height":1600,"Bitrate":26700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1600p0","width":1600,"height":1600,"bitrate":32040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1686_546_300000.json b/video/fixtures/profiles_tests/1686_546_300000.json index 3f994dc50..7c6921c89 100644 --- a/video/fixtures/profiles_tests/1686_546_300000.json +++ b/video/fixtures/profiles_tests/1686_546_300000.json @@ -1 +1 @@ -{"Width":1686,"Height":546,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":1686,"height":546,"bitrate":150000,"fps":0,"quality":27},{"name":"546p0","width":1686,"height":546,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1686,"Height":546,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":1686,"height":546,"bitrate":150000,"fps":0,"quality":27},{"name":"546p0","width":1686,"height":546,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1722_1350_25700000.json b/video/fixtures/profiles_tests/1722_1350_25700000.json index 50799986a..0d0fe5b5d 100644 --- a/video/fixtures/profiles_tests/1722_1350_25700000.json +++ b/video/fixtures/profiles_tests/1722_1350_25700000.json @@ -1 +1 @@ -{"Width":1722,"Height":1350,"Bitrate":25700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1350p0","width":1722,"height":1350,"bitrate":25700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1722,"Height":1350,"Bitrate":25700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1350p0","width":1722,"height":1350,"bitrate":30840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1780_1742_7600000.json b/video/fixtures/profiles_tests/1780_1742_7600000.json index 0d8cdff63..0ce38b3c1 100644 --- a/video/fixtures/profiles_tests/1780_1742_7600000.json +++ b/video/fixtures/profiles_tests/1780_1742_7600000.json @@ -1 +1 @@ -{"Width":1780,"Height":1742,"Bitrate":7600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":677655,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2710623,"fps":0,"quality":27},{"name":"1742p0","width":1780,"height":1742,"bitrate":7600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1780,"Height":1742,"Bitrate":7600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":677655,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2710623,"fps":0,"quality":27},{"name":"1742p0","width":1780,"height":1742,"bitrate":9120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1800_1800_10400000.json b/video/fixtures/profiles_tests/1800_1800_10400000.json index 2894c6727..89d680949 100644 --- a/video/fixtures/profiles_tests/1800_1800_10400000.json +++ b/video/fixtures/profiles_tests/1800_1800_10400000.json @@ -1 +1 @@ -{"Width":1800,"Height":1800,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":887466,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3549866,"fps":0,"quality":27},{"name":"1800p0","width":1800,"height":1800,"bitrate":10400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1800,"Height":1800,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":887466,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3549866,"fps":0,"quality":27},{"name":"1800p0","width":1800,"height":1800,"bitrate":12480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1800_1800_15300000.json b/video/fixtures/profiles_tests/1800_1800_15300000.json index 88367d844..d9e13890c 100644 --- a/video/fixtures/profiles_tests/1800_1800_15300000.json +++ b/video/fixtures/profiles_tests/1800_1800_15300000.json @@ -1 +1 @@ -{"Width":1800,"Height":1800,"Bitrate":15300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1800p0","width":1800,"height":1800,"bitrate":15300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1800,"Height":1800,"Bitrate":15300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1800p0","width":1800,"height":1800,"bitrate":18360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1862_1396_17900000.json b/video/fixtures/profiles_tests/1862_1396_17900000.json index 00a4c9f2d..200cdedde 100644 --- a/video/fixtures/profiles_tests/1862_1396_17900000.json +++ b/video/fixtures/profiles_tests/1862_1396_17900000.json @@ -1 +1 @@ -{"Width":1862,"Height":1396,"Bitrate":17900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1396p0","width":1862,"height":1396,"bitrate":17900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1862,"Height":1396,"Bitrate":17900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1396p0","width":1862,"height":1396,"bitrate":21480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1076_10300000.json b/video/fixtures/profiles_tests/1920_1076_10300000.json index f3e28b0d7..8637ac511 100644 --- a/video/fixtures/profiles_tests/1920_1076_10300000.json +++ b/video/fixtures/profiles_tests/1920_1076_10300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1076,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1076p0","width":1920,"height":1076,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1076,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1076p0","width":1920,"height":1076,"bitrate":12360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1076_1100000.json b/video/fixtures/profiles_tests/1920_1076_1100000.json index e59e70e9a..6c423a4a9 100644 --- a/video/fixtures/profiles_tests/1920_1076_1100000.json +++ b/video/fixtures/profiles_tests/1920_1076_1100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1076,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":147211,"fps":0,"quality":27},{"name":"1076p0","width":1920,"height":1076,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1076,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":147211,"fps":0,"quality":27},{"name":"1076p0","width":1920,"height":1076,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1076_2600000.json b/video/fixtures/profiles_tests/1920_1076_2600000.json index a19b78a72..7f3d5f23b 100644 --- a/video/fixtures/profiles_tests/1920_1076_2600000.json +++ b/video/fixtures/profiles_tests/1920_1076_2600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1076,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":347955,"fps":0,"quality":27},{"name":"1076p0","width":1920,"height":1076,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1076,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":347955,"fps":0,"quality":27},{"name":"1076p0","width":1920,"height":1076,"bitrate":3120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1076_3100000.json b/video/fixtures/profiles_tests/1920_1076_3100000.json index 01643a0ab..7b5a1d35c 100644 --- a/video/fixtures/profiles_tests/1920_1076_3100000.json +++ b/video/fixtures/profiles_tests/1920_1076_3100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1076,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":414869,"fps":0,"quality":27},{"name":"1076p0","width":1920,"height":1076,"bitrate":3100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1076,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":414869,"fps":0,"quality":27},{"name":"1076p0","width":1920,"height":1076,"bitrate":3720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_100000.json b/video/fixtures/profiles_tests/1920_1080_100000.json index 343ea8007..39f633bbf 100644 --- a/video/fixtures/profiles_tests/1920_1080_100000.json +++ b/video/fixtures/profiles_tests/1920_1080_100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":50000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":50000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1000000.json b/video/fixtures/profiles_tests/1920_1080_1000000.json index fe7c79f54..8f3b79717 100644 --- a/video/fixtures/profiles_tests/1920_1080_1000000.json +++ b/video/fixtures/profiles_tests/1920_1080_1000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":500000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":500000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10000000.json b/video/fixtures/profiles_tests/1920_1080_10000000.json index 78d1d35e5..1b48a7113 100644 --- a/video/fixtures/profiles_tests/1920_1080_10000000.json +++ b/video/fixtures/profiles_tests/1920_1080_10000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10100000.json b/video/fixtures/profiles_tests/1920_1080_10100000.json index 94bd43d27..9c0514153 100644 --- a/video/fixtures/profiles_tests/1920_1080_10100000.json +++ b/video/fixtures/profiles_tests/1920_1080_10100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10300000.json b/video/fixtures/profiles_tests/1920_1080_10300000.json index 9ef1f3891..e3f90d81f 100644 --- a/video/fixtures/profiles_tests/1920_1080_10300000.json +++ b/video/fixtures/profiles_tests/1920_1080_10300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10400000.json b/video/fixtures/profiles_tests/1920_1080_10400000.json index 6c8485426..0cfd8b25b 100644 --- a/video/fixtures/profiles_tests/1920_1080_10400000.json +++ b/video/fixtures/profiles_tests/1920_1080_10400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10500000.json b/video/fixtures/profiles_tests/1920_1080_10500000.json index 164162fa5..045e9ad0a 100644 --- a/video/fixtures/profiles_tests/1920_1080_10500000.json +++ b/video/fixtures/profiles_tests/1920_1080_10500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10600000.json b/video/fixtures/profiles_tests/1920_1080_10600000.json index 98d8f5011..1776b72e2 100644 --- a/video/fixtures/profiles_tests/1920_1080_10600000.json +++ b/video/fixtures/profiles_tests/1920_1080_10600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_10700000.json b/video/fixtures/profiles_tests/1920_1080_10700000.json index f8fc6a683..e8c73869e 100644 --- a/video/fixtures/profiles_tests/1920_1080_10700000.json +++ b/video/fixtures/profiles_tests/1920_1080_10700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1100000.json b/video/fixtures/profiles_tests/1920_1080_1100000.json index f49cecac0..e3d26f76a 100644 --- a/video/fixtures/profiles_tests/1920_1080_1100000.json +++ b/video/fixtures/profiles_tests/1920_1080_1100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":146666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":146666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_11200000.json b/video/fixtures/profiles_tests/1920_1080_11200000.json index deae6eda1..81ac283af 100644 --- a/video/fixtures/profiles_tests/1920_1080_11200000.json +++ b/video/fixtures/profiles_tests/1920_1080_11200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":11200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":11200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":11200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":13440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_11300000.json b/video/fixtures/profiles_tests/1920_1080_11300000.json index c59590e27..78b8adbb7 100644 --- a/video/fixtures/profiles_tests/1920_1080_11300000.json +++ b/video/fixtures/profiles_tests/1920_1080_11300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":11300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":11300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":11300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":13560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_11400000.json b/video/fixtures/profiles_tests/1920_1080_11400000.json index 2cbbde6ca..b8dfd6277 100644 --- a/video/fixtures/profiles_tests/1920_1080_11400000.json +++ b/video/fixtures/profiles_tests/1920_1080_11400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":11400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":11400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":11400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":13680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_11900000.json b/video/fixtures/profiles_tests/1920_1080_11900000.json index 6cdab89d7..493bcb70c 100644 --- a/video/fixtures/profiles_tests/1920_1080_11900000.json +++ b/video/fixtures/profiles_tests/1920_1080_11900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":11900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":11900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":11900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1200000.json b/video/fixtures/profiles_tests/1920_1080_1200000.json index 2d5a6d750..c58726380 100644 --- a/video/fixtures/profiles_tests/1920_1080_1200000.json +++ b/video/fixtures/profiles_tests/1920_1080_1200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":160000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":160000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_12000000.json b/video/fixtures/profiles_tests/1920_1080_12000000.json index 65668f4f7..4319642b4 100644 --- a/video/fixtures/profiles_tests/1920_1080_12000000.json +++ b/video/fixtures/profiles_tests/1920_1080_12000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":12000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":12000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_12100000.json b/video/fixtures/profiles_tests/1920_1080_12100000.json index 42d5d659f..2a8918f2d 100644 --- a/video/fixtures/profiles_tests/1920_1080_12100000.json +++ b/video/fixtures/profiles_tests/1920_1080_12100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":12100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":12100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_12300000.json b/video/fixtures/profiles_tests/1920_1080_12300000.json index d93d9a289..3ab7e78f9 100644 --- a/video/fixtures/profiles_tests/1920_1080_12300000.json +++ b/video/fixtures/profiles_tests/1920_1080_12300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":12300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":12300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_12400000.json b/video/fixtures/profiles_tests/1920_1080_12400000.json index abb3dacbd..793fd7b56 100644 --- a/video/fixtures/profiles_tests/1920_1080_12400000.json +++ b/video/fixtures/profiles_tests/1920_1080_12400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":12400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":12400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_12500000.json b/video/fixtures/profiles_tests/1920_1080_12500000.json index fcb6ce041..7c3d568a6 100644 --- a/video/fixtures/profiles_tests/1920_1080_12500000.json +++ b/video/fixtures/profiles_tests/1920_1080_12500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":12500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":12500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":12500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":15000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1300000.json b/video/fixtures/profiles_tests/1920_1080_1300000.json index 1d95de0e2..a1c6a7063 100644 --- a/video/fixtures/profiles_tests/1920_1080_1300000.json +++ b/video/fixtures/profiles_tests/1920_1080_1300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":173333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":173333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_13500000.json b/video/fixtures/profiles_tests/1920_1080_13500000.json index 9bf4eb8ab..571f918c6 100644 --- a/video/fixtures/profiles_tests/1920_1080_13500000.json +++ b/video/fixtures/profiles_tests/1920_1080_13500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":13500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":13500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":13500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":16200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_13900000.json b/video/fixtures/profiles_tests/1920_1080_13900000.json index e2e4b53d7..3ceefd357 100644 --- a/video/fixtures/profiles_tests/1920_1080_13900000.json +++ b/video/fixtures/profiles_tests/1920_1080_13900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":13900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":13900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":13900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":16680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1400000.json b/video/fixtures/profiles_tests/1920_1080_1400000.json index 404eca97e..a3a132a79 100644 --- a/video/fixtures/profiles_tests/1920_1080_1400000.json +++ b/video/fixtures/profiles_tests/1920_1080_1400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":186666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":186666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_14200000.json b/video/fixtures/profiles_tests/1920_1080_14200000.json index 841b7bc7f..88b44e097 100644 --- a/video/fixtures/profiles_tests/1920_1080_14200000.json +++ b/video/fixtures/profiles_tests/1920_1080_14200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":14200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":14200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":17040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_14700000.json b/video/fixtures/profiles_tests/1920_1080_14700000.json index 21459eb9a..c17091906 100644 --- a/video/fixtures/profiles_tests/1920_1080_14700000.json +++ b/video/fixtures/profiles_tests/1920_1080_14700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":14700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":14700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":17640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_14800000.json b/video/fixtures/profiles_tests/1920_1080_14800000.json index 4bd0742ba..4666fbb52 100644 --- a/video/fixtures/profiles_tests/1920_1080_14800000.json +++ b/video/fixtures/profiles_tests/1920_1080_14800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":14800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":14800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":17760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_14900000.json b/video/fixtures/profiles_tests/1920_1080_14900000.json index 29ffcc602..8292c2b4b 100644 --- a/video/fixtures/profiles_tests/1920_1080_14900000.json +++ b/video/fixtures/profiles_tests/1920_1080_14900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":14900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":14900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":14900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":17880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1500000.json b/video/fixtures/profiles_tests/1920_1080_1500000.json index f5d483141..ce52521ea 100644 --- a/video/fixtures/profiles_tests/1920_1080_1500000.json +++ b/video/fixtures/profiles_tests/1920_1080_1500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":200000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":200000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_15000000.json b/video/fixtures/profiles_tests/1920_1080_15000000.json index b3a1a1f34..b67a2a97a 100644 --- a/video/fixtures/profiles_tests/1920_1080_15000000.json +++ b/video/fixtures/profiles_tests/1920_1080_15000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":15000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":15000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":15000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":18000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_16000000.json b/video/fixtures/profiles_tests/1920_1080_16000000.json index 40a2af782..e48923a5b 100644 --- a/video/fixtures/profiles_tests/1920_1080_16000000.json +++ b/video/fixtures/profiles_tests/1920_1080_16000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":16000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":16000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":16000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":19200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_16600000.json b/video/fixtures/profiles_tests/1920_1080_16600000.json index 0cc0b3207..0dfc7b508 100644 --- a/video/fixtures/profiles_tests/1920_1080_16600000.json +++ b/video/fixtures/profiles_tests/1920_1080_16600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":16600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":16600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":16600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":19920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_16900000.json b/video/fixtures/profiles_tests/1920_1080_16900000.json index a4f705986..1ea2c9089 100644 --- a/video/fixtures/profiles_tests/1920_1080_16900000.json +++ b/video/fixtures/profiles_tests/1920_1080_16900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":16900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":16900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":16900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":20280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_17000000.json b/video/fixtures/profiles_tests/1920_1080_17000000.json index f2b22ad2f..ba3a18545 100644 --- a/video/fixtures/profiles_tests/1920_1080_17000000.json +++ b/video/fixtures/profiles_tests/1920_1080_17000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":17000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":17000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":17000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":20400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_1800000.json b/video/fixtures/profiles_tests/1920_1080_1800000.json index 156733ccb..7331d51e1 100644 --- a/video/fixtures/profiles_tests/1920_1080_1800000.json +++ b/video/fixtures/profiles_tests/1920_1080_1800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":240000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":240000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_18400000.json b/video/fixtures/profiles_tests/1920_1080_18400000.json index e39380712..0c96dcda0 100644 --- a/video/fixtures/profiles_tests/1920_1080_18400000.json +++ b/video/fixtures/profiles_tests/1920_1080_18400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":18400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":18400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":18400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":22080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_19300000.json b/video/fixtures/profiles_tests/1920_1080_19300000.json index f2e0455dc..76c6b749e 100644 --- a/video/fixtures/profiles_tests/1920_1080_19300000.json +++ b/video/fixtures/profiles_tests/1920_1080_19300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":19300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":19300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":19300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":23160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_19400000.json b/video/fixtures/profiles_tests/1920_1080_19400000.json index 96a0c9e9c..57e3a4d43 100644 --- a/video/fixtures/profiles_tests/1920_1080_19400000.json +++ b/video/fixtures/profiles_tests/1920_1080_19400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":19400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":19400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":19400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":23280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_19500000.json b/video/fixtures/profiles_tests/1920_1080_19500000.json index 9d3df7360..d060e5a3d 100644 --- a/video/fixtures/profiles_tests/1920_1080_19500000.json +++ b/video/fixtures/profiles_tests/1920_1080_19500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":19500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":19500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":19500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":23400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_19700000.json b/video/fixtures/profiles_tests/1920_1080_19700000.json index 3dafd15b4..346bbaac7 100644 --- a/video/fixtures/profiles_tests/1920_1080_19700000.json +++ b/video/fixtures/profiles_tests/1920_1080_19700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":19700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":19700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":19700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":23640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_19900000.json b/video/fixtures/profiles_tests/1920_1080_19900000.json index eee3e8494..42edc5154 100644 --- a/video/fixtures/profiles_tests/1920_1080_19900000.json +++ b/video/fixtures/profiles_tests/1920_1080_19900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":19900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":19900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":19900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":23880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2000000.json b/video/fixtures/profiles_tests/1920_1080_2000000.json index 1259f0c63..e86320189 100644 --- a/video/fixtures/profiles_tests/1920_1080_2000000.json +++ b/video/fixtures/profiles_tests/1920_1080_2000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":266666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":266666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_20000000.json b/video/fixtures/profiles_tests/1920_1080_20000000.json index 6c9a01ec7..31b55d4b4 100644 --- a/video/fixtures/profiles_tests/1920_1080_20000000.json +++ b/video/fixtures/profiles_tests/1920_1080_20000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":20000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":20000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":20000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":24000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_20100000.json b/video/fixtures/profiles_tests/1920_1080_20100000.json index 02a4d0439..b41cd29d6 100644 --- a/video/fixtures/profiles_tests/1920_1080_20100000.json +++ b/video/fixtures/profiles_tests/1920_1080_20100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":20100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":20100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":20100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":24120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_20200000.json b/video/fixtures/profiles_tests/1920_1080_20200000.json index f4eb0e8e0..82b2ca620 100644 --- a/video/fixtures/profiles_tests/1920_1080_20200000.json +++ b/video/fixtures/profiles_tests/1920_1080_20200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":20200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":20200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":20200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":24240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_21100000.json b/video/fixtures/profiles_tests/1920_1080_21100000.json index 6f5511438..ca169c41d 100644 --- a/video/fixtures/profiles_tests/1920_1080_21100000.json +++ b/video/fixtures/profiles_tests/1920_1080_21100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":21100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":21100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":21100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":25320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2200000.json b/video/fixtures/profiles_tests/1920_1080_2200000.json index 19018b80d..d3dcda44d 100644 --- a/video/fixtures/profiles_tests/1920_1080_2200000.json +++ b/video/fixtures/profiles_tests/1920_1080_2200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":293333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":293333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_22000000.json b/video/fixtures/profiles_tests/1920_1080_22000000.json index 7a316f78c..02d294859 100644 --- a/video/fixtures/profiles_tests/1920_1080_22000000.json +++ b/video/fixtures/profiles_tests/1920_1080_22000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":22000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":22000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":22000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":26400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_23700000.json b/video/fixtures/profiles_tests/1920_1080_23700000.json index e6f97f9a2..47b8edb6b 100644 --- a/video/fixtures/profiles_tests/1920_1080_23700000.json +++ b/video/fixtures/profiles_tests/1920_1080_23700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":23700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":23700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":23700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":28440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_23800000.json b/video/fixtures/profiles_tests/1920_1080_23800000.json index 69971cf0b..b4b7799e4 100644 --- a/video/fixtures/profiles_tests/1920_1080_23800000.json +++ b/video/fixtures/profiles_tests/1920_1080_23800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":23800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":23800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":23800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":28560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_24600000.json b/video/fixtures/profiles_tests/1920_1080_24600000.json index 7cad2dc49..b46d1b06e 100644 --- a/video/fixtures/profiles_tests/1920_1080_24600000.json +++ b/video/fixtures/profiles_tests/1920_1080_24600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":24600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":24600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":24600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":29520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2500000.json b/video/fixtures/profiles_tests/1920_1080_2500000.json index a43235154..288006e1e 100644 --- a/video/fixtures/profiles_tests/1920_1080_2500000.json +++ b/video/fixtures/profiles_tests/1920_1080_2500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":333333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":333333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_25000000.json b/video/fixtures/profiles_tests/1920_1080_25000000.json index 820aad768..537e8dfcf 100644 --- a/video/fixtures/profiles_tests/1920_1080_25000000.json +++ b/video/fixtures/profiles_tests/1920_1080_25000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":25000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":25000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":25000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":30000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_25200000.json b/video/fixtures/profiles_tests/1920_1080_25200000.json index 8940432b3..0cbf12784 100644 --- a/video/fixtures/profiles_tests/1920_1080_25200000.json +++ b/video/fixtures/profiles_tests/1920_1080_25200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":25200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":25200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":25200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":30240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2600000.json b/video/fixtures/profiles_tests/1920_1080_2600000.json index 7b989e8ce..0fa20e3cd 100644 --- a/video/fixtures/profiles_tests/1920_1080_2600000.json +++ b/video/fixtures/profiles_tests/1920_1080_2600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":346666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":346666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2700000.json b/video/fixtures/profiles_tests/1920_1080_2700000.json index 6d9d20626..5bbeff692 100644 --- a/video/fixtures/profiles_tests/1920_1080_2700000.json +++ b/video/fixtures/profiles_tests/1920_1080_2700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2800000.json b/video/fixtures/profiles_tests/1920_1080_2800000.json index 3aeae5545..b671f2415 100644 --- a/video/fixtures/profiles_tests/1920_1080_2800000.json +++ b/video/fixtures/profiles_tests/1920_1080_2800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":373333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":373333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_2900000.json b/video/fixtures/profiles_tests/1920_1080_2900000.json index 7a4683e4c..5db98de34 100644 --- a/video/fixtures/profiles_tests/1920_1080_2900000.json +++ b/video/fixtures/profiles_tests/1920_1080_2900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":386666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":2900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":386666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_3100000.json b/video/fixtures/profiles_tests/1920_1080_3100000.json index bec86ecdd..1c53fdfd3 100644 --- a/video/fixtures/profiles_tests/1920_1080_3100000.json +++ b/video/fixtures/profiles_tests/1920_1080_3100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":413333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":413333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_3200000.json b/video/fixtures/profiles_tests/1920_1080_3200000.json index e3a294bac..0a85924c3 100644 --- a/video/fixtures/profiles_tests/1920_1080_3200000.json +++ b/video/fixtures/profiles_tests/1920_1080_3200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":3200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":426666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":3200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":426666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_3300000.json b/video/fixtures/profiles_tests/1920_1080_3300000.json index dbf0d458a..8fcfd55c6 100644 --- a/video/fixtures/profiles_tests/1920_1080_3300000.json +++ b/video/fixtures/profiles_tests/1920_1080_3300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":3300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":440000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":3300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":440000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_3500000.json b/video/fixtures/profiles_tests/1920_1080_3500000.json index 1a5a25ea3..46e0ad156 100644 --- a/video/fixtures/profiles_tests/1920_1080_3500000.json +++ b/video/fixtures/profiles_tests/1920_1080_3500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":3500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":466666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":3500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":466666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_3700000.json b/video/fixtures/profiles_tests/1920_1080_3700000.json index 12f4ab4ce..87b397614 100644 --- a/video/fixtures/profiles_tests/1920_1080_3700000.json +++ b/video/fixtures/profiles_tests/1920_1080_3700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":3700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":493333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":3700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":493333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_37700000.json b/video/fixtures/profiles_tests/1920_1080_37700000.json index ff2345398..35640ecb8 100644 --- a/video/fixtures/profiles_tests/1920_1080_37700000.json +++ b/video/fixtures/profiles_tests/1920_1080_37700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":37700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":37700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":37700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":45240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_3800000.json b/video/fixtures/profiles_tests/1920_1080_3800000.json index 1ef370e7d..94e9aa52d 100644 --- a/video/fixtures/profiles_tests/1920_1080_3800000.json +++ b/video/fixtures/profiles_tests/1920_1080_3800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":506666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":3800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":506666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_400000.json b/video/fixtures/profiles_tests/1920_1080_400000.json index 69234e08f..d8c9b4fd6 100644 --- a/video/fixtures/profiles_tests/1920_1080_400000.json +++ b/video/fixtures/profiles_tests/1920_1080_400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":200000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":200000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_4100000.json b/video/fixtures/profiles_tests/1920_1080_4100000.json index 0c835ace9..8c690ab10 100644 --- a/video/fixtures/profiles_tests/1920_1080_4100000.json +++ b/video/fixtures/profiles_tests/1920_1080_4100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":4100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":546666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2186666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":4100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":546666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2186666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_4200000.json b/video/fixtures/profiles_tests/1920_1080_4200000.json index 29ce38de0..b7cb444e4 100644 --- a/video/fixtures/profiles_tests/1920_1080_4200000.json +++ b/video/fixtures/profiles_tests/1920_1080_4200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":560000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2240000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":560000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2240000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_4400000.json b/video/fixtures/profiles_tests/1920_1080_4400000.json index e6dff98b8..181306220 100644 --- a/video/fixtures/profiles_tests/1920_1080_4400000.json +++ b/video/fixtures/profiles_tests/1920_1080_4400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":586666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2346666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":586666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2346666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_4500000.json b/video/fixtures/profiles_tests/1920_1080_4500000.json index 5c967af6d..b54d73c67 100644 --- a/video/fixtures/profiles_tests/1920_1080_4500000.json +++ b/video/fixtures/profiles_tests/1920_1080_4500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":4500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2400000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":4500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2400000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_4800000.json b/video/fixtures/profiles_tests/1920_1080_4800000.json index 3c0453340..27103c072 100644 --- a/video/fixtures/profiles_tests/1920_1080_4800000.json +++ b/video/fixtures/profiles_tests/1920_1080_4800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":4800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":640000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2560000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":4800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":4800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":640000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2560000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_5000000.json b/video/fixtures/profiles_tests/1920_1080_5000000.json index f13e6e3e4..d796d8201 100644 --- a/video/fixtures/profiles_tests/1920_1080_5000000.json +++ b/video/fixtures/profiles_tests/1920_1080_5000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":5000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":666666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2666666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":5000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":666666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2666666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":6000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_5200000.json b/video/fixtures/profiles_tests/1920_1080_5200000.json index 38bbc658e..82b4bbc43 100644 --- a/video/fixtures/profiles_tests/1920_1080_5200000.json +++ b/video/fixtures/profiles_tests/1920_1080_5200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":5200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":693333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2773333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":5200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":693333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2773333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":6240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_5600000.json b/video/fixtures/profiles_tests/1920_1080_5600000.json index 83f1f01ca..03e022e03 100644 --- a/video/fixtures/profiles_tests/1920_1080_5600000.json +++ b/video/fixtures/profiles_tests/1920_1080_5600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":5600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":746666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2986666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":5600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":746666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2986666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":6720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_5700000.json b/video/fixtures/profiles_tests/1920_1080_5700000.json index bb7812565..e2c07a446 100644 --- a/video/fixtures/profiles_tests/1920_1080_5700000.json +++ b/video/fixtures/profiles_tests/1920_1080_5700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":5700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":760000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3040000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":5700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":760000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3040000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":6840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_5900000.json b/video/fixtures/profiles_tests/1920_1080_5900000.json index be11b0343..af8a8ae98 100644 --- a/video/fixtures/profiles_tests/1920_1080_5900000.json +++ b/video/fixtures/profiles_tests/1920_1080_5900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":786666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3146666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":5900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":786666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3146666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":7080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_600000.json b/video/fixtures/profiles_tests/1920_1080_600000.json index 4f7168158..a5dd16336 100644 --- a/video/fixtures/profiles_tests/1920_1080_600000.json +++ b/video/fixtures/profiles_tests/1920_1080_600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":300000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":300000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_6100000.json b/video/fixtures/profiles_tests/1920_1080_6100000.json index 0e0434e4d..78c343eac 100644 --- a/video/fixtures/profiles_tests/1920_1080_6100000.json +++ b/video/fixtures/profiles_tests/1920_1080_6100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":6100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":813333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3253333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":6100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":6100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":813333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3253333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":7320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_6800000.json b/video/fixtures/profiles_tests/1920_1080_6800000.json index e715fd958..e07b7971a 100644 --- a/video/fixtures/profiles_tests/1920_1080_6800000.json +++ b/video/fixtures/profiles_tests/1920_1080_6800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":6800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":906666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3626666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":6800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":6800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":906666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3626666,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":8160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_7000000.json b/video/fixtures/profiles_tests/1920_1080_7000000.json index 3244319a1..b0d0050cc 100644 --- a/video/fixtures/profiles_tests/1920_1080_7000000.json +++ b/video/fixtures/profiles_tests/1920_1080_7000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":7000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":933333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3733333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":7000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":7000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":933333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3733333,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":8400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_7700000.json b/video/fixtures/profiles_tests/1920_1080_7700000.json index d3128d652..62e228297 100644 --- a/video/fixtures/profiles_tests/1920_1080_7700000.json +++ b/video/fixtures/profiles_tests/1920_1080_7700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":7700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":9240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_7800000.json b/video/fixtures/profiles_tests/1920_1080_7800000.json index cf8ef6cb9..5c6e80942 100644 --- a/video/fixtures/profiles_tests/1920_1080_7800000.json +++ b/video/fixtures/profiles_tests/1920_1080_7800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":7800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":7800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":7800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":9360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_800000.json b/video/fixtures/profiles_tests/1920_1080_800000.json index 7e166064d..695006535 100644 --- a/video/fixtures/profiles_tests/1920_1080_800000.json +++ b/video/fixtures/profiles_tests/1920_1080_800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":400000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":1920,"height":1080,"bitrate":400000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_8200000.json b/video/fixtures/profiles_tests/1920_1080_8200000.json index 538304de9..8519c5d7e 100644 --- a/video/fixtures/profiles_tests/1920_1080_8200000.json +++ b/video/fixtures/profiles_tests/1920_1080_8200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":8200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":8200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":8200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":9840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_8300000.json b/video/fixtures/profiles_tests/1920_1080_8300000.json index 0c698d6ed..a02f9b451 100644 --- a/video/fixtures/profiles_tests/1920_1080_8300000.json +++ b/video/fixtures/profiles_tests/1920_1080_8300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":8300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":8300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":8300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":9960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_8400000.json b/video/fixtures/profiles_tests/1920_1080_8400000.json index 7e100269a..f3cbf3fad 100644 --- a/video/fixtures/profiles_tests/1920_1080_8400000.json +++ b/video/fixtures/profiles_tests/1920_1080_8400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":8400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_8700000.json b/video/fixtures/profiles_tests/1920_1080_8700000.json index 81ce6a1ac..d99ff487c 100644 --- a/video/fixtures/profiles_tests/1920_1080_8700000.json +++ b/video/fixtures/profiles_tests/1920_1080_8700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":8700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":8700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":8700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_9100000.json b/video/fixtures/profiles_tests/1920_1080_9100000.json index f0a7587a9..390bc21a5 100644 --- a/video/fixtures/profiles_tests/1920_1080_9100000.json +++ b/video/fixtures/profiles_tests/1920_1080_9100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":9100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":9100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":9100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":10920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_9400000.json b/video/fixtures/profiles_tests/1920_1080_9400000.json index b4649ea0f..d671deedd 100644 --- a/video/fixtures/profiles_tests/1920_1080_9400000.json +++ b/video/fixtures/profiles_tests/1920_1080_9400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":9400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":9400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":9400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":11280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_9800000.json b/video/fixtures/profiles_tests/1920_1080_9800000.json index 779e18c3d..1d61409a0 100644 --- a/video/fixtures/profiles_tests/1920_1080_9800000.json +++ b/video/fixtures/profiles_tests/1920_1080_9800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":9800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":9800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":9800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":11760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1080_9900000.json b/video/fixtures/profiles_tests/1920_1080_9900000.json index 8b36d8c63..192de7b61 100644 --- a/video/fixtures/profiles_tests/1920_1080_9900000.json +++ b/video/fixtures/profiles_tests/1920_1080_9900000.json @@ -1 +1 @@ -{"Width":1920,"Height":1080,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":9900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1080,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1080p0","width":1920,"height":1080,"bitrate":11880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1440_15000000.json b/video/fixtures/profiles_tests/1920_1440_15000000.json index aabfc5afb..0a253eee9 100644 --- a/video/fixtures/profiles_tests/1920_1440_15000000.json +++ b/video/fixtures/profiles_tests/1920_1440_15000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1440,"Bitrate":15000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1920,"height":1440,"bitrate":15000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1440,"Bitrate":15000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1920,"height":1440,"bitrate":18000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1440_19700000.json b/video/fixtures/profiles_tests/1920_1440_19700000.json index c697174dd..2fdca19e6 100644 --- a/video/fixtures/profiles_tests/1920_1440_19700000.json +++ b/video/fixtures/profiles_tests/1920_1440_19700000.json @@ -1 +1 @@ -{"Width":1920,"Height":1440,"Bitrate":19700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1920,"height":1440,"bitrate":19700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1440,"Bitrate":19700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1920,"height":1440,"bitrate":23640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1440_22500000.json b/video/fixtures/profiles_tests/1920_1440_22500000.json index 8fce53499..b7cf937fe 100644 --- a/video/fixtures/profiles_tests/1920_1440_22500000.json +++ b/video/fixtures/profiles_tests/1920_1440_22500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1440,"Bitrate":22500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1920,"height":1440,"bitrate":22500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1440,"Bitrate":22500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":1920,"height":1440,"bitrate":27000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_10200000.json b/video/fixtures/profiles_tests/1920_1920_10200000.json index aea8e7c1a..5b5a86908 100644 --- a/video/fixtures/profiles_tests/1920_1920_10200000.json +++ b/video/fixtures/profiles_tests/1920_1920_10200000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":10200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":765000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3060000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":10200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":10200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":765000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3060000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":12240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_10600000.json b/video/fixtures/profiles_tests/1920_1920_10600000.json index 31539631a..c1e2b124f 100644 --- a/video/fixtures/profiles_tests/1920_1920_10600000.json +++ b/video/fixtures/profiles_tests/1920_1920_10600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":10600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":795000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3180000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":10600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":10600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":795000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3180000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":12720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_1100000.json b/video/fixtures/profiles_tests/1920_1920_1100000.json index 8669335fc..4441e955c 100644 --- a/video/fixtures/profiles_tests/1920_1920_1100000.json +++ b/video/fixtures/profiles_tests/1920_1920_1100000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":82500,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":82500,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_15400000.json b/video/fixtures/profiles_tests/1920_1920_15400000.json index fc2c63c9c..4a6e0f6a5 100644 --- a/video/fixtures/profiles_tests/1920_1920_15400000.json +++ b/video/fixtures/profiles_tests/1920_1920_15400000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":15400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":15400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":15400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":18480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_25000000.json b/video/fixtures/profiles_tests/1920_1920_25000000.json index 86406d111..f51e83834 100644 --- a/video/fixtures/profiles_tests/1920_1920_25000000.json +++ b/video/fixtures/profiles_tests/1920_1920_25000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":25000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":25000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":25000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":30000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_29000000.json b/video/fixtures/profiles_tests/1920_1920_29000000.json index 6ef1f4261..b5be77816 100644 --- a/video/fixtures/profiles_tests/1920_1920_29000000.json +++ b/video/fixtures/profiles_tests/1920_1920_29000000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":29000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":29000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":29000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":34800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_3800000.json b/video/fixtures/profiles_tests/1920_1920_3800000.json index dcd4e7c32..ef3bdf1dc 100644 --- a/video/fixtures/profiles_tests/1920_1920_3800000.json +++ b/video/fixtures/profiles_tests/1920_1920_3800000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":285000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":3800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":3800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":285000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":4560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_52500000.json b/video/fixtures/profiles_tests/1920_1920_52500000.json index 9c8b1faac..dc53bad63 100644 --- a/video/fixtures/profiles_tests/1920_1920_52500000.json +++ b/video/fixtures/profiles_tests/1920_1920_52500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":52500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":52500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":52500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":63000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_5300000.json b/video/fixtures/profiles_tests/1920_1920_5300000.json index fb02fb116..2ed4e7e1d 100644 --- a/video/fixtures/profiles_tests/1920_1920_5300000.json +++ b/video/fixtures/profiles_tests/1920_1920_5300000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":397500,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1590000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":5300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":397500,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1590000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":6360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_5500000.json b/video/fixtures/profiles_tests/1920_1920_5500000.json index f4ebc5227..6da192955 100644 --- a/video/fixtures/profiles_tests/1920_1920_5500000.json +++ b/video/fixtures/profiles_tests/1920_1920_5500000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":5500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":412500,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1650000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":5500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":5500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":412500,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1650000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":6600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_1920_6600000.json b/video/fixtures/profiles_tests/1920_1920_6600000.json index bddb3873f..6142afd3f 100644 --- a/video/fixtures/profiles_tests/1920_1920_6600000.json +++ b/video/fixtures/profiles_tests/1920_1920_6600000.json @@ -1 +1 @@ -{"Width":1920,"Height":1920,"Bitrate":6600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":495000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1980000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":6600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":1920,"Bitrate":6600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":495000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1980000,"fps":0,"quality":27},{"name":"1920p0","width":1920,"height":1920,"bitrate":7920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1920_600_10400000.json b/video/fixtures/profiles_tests/1920_600_10400000.json index 4326b8055..5afcb6bb7 100644 --- a/video/fixtures/profiles_tests/1920_600_10400000.json +++ b/video/fixtures/profiles_tests/1920_600_10400000.json @@ -1 +1 @@ -{"Width":1920,"Height":600,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":1920,"height":600,"bitrate":10400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1920,"Height":600,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":1920,"height":600,"bitrate":12480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/1980_1980_24700000.json b/video/fixtures/profiles_tests/1980_1980_24700000.json index a8793c0de..5a3ff5a3b 100644 --- a/video/fixtures/profiles_tests/1980_1980_24700000.json +++ b/video/fixtures/profiles_tests/1980_1980_24700000.json @@ -1 +1 @@ -{"Width":1980,"Height":1980,"Bitrate":24700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1980p0","width":1980,"height":1980,"bitrate":24700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":1980,"Height":1980,"Bitrate":24700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1980p0","width":1980,"height":1980,"bitrate":29640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_1500_5600000.json b/video/fixtures/profiles_tests/2000_1500_5600000.json index fb7a62fa4..190a40f16 100644 --- a/video/fixtures/profiles_tests/2000_1500_5600000.json +++ b/video/fixtures/profiles_tests/2000_1500_5600000.json @@ -1 +1 @@ -{"Width":2000,"Height":1500,"Bitrate":5600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":516096,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2064384,"fps":0,"quality":27},{"name":"1500p0","width":2000,"height":1500,"bitrate":5600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":1500,"Bitrate":5600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":516096,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2064384,"fps":0,"quality":27},{"name":"1500p0","width":2000,"height":1500,"bitrate":6720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_10300000.json b/video/fixtures/profiles_tests/2000_2000_10300000.json index ef401db12..be49169c2 100644 --- a/video/fixtures/profiles_tests/2000_2000_10300000.json +++ b/video/fixtures/profiles_tests/2000_2000_10300000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":711936,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2847744,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":711936,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2847744,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":12360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_10900000.json b/video/fixtures/profiles_tests/2000_2000_10900000.json index 8eaa1bac7..ca7597a03 100644 --- a/video/fixtures/profiles_tests/2000_2000_10900000.json +++ b/video/fixtures/profiles_tests/2000_2000_10900000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":10900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":753408,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3013632,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":10900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":10900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":753408,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3013632,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":13080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_11400000.json b/video/fixtures/profiles_tests/2000_2000_11400000.json index e6df7bc3c..bf24e006e 100644 --- a/video/fixtures/profiles_tests/2000_2000_11400000.json +++ b/video/fixtures/profiles_tests/2000_2000_11400000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":11400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":787968,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3151872,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":11400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":11400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":787968,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3151872,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":13680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_13200000.json b/video/fixtures/profiles_tests/2000_2000_13200000.json index e35e449f4..c9d2cc61b 100644 --- a/video/fixtures/profiles_tests/2000_2000_13200000.json +++ b/video/fixtures/profiles_tests/2000_2000_13200000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":13200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":912384,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3649536,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":13200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":13200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":912384,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3649536,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":15840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_14600000.json b/video/fixtures/profiles_tests/2000_2000_14600000.json index dcd12e9cc..c21928a35 100644 --- a/video/fixtures/profiles_tests/2000_2000_14600000.json +++ b/video/fixtures/profiles_tests/2000_2000_14600000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":14600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":14600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":14600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":17520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_15100000.json b/video/fixtures/profiles_tests/2000_2000_15100000.json index a3a9fc305..61a779a11 100644 --- a/video/fixtures/profiles_tests/2000_2000_15100000.json +++ b/video/fixtures/profiles_tests/2000_2000_15100000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":15100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":15100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":15100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":18120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_16900000.json b/video/fixtures/profiles_tests/2000_2000_16900000.json index b0606aa4e..5da941b67 100644 --- a/video/fixtures/profiles_tests/2000_2000_16900000.json +++ b/video/fixtures/profiles_tests/2000_2000_16900000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":16900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":16900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":16900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":20280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_19500000.json b/video/fixtures/profiles_tests/2000_2000_19500000.json index 964189193..22b277dd8 100644 --- a/video/fixtures/profiles_tests/2000_2000_19500000.json +++ b/video/fixtures/profiles_tests/2000_2000_19500000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":19500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":19500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":19500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":23400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_22800000.json b/video/fixtures/profiles_tests/2000_2000_22800000.json index da1573c9c..598be28da 100644 --- a/video/fixtures/profiles_tests/2000_2000_22800000.json +++ b/video/fixtures/profiles_tests/2000_2000_22800000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":22800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":22800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":22800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":27360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_24500000.json b/video/fixtures/profiles_tests/2000_2000_24500000.json index 5d37541ee..07f8e32ed 100644 --- a/video/fixtures/profiles_tests/2000_2000_24500000.json +++ b/video/fixtures/profiles_tests/2000_2000_24500000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":24500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":24500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":24500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":29400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_2900000.json b/video/fixtures/profiles_tests/2000_2000_2900000.json index 39435862b..3e9602a5f 100644 --- a/video/fixtures/profiles_tests/2000_2000_2900000.json +++ b/video/fixtures/profiles_tests/2000_2000_2900000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":200448,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":2900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":200448,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":3480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_29900000.json b/video/fixtures/profiles_tests/2000_2000_29900000.json index b8ad1a0ab..3351520da 100644 --- a/video/fixtures/profiles_tests/2000_2000_29900000.json +++ b/video/fixtures/profiles_tests/2000_2000_29900000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":29900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":29900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":29900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":35880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_30000000.json b/video/fixtures/profiles_tests/2000_2000_30000000.json index bf83f6b81..373dba14e 100644 --- a/video/fixtures/profiles_tests/2000_2000_30000000.json +++ b/video/fixtures/profiles_tests/2000_2000_30000000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":30000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":30000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":30000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":36000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_4100000.json b/video/fixtures/profiles_tests/2000_2000_4100000.json index 6d4a19de8..557f43781 100644 --- a/video/fixtures/profiles_tests/2000_2000_4100000.json +++ b/video/fixtures/profiles_tests/2000_2000_4100000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":4100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":283392,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1133568,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":4100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":4100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":283392,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1133568,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":4920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_4400000.json b/video/fixtures/profiles_tests/2000_2000_4400000.json index bee96d3bc..97f3e6d6b 100644 --- a/video/fixtures/profiles_tests/2000_2000_4400000.json +++ b/video/fixtures/profiles_tests/2000_2000_4400000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":304128,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1216512,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":4400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":304128,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1216512,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":5280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_4900000.json b/video/fixtures/profiles_tests/2000_2000_4900000.json index cb37c7a04..cbc529857 100644 --- a/video/fixtures/profiles_tests/2000_2000_4900000.json +++ b/video/fixtures/profiles_tests/2000_2000_4900000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":4900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":338688,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1354752,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":4900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":4900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":338688,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1354752,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":5880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_8100000.json b/video/fixtures/profiles_tests/2000_2000_8100000.json index 62863dd3d..ad8a4fb57 100644 --- a/video/fixtures/profiles_tests/2000_2000_8100000.json +++ b/video/fixtures/profiles_tests/2000_2000_8100000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":8100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":559872,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2239488,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":8100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":8100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":559872,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2239488,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":9720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_8400000.json b/video/fixtures/profiles_tests/2000_2000_8400000.json index 0da994174..10e6f8b2f 100644 --- a/video/fixtures/profiles_tests/2000_2000_8400000.json +++ b/video/fixtures/profiles_tests/2000_2000_8400000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":580608,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2322432,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":8400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":8400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":580608,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2322432,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":10080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_9800000.json b/video/fixtures/profiles_tests/2000_2000_9800000.json index e6985904b..dbacad787 100644 --- a/video/fixtures/profiles_tests/2000_2000_9800000.json +++ b/video/fixtures/profiles_tests/2000_2000_9800000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":9800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":677376,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2709504,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":9800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":9800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":677376,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2709504,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":11760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_2000_9900000.json b/video/fixtures/profiles_tests/2000_2000_9900000.json index 31ba69fe4..074910894 100644 --- a/video/fixtures/profiles_tests/2000_2000_9900000.json +++ b/video/fixtures/profiles_tests/2000_2000_9900000.json @@ -1 +1 @@ -{"Width":2000,"Height":2000,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":684288,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2737152,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":9900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":2000,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":684288,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2737152,"fps":0,"quality":27},{"name":"2000p0","width":2000,"height":2000,"bitrate":11880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_3000_22400000.json b/video/fixtures/profiles_tests/2000_3000_22400000.json index e8c5f739b..08586fd5e 100644 --- a/video/fixtures/profiles_tests/2000_3000_22400000.json +++ b/video/fixtures/profiles_tests/2000_3000_22400000.json @@ -1 +1 @@ -{"Width":2000,"Height":3000,"Bitrate":22400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"3000p0","width":2000,"height":3000,"bitrate":22400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":3000,"Bitrate":22400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"3000p0","width":2000,"height":3000,"bitrate":26880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2000_3000_6800000.json b/video/fixtures/profiles_tests/2000_3000_6800000.json index dccc819a9..e2674b65a 100644 --- a/video/fixtures/profiles_tests/2000_3000_6800000.json +++ b/video/fixtures/profiles_tests/2000_3000_6800000.json @@ -1 +1 @@ -{"Width":2000,"Height":3000,"Bitrate":6800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":313344,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1253376,"fps":0,"quality":27},{"name":"3000p0","width":2000,"height":3000,"bitrate":6800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2000,"Height":3000,"Bitrate":6800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":313344,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1253376,"fps":0,"quality":27},{"name":"3000p0","width":2000,"height":3000,"bitrate":8160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_1152_400000.json b/video/fixtures/profiles_tests/2048_1152_400000.json index 2f2a94558..4af2787db 100644 --- a/video/fixtures/profiles_tests/2048_1152_400000.json +++ b/video/fixtures/profiles_tests/2048_1152_400000.json @@ -1 +1 @@ -{"Width":2048,"Height":1152,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":2048,"height":1152,"bitrate":200000,"fps":0,"quality":27},{"name":"1152p0","width":2048,"height":1152,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":1152,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":2048,"height":1152,"bitrate":200000,"fps":0,"quality":27},{"name":"1152p0","width":2048,"height":1152,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_10800000.json b/video/fixtures/profiles_tests/2048_2048_10800000.json index b6e12eacc..6ae396429 100644 --- a/video/fixtures/profiles_tests/2048_2048_10800000.json +++ b/video/fixtures/profiles_tests/2048_2048_10800000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":10800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":711914,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2847656,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":10800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":10800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":711914,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2847656,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":12960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_20300000.json b/video/fixtures/profiles_tests/2048_2048_20300000.json index 20de68045..a9948c97c 100644 --- a/video/fixtures/profiles_tests/2048_2048_20300000.json +++ b/video/fixtures/profiles_tests/2048_2048_20300000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":20300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":20300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":20300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":24360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_24500000.json b/video/fixtures/profiles_tests/2048_2048_24500000.json index 5faabef48..0a53ec61f 100644 --- a/video/fixtures/profiles_tests/2048_2048_24500000.json +++ b/video/fixtures/profiles_tests/2048_2048_24500000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":24500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":24500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":24500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":29400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_26900000.json b/video/fixtures/profiles_tests/2048_2048_26900000.json index 882bdca09..4958e1348 100644 --- a/video/fixtures/profiles_tests/2048_2048_26900000.json +++ b/video/fixtures/profiles_tests/2048_2048_26900000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":26900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":26900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":26900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":32280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_2700000.json b/video/fixtures/profiles_tests/2048_2048_2700000.json index 9d4e98093..3ad88c21c 100644 --- a/video/fixtures/profiles_tests/2048_2048_2700000.json +++ b/video/fixtures/profiles_tests/2048_2048_2700000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":177978,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":2700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":177978,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":3240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_27100000.json b/video/fixtures/profiles_tests/2048_2048_27100000.json index d40d0be8d..843157f79 100644 --- a/video/fixtures/profiles_tests/2048_2048_27100000.json +++ b/video/fixtures/profiles_tests/2048_2048_27100000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":27100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":27100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":27100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":32520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_27200000.json b/video/fixtures/profiles_tests/2048_2048_27200000.json index d9a283989..9d807fda5 100644 --- a/video/fixtures/profiles_tests/2048_2048_27200000.json +++ b/video/fixtures/profiles_tests/2048_2048_27200000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":27200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":27200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":27200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":32640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_27600000.json b/video/fixtures/profiles_tests/2048_2048_27600000.json index f6de45f78..872fe0f92 100644 --- a/video/fixtures/profiles_tests/2048_2048_27600000.json +++ b/video/fixtures/profiles_tests/2048_2048_27600000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":27600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":27600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":27600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":33120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_27700000.json b/video/fixtures/profiles_tests/2048_2048_27700000.json index 2e1559f44..07f9386fb 100644 --- a/video/fixtures/profiles_tests/2048_2048_27700000.json +++ b/video/fixtures/profiles_tests/2048_2048_27700000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":27700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":27700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":27700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":33240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_2800000.json b/video/fixtures/profiles_tests/2048_2048_2800000.json index 89ea955c3..68e9adaba 100644 --- a/video/fixtures/profiles_tests/2048_2048_2800000.json +++ b/video/fixtures/profiles_tests/2048_2048_2800000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":184570,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":2800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":184570,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":3360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_37100000.json b/video/fixtures/profiles_tests/2048_2048_37100000.json index 3a0df086d..a93c892e6 100644 --- a/video/fixtures/profiles_tests/2048_2048_37100000.json +++ b/video/fixtures/profiles_tests/2048_2048_37100000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":37100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":37100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":37100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":44520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_37900000.json b/video/fixtures/profiles_tests/2048_2048_37900000.json index 335c41507..44c353a23 100644 --- a/video/fixtures/profiles_tests/2048_2048_37900000.json +++ b/video/fixtures/profiles_tests/2048_2048_37900000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":37900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":37900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":37900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":45480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_38200000.json b/video/fixtures/profiles_tests/2048_2048_38200000.json index 111be1ffd..06f66f5ee 100644 --- a/video/fixtures/profiles_tests/2048_2048_38200000.json +++ b/video/fixtures/profiles_tests/2048_2048_38200000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":38200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":38200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":38200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":45840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_4300000.json b/video/fixtures/profiles_tests/2048_2048_4300000.json index e43fc0c11..63d52a957 100644 --- a/video/fixtures/profiles_tests/2048_2048_4300000.json +++ b/video/fixtures/profiles_tests/2048_2048_4300000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":4300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":283447,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1133789,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":4300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":4300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":283447,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1133789,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":5160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_7400000.json b/video/fixtures/profiles_tests/2048_2048_7400000.json index bda456562..37e908f46 100644 --- a/video/fixtures/profiles_tests/2048_2048_7400000.json +++ b/video/fixtures/profiles_tests/2048_2048_7400000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":7400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":487792,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1951171,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":7400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":7400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":487792,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1951171,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":8880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_7700000.json b/video/fixtures/profiles_tests/2048_2048_7700000.json index 82657e0a7..9c55402f3 100644 --- a/video/fixtures/profiles_tests/2048_2048_7700000.json +++ b/video/fixtures/profiles_tests/2048_2048_7700000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":507568,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2030273,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":7700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":7700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":507568,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2030273,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":9240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_8000000.json b/video/fixtures/profiles_tests/2048_2048_8000000.json index 8b8553419..48aaeaae2 100644 --- a/video/fixtures/profiles_tests/2048_2048_8000000.json +++ b/video/fixtures/profiles_tests/2048_2048_8000000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":527343,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2109375,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":8000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":527343,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2109375,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":9600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_8800000.json b/video/fixtures/profiles_tests/2048_2048_8800000.json index 0fba6e11f..280951c88 100644 --- a/video/fixtures/profiles_tests/2048_2048_8800000.json +++ b/video/fixtures/profiles_tests/2048_2048_8800000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":8800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":580078,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2320312,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":8800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":8800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":580078,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2320312,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":10560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2048_2048_9900000.json b/video/fixtures/profiles_tests/2048_2048_9900000.json index 0f897a8b9..23917b41d 100644 --- a/video/fixtures/profiles_tests/2048_2048_9900000.json +++ b/video/fixtures/profiles_tests/2048_2048_9900000.json @@ -1 +1 @@ -{"Width":2048,"Height":2048,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":652587,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2610351,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":9900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2048,"Height":2048,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":652587,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2610351,"fps":0,"quality":27},{"name":"2048p0","width":2048,"height":2048,"bitrate":11880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2112_2112_67900000.json b/video/fixtures/profiles_tests/2112_2112_67900000.json index 69a908362..cc2d0edff 100644 --- a/video/fixtures/profiles_tests/2112_2112_67900000.json +++ b/video/fixtures/profiles_tests/2112_2112_67900000.json @@ -1 +1 @@ -{"Width":2112,"Height":2112,"Bitrate":67900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2112p0","width":2112,"height":2112,"bitrate":67900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2112,"Height":2112,"Bitrate":67900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2112p0","width":2112,"height":2112,"bitrate":81480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_10000000.json b/video/fixtures/profiles_tests/2160_2160_10000000.json index 4a3531147..35b85e2d0 100644 --- a/video/fixtures/profiles_tests/2160_2160_10000000.json +++ b/video/fixtures/profiles_tests/2160_2160_10000000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":592592,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2370370,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":10000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":10000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":592592,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2370370,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":12000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_10200000.json b/video/fixtures/profiles_tests/2160_2160_10200000.json index cd67d2110..052ab1f82 100644 --- a/video/fixtures/profiles_tests/2160_2160_10200000.json +++ b/video/fixtures/profiles_tests/2160_2160_10200000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":10200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":604444,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2417777,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":10200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":10200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":604444,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2417777,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":12240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_16000000.json b/video/fixtures/profiles_tests/2160_2160_16000000.json index a5e1ace73..bdf747a8d 100644 --- a/video/fixtures/profiles_tests/2160_2160_16000000.json +++ b/video/fixtures/profiles_tests/2160_2160_16000000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":16000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":948148,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3792592,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":16000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":16000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":948148,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3792592,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":19200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_25400000.json b/video/fixtures/profiles_tests/2160_2160_25400000.json index 87c14fd4f..c1ccbfa8d 100644 --- a/video/fixtures/profiles_tests/2160_2160_25400000.json +++ b/video/fixtures/profiles_tests/2160_2160_25400000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":25400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":25400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":25400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":30480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_30800000.json b/video/fixtures/profiles_tests/2160_2160_30800000.json index e93706731..4381d914d 100644 --- a/video/fixtures/profiles_tests/2160_2160_30800000.json +++ b/video/fixtures/profiles_tests/2160_2160_30800000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":30800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":30800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":30800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":36960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_400000.json b/video/fixtures/profiles_tests/2160_2160_400000.json index e80cc3526..7925c4ba2 100644 --- a/video/fixtures/profiles_tests/2160_2160_400000.json +++ b/video/fixtures/profiles_tests/2160_2160_400000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":2160,"height":2160,"bitrate":200000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":2160,"height":2160,"bitrate":200000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_59700000.json b/video/fixtures/profiles_tests/2160_2160_59700000.json index 8beed7640..4b1977b7a 100644 --- a/video/fixtures/profiles_tests/2160_2160_59700000.json +++ b/video/fixtures/profiles_tests/2160_2160_59700000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":59700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":59700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":59700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":71640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_65000000.json b/video/fixtures/profiles_tests/2160_2160_65000000.json index 2fc37319a..2c0a92911 100644 --- a/video/fixtures/profiles_tests/2160_2160_65000000.json +++ b/video/fixtures/profiles_tests/2160_2160_65000000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":65000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":65000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":65000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":78000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_8800000.json b/video/fixtures/profiles_tests/2160_2160_8800000.json index 74bfca67a..2a74fd4c3 100644 --- a/video/fixtures/profiles_tests/2160_2160_8800000.json +++ b/video/fixtures/profiles_tests/2160_2160_8800000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":8800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":521481,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2085925,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":8800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":8800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":521481,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2085925,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":10560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_9600000.json b/video/fixtures/profiles_tests/2160_2160_9600000.json index d4e97d2b7..efd1d1ea9 100644 --- a/video/fixtures/profiles_tests/2160_2160_9600000.json +++ b/video/fixtures/profiles_tests/2160_2160_9600000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":9600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":568888,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2275555,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":9600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":9600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":568888,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2275555,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":11520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_2160_9900000.json b/video/fixtures/profiles_tests/2160_2160_9900000.json index cfe88f549..96a85ab46 100644 --- a/video/fixtures/profiles_tests/2160_2160_9900000.json +++ b/video/fixtures/profiles_tests/2160_2160_9900000.json @@ -1 +1 @@ -{"Width":2160,"Height":2160,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":586666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2346666,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":9900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":2160,"Bitrate":9900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":586666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2346666,"fps":0,"quality":27},{"name":"2160p0","width":2160,"height":2160,"bitrate":11880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_3840_14900000.json b/video/fixtures/profiles_tests/2160_3840_14900000.json index 1b21c7c0e..8c94d63fa 100644 --- a/video/fixtures/profiles_tests/2160_3840_14900000.json +++ b/video/fixtures/profiles_tests/2160_3840_14900000.json @@ -1 +1 @@ -{"Width":2160,"Height":3840,"Bitrate":14900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":496666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1986666,"fps":0,"quality":27},{"name":"3840p0","width":2160,"height":3840,"bitrate":14900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":3840,"Bitrate":14900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":496666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1986666,"fps":0,"quality":27},{"name":"3840p0","width":2160,"height":3840,"bitrate":17880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_3840_19000000.json b/video/fixtures/profiles_tests/2160_3840_19000000.json index ddb94a8b1..f29fd73be 100644 --- a/video/fixtures/profiles_tests/2160_3840_19000000.json +++ b/video/fixtures/profiles_tests/2160_3840_19000000.json @@ -1 +1 @@ -{"Width":2160,"Height":3840,"Bitrate":19000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":633333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2533333,"fps":0,"quality":27},{"name":"3840p0","width":2160,"height":3840,"bitrate":19000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":3840,"Bitrate":19000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":633333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2533333,"fps":0,"quality":27},{"name":"3840p0","width":2160,"height":3840,"bitrate":22800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_3840_31100000.json b/video/fixtures/profiles_tests/2160_3840_31100000.json index 9a132a425..53bcc7627 100644 --- a/video/fixtures/profiles_tests/2160_3840_31100000.json +++ b/video/fixtures/profiles_tests/2160_3840_31100000.json @@ -1 +1 @@ -{"Width":2160,"Height":3840,"Bitrate":31100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"3840p0","width":2160,"height":3840,"bitrate":31100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":3840,"Bitrate":31100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"3840p0","width":2160,"height":3840,"bitrate":37320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_3840_38000000.json b/video/fixtures/profiles_tests/2160_3840_38000000.json index b52fe158f..6c9e6d38d 100644 --- a/video/fixtures/profiles_tests/2160_3840_38000000.json +++ b/video/fixtures/profiles_tests/2160_3840_38000000.json @@ -1 +1 @@ -{"Width":2160,"Height":3840,"Bitrate":38000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"3840p0","width":2160,"height":3840,"bitrate":38000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":3840,"Bitrate":38000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"3840p0","width":2160,"height":3840,"bitrate":45600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2160_720_7200000.json b/video/fixtures/profiles_tests/2160_720_7200000.json index 3a973d8bb..18ea04da0 100644 --- a/video/fixtures/profiles_tests/2160_720_7200000.json +++ b/video/fixtures/profiles_tests/2160_720_7200000.json @@ -1 +1 @@ -{"Width":2160,"Height":720,"Bitrate":7200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":2160,"height":720,"bitrate":7200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2160,"Height":720,"Bitrate":7200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":2160,"height":720,"bitrate":8640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2210_2164_4700000.json b/video/fixtures/profiles_tests/2210_2164_4700000.json index 4e15f69bc..c659ab843 100644 --- a/video/fixtures/profiles_tests/2210_2164_4700000.json +++ b/video/fixtures/profiles_tests/2210_2164_4700000.json @@ -1 +1 @@ -{"Width":2210,"Height":2164,"Bitrate":4700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":271714,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1086856,"fps":0,"quality":27},{"name":"2164p0","width":2210,"height":2164,"bitrate":4700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2210,"Height":2164,"Bitrate":4700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":271714,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1086856,"fps":0,"quality":27},{"name":"2164p0","width":2210,"height":2164,"bitrate":5640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2304_2304_20600000.json b/video/fixtures/profiles_tests/2304_2304_20600000.json index 6595a29e3..52f231e96 100644 --- a/video/fixtures/profiles_tests/2304_2304_20600000.json +++ b/video/fixtures/profiles_tests/2304_2304_20600000.json @@ -1 +1 @@ -{"Width":2304,"Height":2304,"Bitrate":20600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2304p0","width":2304,"height":2304,"bitrate":20600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2304,"Height":2304,"Bitrate":20600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2304p0","width":2304,"height":2304,"bitrate":24720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2304_2304_49100000.json b/video/fixtures/profiles_tests/2304_2304_49100000.json index cd51a5444..9ee8931ab 100644 --- a/video/fixtures/profiles_tests/2304_2304_49100000.json +++ b/video/fixtures/profiles_tests/2304_2304_49100000.json @@ -1 +1 @@ -{"Width":2304,"Height":2304,"Bitrate":49100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2304p0","width":2304,"height":2304,"bitrate":49100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2304,"Height":2304,"Bitrate":49100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2304p0","width":2304,"height":2304,"bitrate":58920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2304_2304_92700000.json b/video/fixtures/profiles_tests/2304_2304_92700000.json index f4f8fe089..684064742 100644 --- a/video/fixtures/profiles_tests/2304_2304_92700000.json +++ b/video/fixtures/profiles_tests/2304_2304_92700000.json @@ -1 +1 @@ -{"Width":2304,"Height":2304,"Bitrate":92700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2304p0","width":2304,"height":2304,"bitrate":92700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2304,"Height":2304,"Bitrate":92700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2304p0","width":2304,"height":2304,"bitrate":111240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2340_1612_4600000.json b/video/fixtures/profiles_tests/2340_1612_4600000.json index 00dd6cfd9..b19519f9c 100644 --- a/video/fixtures/profiles_tests/2340_1612_4600000.json +++ b/video/fixtures/profiles_tests/2340_1612_4600000.json @@ -1 +1 @@ -{"Width":2340,"Height":1612,"Bitrate":4600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":337163,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1348654,"fps":0,"quality":27},{"name":"1612p0","width":2340,"height":1612,"bitrate":4600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2340,"Height":1612,"Bitrate":4600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":337163,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1348654,"fps":0,"quality":27},{"name":"1612p0","width":2340,"height":1612,"bitrate":5520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2384_1576_5400000.json b/video/fixtures/profiles_tests/2384_1576_5400000.json index bb953790d..89ba03cbe 100644 --- a/video/fixtures/profiles_tests/2384_1576_5400000.json +++ b/video/fixtures/profiles_tests/2384_1576_5400000.json @@ -1 +1 @@ -{"Width":2384,"Height":1576,"Bitrate":5400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":397369,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1589479,"fps":0,"quality":27},{"name":"1576p0","width":2384,"height":1576,"bitrate":5400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2384,"Height":1576,"Bitrate":5400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":397369,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1589479,"fps":0,"quality":27},{"name":"1576p0","width":2384,"height":1576,"bitrate":6480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2400_2400_9400000.json b/video/fixtures/profiles_tests/2400_2400_9400000.json index 2800f9c76..e6d587d30 100644 --- a/video/fixtures/profiles_tests/2400_2400_9400000.json +++ b/video/fixtures/profiles_tests/2400_2400_9400000.json @@ -1 +1 @@ -{"Width":2400,"Height":2400,"Bitrate":9400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":451200,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1804800,"fps":0,"quality":27},{"name":"2400p0","width":2400,"height":2400,"bitrate":9400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2400,"Height":2400,"Bitrate":9400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":451200,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1804800,"fps":0,"quality":27},{"name":"2400p0","width":2400,"height":2400,"bitrate":11280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2408_3508_74700000.json b/video/fixtures/profiles_tests/2408_3508_74700000.json index d316ce240..916b0bb8e 100644 --- a/video/fixtures/profiles_tests/2408_3508_74700000.json +++ b/video/fixtures/profiles_tests/2408_3508_74700000.json @@ -1 +1 @@ -{"Width":2408,"Height":3508,"Bitrate":74700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"3508p0","width":2408,"height":3508,"bitrate":74700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2408,"Height":3508,"Bitrate":74700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"3508p0","width":2408,"height":3508,"bitrate":89640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2432_2380_10600000.json b/video/fixtures/profiles_tests/2432_2380_10600000.json index e2b6973fc..3bbb42901 100644 --- a/video/fixtures/profiles_tests/2432_2380_10600000.json +++ b/video/fixtures/profiles_tests/2432_2380_10600000.json @@ -1 +1 @@ -{"Width":2432,"Height":2380,"Bitrate":10600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":506324,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2025298,"fps":0,"quality":27},{"name":"2380p0","width":2432,"height":2380,"bitrate":10600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2432,"Height":2380,"Bitrate":10600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":506324,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2025298,"fps":0,"quality":27},{"name":"2380p0","width":2432,"height":2380,"bitrate":12720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2500_1400_11800000.json b/video/fixtures/profiles_tests/2500_1400_11800000.json index 7975f3288..345e8bb83 100644 --- a/video/fixtures/profiles_tests/2500_1400_11800000.json +++ b/video/fixtures/profiles_tests/2500_1400_11800000.json @@ -1 +1 @@ -{"Width":2500,"Height":1400,"Bitrate":11800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":932132,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3728530,"fps":0,"quality":27},{"name":"1400p0","width":2500,"height":1400,"bitrate":11800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2500,"Height":1400,"Bitrate":11800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":932132,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3728530,"fps":0,"quality":27},{"name":"1400p0","width":2500,"height":1400,"bitrate":14160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2500_2500_2300000.json b/video/fixtures/profiles_tests/2500_2500_2300000.json index 2813e2531..1492a907d 100644 --- a/video/fixtures/profiles_tests/2500_2500_2300000.json +++ b/video/fixtures/profiles_tests/2500_2500_2300000.json @@ -1 +1 @@ -{"Width":2500,"Height":2500,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":101744,"fps":0,"quality":27},{"name":"2500p0","width":2500,"height":2500,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2500,"Height":2500,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":101744,"fps":0,"quality":27},{"name":"2500p0","width":2500,"height":2500,"bitrate":2760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2500_2500_6300000.json b/video/fixtures/profiles_tests/2500_2500_6300000.json index 4a779d298..1562b73c6 100644 --- a/video/fixtures/profiles_tests/2500_2500_6300000.json +++ b/video/fixtures/profiles_tests/2500_2500_6300000.json @@ -1 +1 @@ -{"Width":2500,"Height":2500,"Bitrate":6300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":278691,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1114767,"fps":0,"quality":27},{"name":"2500p0","width":2500,"height":2500,"bitrate":6300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2500,"Height":2500,"Bitrate":6300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":278691,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1114767,"fps":0,"quality":27},{"name":"2500p0","width":2500,"height":2500,"bitrate":7560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2500_2500_7200000.json b/video/fixtures/profiles_tests/2500_2500_7200000.json index 6da8d3a82..f27aa17dc 100644 --- a/video/fixtures/profiles_tests/2500_2500_7200000.json +++ b/video/fixtures/profiles_tests/2500_2500_7200000.json @@ -1 +1 @@ -{"Width":2500,"Height":2500,"Bitrate":7200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":318504,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1274019,"fps":0,"quality":27},{"name":"2500p0","width":2500,"height":2500,"bitrate":7200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2500,"Height":2500,"Bitrate":7200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":318504,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1274019,"fps":0,"quality":27},{"name":"2500p0","width":2500,"height":2500,"bitrate":8640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2500_3000_10300000.json b/video/fixtures/profiles_tests/2500_3000_10300000.json index db74ad63c..dcd892ebb 100644 --- a/video/fixtures/profiles_tests/2500_3000_10300000.json +++ b/video/fixtures/profiles_tests/2500_3000_10300000.json @@ -1 +1 @@ -{"Width":2500,"Height":3000,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":379699,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1518796,"fps":0,"quality":27},{"name":"3000p0","width":2500,"height":3000,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2500,"Height":3000,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":379699,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1518796,"fps":0,"quality":27},{"name":"3000p0","width":2500,"height":3000,"bitrate":12360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/250_442_400000.json b/video/fixtures/profiles_tests/250_442_400000.json index 864e4619b..237cae2b8 100644 --- a/video/fixtures/profiles_tests/250_442_400000.json +++ b/video/fixtures/profiles_tests/250_442_400000.json @@ -1 +1 @@ -{"Width":250,"Height":442,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":250,"height":442,"bitrate":200000,"fps":0,"quality":27},{"name":"442p0","width":250,"height":442,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":250,"Height":442,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":250,"height":442,"bitrate":200000,"fps":0,"quality":27},{"name":"442p0","width":250,"height":442,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2560_1440_12200000.json b/video/fixtures/profiles_tests/2560_1440_12200000.json index 62a4b86f8..2df9eae7a 100644 --- a/video/fixtures/profiles_tests/2560_1440_12200000.json +++ b/video/fixtures/profiles_tests/2560_1440_12200000.json @@ -1 +1 @@ -{"Width":2560,"Height":1440,"Bitrate":12200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":915000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3660000,"fps":0,"quality":27},{"name":"1440p0","width":2560,"height":1440,"bitrate":12200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2560,"Height":1440,"Bitrate":12200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":915000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3660000,"fps":0,"quality":27},{"name":"1440p0","width":2560,"height":1440,"bitrate":14640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2560_1440_13800000.json b/video/fixtures/profiles_tests/2560_1440_13800000.json index ef04b25a4..dedeb05ad 100644 --- a/video/fixtures/profiles_tests/2560_1440_13800000.json +++ b/video/fixtures/profiles_tests/2560_1440_13800000.json @@ -1 +1 @@ -{"Width":2560,"Height":1440,"Bitrate":13800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":2560,"height":1440,"bitrate":13800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2560,"Height":1440,"Bitrate":13800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1440p0","width":2560,"height":1440,"bitrate":16560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2560_1440_1500000.json b/video/fixtures/profiles_tests/2560_1440_1500000.json index f13e7859e..251fabf60 100644 --- a/video/fixtures/profiles_tests/2560_1440_1500000.json +++ b/video/fixtures/profiles_tests/2560_1440_1500000.json @@ -1 +1 @@ -{"Width":2560,"Height":1440,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":112500,"fps":0,"quality":27},{"name":"1440p0","width":2560,"height":1440,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2560,"Height":1440,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":112500,"fps":0,"quality":27},{"name":"1440p0","width":2560,"height":1440,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/264_480_700000.json b/video/fixtures/profiles_tests/264_480_700000.json index 8855b6b94..aa082a32d 100644 --- a/video/fixtures/profiles_tests/264_480_700000.json +++ b/video/fixtures/profiles_tests/264_480_700000.json @@ -1 +1 @@ -{"Width":264,"Height":480,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":264,"height":480,"bitrate":350000,"fps":0,"quality":27},{"name":"480p0","width":264,"height":480,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":264,"Height":480,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":264,"height":480,"bitrate":350000,"fps":0,"quality":27},{"name":"480p0","width":264,"height":480,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2720_1530_10300000.json b/video/fixtures/profiles_tests/2720_1530_10300000.json index 1d9ec4383..9f60d3dcf 100644 --- a/video/fixtures/profiles_tests/2720_1530_10300000.json +++ b/video/fixtures/profiles_tests/2720_1530_10300000.json @@ -1 +1 @@ -{"Width":2720,"Height":1530,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":684290,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2737162,"fps":0,"quality":27},{"name":"1530p0","width":2720,"height":1530,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2720,"Height":1530,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":684290,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2737162,"fps":0,"quality":27},{"name":"1530p0","width":2720,"height":1530,"bitrate":12360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/280_580_200000.json b/video/fixtures/profiles_tests/280_580_200000.json index 565d03f34..98bbaf444 100644 --- a/video/fixtures/profiles_tests/280_580_200000.json +++ b/video/fixtures/profiles_tests/280_580_200000.json @@ -1 +1 @@ -{"Width":280,"Height":580,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":280,"height":580,"bitrate":100000,"fps":0,"quality":27},{"name":"580p0","width":280,"height":580,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":280,"Height":580,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":280,"height":580,"bitrate":100000,"fps":0,"quality":27},{"name":"580p0","width":280,"height":580,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/2880_2880_1500000.json b/video/fixtures/profiles_tests/2880_2880_1500000.json index 43b32e6b2..dc3d98a1e 100644 --- a/video/fixtures/profiles_tests/2880_2880_1500000.json +++ b/video/fixtures/profiles_tests/2880_2880_1500000.json @@ -1 +1 @@ -{"Width":2880,"Height":2880,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":50000,"fps":0,"quality":27},{"name":"2880p0","width":2880,"height":2880,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":2880,"Height":2880,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":50000,"fps":0,"quality":27},{"name":"2880p0","width":2880,"height":2880,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3000_1688_81700000.json b/video/fixtures/profiles_tests/3000_1688_81700000.json index bde452e9a..aca0b8274 100644 --- a/video/fixtures/profiles_tests/3000_1688_81700000.json +++ b/video/fixtures/profiles_tests/3000_1688_81700000.json @@ -1 +1 @@ -{"Width":3000,"Height":1688,"Bitrate":81700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1688p0","width":3000,"height":1688,"bitrate":81700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3000,"Height":1688,"Bitrate":81700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1688p0","width":3000,"height":1688,"bitrate":98040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3000_3000_5300000.json b/video/fixtures/profiles_tests/3000_3000_5300000.json index 9cf3b0d52..75882706f 100644 --- a/video/fixtures/profiles_tests/3000_3000_5300000.json +++ b/video/fixtures/profiles_tests/3000_3000_5300000.json @@ -1 +1 @@ -{"Width":3000,"Height":3000,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":162816,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":651264,"fps":0,"quality":27},{"name":"3000p0","width":3000,"height":3000,"bitrate":5300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3000,"Height":3000,"Bitrate":5300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":162816,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":651264,"fps":0,"quality":27},{"name":"3000p0","width":3000,"height":3000,"bitrate":6360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/300_270_100000.json b/video/fixtures/profiles_tests/300_270_100000.json index 33d988de9..29fd99105 100644 --- a/video/fixtures/profiles_tests/300_270_100000.json +++ b/video/fixtures/profiles_tests/300_270_100000.json @@ -1 +1 @@ -{"Width":300,"Height":270,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":300,"height":270,"bitrate":50000,"fps":0,"quality":27},{"name":"270p0","width":300,"height":270,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":300,"Height":270,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":300,"height":270,"bitrate":50000,"fps":0,"quality":27},{"name":"270p0","width":300,"height":270,"bitrate":120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/300_428_300000.json b/video/fixtures/profiles_tests/300_428_300000.json index e3bd897e9..73b10b903 100644 --- a/video/fixtures/profiles_tests/300_428_300000.json +++ b/video/fixtures/profiles_tests/300_428_300000.json @@ -1 +1 @@ -{"Width":300,"Height":428,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":300,"height":428,"bitrate":150000,"fps":0,"quality":27},{"name":"428p0","width":300,"height":428,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":300,"Height":428,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":300,"height":428,"bitrate":150000,"fps":0,"quality":27},{"name":"428p0","width":300,"height":428,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/320_240_300000.json b/video/fixtures/profiles_tests/320_240_300000.json index 967b89b9a..14b355204 100644 --- a/video/fixtures/profiles_tests/320_240_300000.json +++ b/video/fixtures/profiles_tests/320_240_300000.json @@ -1 +1 @@ -{"Width":320,"Height":240,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":240,"bitrate":150000,"fps":0,"quality":27},{"name":"240p0","width":320,"height":240,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":320,"Height":240,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":240,"bitrate":150000,"fps":0,"quality":27},{"name":"240p0","width":320,"height":240,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/320_320_300000.json b/video/fixtures/profiles_tests/320_320_300000.json index 40902c77b..33ce02b05 100644 --- a/video/fixtures/profiles_tests/320_320_300000.json +++ b/video/fixtures/profiles_tests/320_320_300000.json @@ -1 +1 @@ -{"Width":320,"Height":320,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":320,"bitrate":150000,"fps":0,"quality":27},{"name":"320p0","width":320,"height":320,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":320,"Height":320,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":320,"bitrate":150000,"fps":0,"quality":27},{"name":"320p0","width":320,"height":320,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/320_400_200000.json b/video/fixtures/profiles_tests/320_400_200000.json index e79316b59..0fa655a13 100644 --- a/video/fixtures/profiles_tests/320_400_200000.json +++ b/video/fixtures/profiles_tests/320_400_200000.json @@ -1 +1 @@ -{"Width":320,"Height":400,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":400,"bitrate":100000,"fps":0,"quality":27},{"name":"400p0","width":320,"height":400,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":320,"Height":400,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":400,"bitrate":100000,"fps":0,"quality":27},{"name":"400p0","width":320,"height":400,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/320_432_700000.json b/video/fixtures/profiles_tests/320_432_700000.json index a1be98348..c6dd661d3 100644 --- a/video/fixtures/profiles_tests/320_432_700000.json +++ b/video/fixtures/profiles_tests/320_432_700000.json @@ -1 +1 @@ -{"Width":320,"Height":432,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":432,"bitrate":350000,"fps":0,"quality":27},{"name":"432p0","width":320,"height":432,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":320,"Height":432,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":320,"height":432,"bitrate":350000,"fps":0,"quality":27},{"name":"432p0","width":320,"height":432,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3434_3454_32100000.json b/video/fixtures/profiles_tests/3434_3454_32100000.json index 3ce3b1189..149d40a5f 100644 --- a/video/fixtures/profiles_tests/3434_3454_32100000.json +++ b/video/fixtures/profiles_tests/3434_3454_32100000.json @@ -1 +1 @@ -{"Width":3434,"Height":3454,"Bitrate":32100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":748248,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2992995,"fps":0,"quality":27},{"name":"3454p0","width":3434,"height":3454,"bitrate":32100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3434,"Height":3454,"Bitrate":32100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":748248,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2992995,"fps":0,"quality":27},{"name":"3454p0","width":3434,"height":3454,"bitrate":38520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/350_480_600000.json b/video/fixtures/profiles_tests/350_480_600000.json index 891cb87df..70a9623b9 100644 --- a/video/fixtures/profiles_tests/350_480_600000.json +++ b/video/fixtures/profiles_tests/350_480_600000.json @@ -1 +1 @@ -{"Width":350,"Height":480,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":350,"height":480,"bitrate":300000,"fps":0,"quality":27},{"name":"480p0","width":350,"height":480,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":350,"Height":480,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":350,"height":480,"bitrate":300000,"fps":0,"quality":27},{"name":"480p0","width":350,"height":480,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3520_4160_24500000.json b/video/fixtures/profiles_tests/3520_4160_24500000.json index 4b7916e22..edd06be97 100644 --- a/video/fixtures/profiles_tests/3520_4160_24500000.json +++ b/video/fixtures/profiles_tests/3520_4160_24500000.json @@ -1 +1 @@ -{"Width":3520,"Height":4160,"Bitrate":24500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":462587,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1850349,"fps":0,"quality":27},{"name":"4160p0","width":3520,"height":4160,"bitrate":24500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3520,"Height":4160,"Bitrate":24500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":462587,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1850349,"fps":0,"quality":27},{"name":"4160p0","width":3520,"height":4160,"bitrate":29400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/352_640_1100000.json b/video/fixtures/profiles_tests/352_640_1100000.json index 0aaa2984d..040d16d88 100644 --- a/video/fixtures/profiles_tests/352_640_1100000.json +++ b/video/fixtures/profiles_tests/352_640_1100000.json @@ -1 +1 @@ -{"Width":352,"Height":640,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":352,"height":640,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":352,"Height":640,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":352,"height":640,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/352_640_200000.json b/video/fixtures/profiles_tests/352_640_200000.json index fb2b55264..32f2ed521 100644 --- a/video/fixtures/profiles_tests/352_640_200000.json +++ b/video/fixtures/profiles_tests/352_640_200000.json @@ -1 +1 @@ -{"Width":352,"Height":640,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":352,"height":640,"bitrate":100000,"fps":0,"quality":27},{"name":"640p0","width":352,"height":640,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":352,"Height":640,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":352,"height":640,"bitrate":100000,"fps":0,"quality":27},{"name":"640p0","width":352,"height":640,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/352_640_900000.json b/video/fixtures/profiles_tests/352_640_900000.json index 1c5808fd3..17dfa04fe 100644 --- a/video/fixtures/profiles_tests/352_640_900000.json +++ b/video/fixtures/profiles_tests/352_640_900000.json @@ -1 +1 @@ -{"Width":352,"Height":640,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":352,"height":640,"bitrate":450000,"fps":0,"quality":27},{"name":"640p0","width":352,"height":640,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":352,"Height":640,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":352,"height":640,"bitrate":450000,"fps":0,"quality":27},{"name":"640p0","width":352,"height":640,"bitrate":1080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/360_360_200000.json b/video/fixtures/profiles_tests/360_360_200000.json index a8cc2f51e..5682a6dcc 100644 --- a/video/fixtures/profiles_tests/360_360_200000.json +++ b/video/fixtures/profiles_tests/360_360_200000.json @@ -1 +1 @@ -{"Width":360,"Height":360,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":360,"height":360,"bitrate":100000,"fps":0,"quality":27},{"name":"360p0","width":360,"height":360,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":360,"Height":360,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":360,"height":360,"bitrate":100000,"fps":0,"quality":27},{"name":"360p0","width":360,"height":360,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/360_558_1100000.json b/video/fixtures/profiles_tests/360_558_1100000.json index 9518ac8bb..b7cf382d3 100644 --- a/video/fixtures/profiles_tests/360_558_1100000.json +++ b/video/fixtures/profiles_tests/360_558_1100000.json @@ -1 +1 @@ -{"Width":360,"Height":558,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"558p0","width":360,"height":558,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":360,"Height":558,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"558p0","width":360,"height":558,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/360_640_2500000.json b/video/fixtures/profiles_tests/360_640_2500000.json index 693b3f7d4..820b6f820 100644 --- a/video/fixtures/profiles_tests/360_640_2500000.json +++ b/video/fixtures/profiles_tests/360_640_2500000.json @@ -1 +1 @@ -{"Width":360,"Height":640,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":360,"height":640,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":360,"Height":640,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":360,"height":640,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/360_640_500000.json b/video/fixtures/profiles_tests/360_640_500000.json index 80a32dc46..f90720d66 100644 --- a/video/fixtures/profiles_tests/360_640_500000.json +++ b/video/fixtures/profiles_tests/360_640_500000.json @@ -1 +1 @@ -{"Width":360,"Height":640,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":360,"height":640,"bitrate":250000,"fps":0,"quality":27},{"name":"640p0","width":360,"height":640,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":360,"Height":640,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":360,"height":640,"bitrate":250000,"fps":0,"quality":27},{"name":"640p0","width":360,"height":640,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/368_600_1200000.json b/video/fixtures/profiles_tests/368_600_1200000.json index fc98477c0..1d1c555b2 100644 --- a/video/fixtures/profiles_tests/368_600_1200000.json +++ b/video/fixtures/profiles_tests/368_600_1200000.json @@ -1 +1 @@ -{"Width":368,"Height":600,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":368,"height":600,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":368,"Height":600,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":368,"height":600,"bitrate":1440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/368_640_500000.json b/video/fixtures/profiles_tests/368_640_500000.json index eee123dbf..f66eec348 100644 --- a/video/fixtures/profiles_tests/368_640_500000.json +++ b/video/fixtures/profiles_tests/368_640_500000.json @@ -1 +1 @@ -{"Width":368,"Height":640,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":250000,"fps":0,"quality":27},{"name":"640p0","width":368,"height":640,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":368,"Height":640,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":250000,"fps":0,"quality":27},{"name":"640p0","width":368,"height":640,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/368_640_600000.json b/video/fixtures/profiles_tests/368_640_600000.json index 4ac67e90f..c73a6bae8 100644 --- a/video/fixtures/profiles_tests/368_640_600000.json +++ b/video/fixtures/profiles_tests/368_640_600000.json @@ -1 +1 @@ -{"Width":368,"Height":640,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":300000,"fps":0,"quality":27},{"name":"640p0","width":368,"height":640,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":368,"Height":640,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":300000,"fps":0,"quality":27},{"name":"640p0","width":368,"height":640,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/368_640_900000.json b/video/fixtures/profiles_tests/368_640_900000.json index 2f3d80578..cc9e9102e 100644 --- a/video/fixtures/profiles_tests/368_640_900000.json +++ b/video/fixtures/profiles_tests/368_640_900000.json @@ -1 +1 @@ -{"Width":368,"Height":640,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":450000,"fps":0,"quality":27},{"name":"640p0","width":368,"height":640,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":368,"Height":640,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":368,"height":640,"bitrate":450000,"fps":0,"quality":27},{"name":"640p0","width":368,"height":640,"bitrate":1080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/368_656_1400000.json b/video/fixtures/profiles_tests/368_656_1400000.json index 52f3003f4..01be67d74 100644 --- a/video/fixtures/profiles_tests/368_656_1400000.json +++ b/video/fixtures/profiles_tests/368_656_1400000.json @@ -1 +1 @@ -{"Width":368,"Height":656,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"656p0","width":368,"height":656,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":368,"Height":656,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"656p0","width":368,"height":656,"bitrate":1680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/380_640_400000.json b/video/fixtures/profiles_tests/380_640_400000.json index 57db55151..e69bcbc2b 100644 --- a/video/fixtures/profiles_tests/380_640_400000.json +++ b/video/fixtures/profiles_tests/380_640_400000.json @@ -1 +1 @@ -{"Width":380,"Height":640,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":380,"height":640,"bitrate":200000,"fps":0,"quality":27},{"name":"640p0","width":380,"height":640,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":380,"Height":640,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":380,"height":640,"bitrate":200000,"fps":0,"quality":27},{"name":"640p0","width":380,"height":640,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/382_690_1200000.json b/video/fixtures/profiles_tests/382_690_1200000.json index 596e37de6..f6e6fdb21 100644 --- a/video/fixtures/profiles_tests/382_690_1200000.json +++ b/video/fixtures/profiles_tests/382_690_1200000.json @@ -1 +1 @@ -{"Width":382,"Height":690,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"690p0","width":382,"height":690,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":382,"Height":690,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"690p0","width":382,"height":690,"bitrate":1440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_1644_7100000.json b/video/fixtures/profiles_tests/3840_1644_7100000.json index 8b246c1be..372a358a0 100644 --- a/video/fixtures/profiles_tests/3840_1644_7100000.json +++ b/video/fixtures/profiles_tests/3840_1644_7100000.json @@ -1 +1 @@ -{"Width":3840,"Height":1644,"Bitrate":7100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":310948,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1243795,"fps":0,"quality":27},{"name":"1644p0","width":3840,"height":1644,"bitrate":7100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":1644,"Bitrate":7100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":310948,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1243795,"fps":0,"quality":27},{"name":"1644p0","width":3840,"height":1644,"bitrate":8520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_10300000.json b/video/fixtures/profiles_tests/3840_2160_10300000.json index 50ff0bd76..35987cf62 100644 --- a/video/fixtures/profiles_tests/3840_2160_10300000.json +++ b/video/fixtures/profiles_tests/3840_2160_10300000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":343333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1373333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":343333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1373333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":12360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_107800000.json b/video/fixtures/profiles_tests/3840_2160_107800000.json index e8648f4e8..243d85909 100644 --- a/video/fixtures/profiles_tests/3840_2160_107800000.json +++ b/video/fixtures/profiles_tests/3840_2160_107800000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":107800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":107800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":107800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":129360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_18300000.json b/video/fixtures/profiles_tests/3840_2160_18300000.json index a4ac6ab1a..19f951a17 100644 --- a/video/fixtures/profiles_tests/3840_2160_18300000.json +++ b/video/fixtures/profiles_tests/3840_2160_18300000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":18300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":610000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2440000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":18300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":18300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":610000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2440000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":21960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_20000000.json b/video/fixtures/profiles_tests/3840_2160_20000000.json index 45c2a231b..027631c4b 100644 --- a/video/fixtures/profiles_tests/3840_2160_20000000.json +++ b/video/fixtures/profiles_tests/3840_2160_20000000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":20000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":666666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2666666,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":20000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":20000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":666666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2666666,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":24000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_20200000.json b/video/fixtures/profiles_tests/3840_2160_20200000.json index 97ba65958..a180e5559 100644 --- a/video/fixtures/profiles_tests/3840_2160_20200000.json +++ b/video/fixtures/profiles_tests/3840_2160_20200000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":20200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":673333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2693333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":20200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":20200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":673333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2693333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":24240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_20700000.json b/video/fixtures/profiles_tests/3840_2160_20700000.json index 2f25984a5..03b0149c2 100644 --- a/video/fixtures/profiles_tests/3840_2160_20700000.json +++ b/video/fixtures/profiles_tests/3840_2160_20700000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":20700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":690000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2760000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":20700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":20700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":690000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2760000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":24840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_21700000.json b/video/fixtures/profiles_tests/3840_2160_21700000.json index 90e6136ea..dcec20eb8 100644 --- a/video/fixtures/profiles_tests/3840_2160_21700000.json +++ b/video/fixtures/profiles_tests/3840_2160_21700000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":21700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":723333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2893333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":21700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":21700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":723333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":2893333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":26040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_23200000.json b/video/fixtures/profiles_tests/3840_2160_23200000.json index c9c2844b6..b7cf0cc59 100644 --- a/video/fixtures/profiles_tests/3840_2160_23200000.json +++ b/video/fixtures/profiles_tests/3840_2160_23200000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":23200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":773333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3093333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":23200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":23200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":773333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3093333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":27840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_23300000.json b/video/fixtures/profiles_tests/3840_2160_23300000.json index b58c7fe3b..c887c6a5c 100644 --- a/video/fixtures/profiles_tests/3840_2160_23300000.json +++ b/video/fixtures/profiles_tests/3840_2160_23300000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":23300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":776666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3106666,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":23300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":23300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":776666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3106666,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":27960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_24300000.json b/video/fixtures/profiles_tests/3840_2160_24300000.json index 3b0d38963..f13f96738 100644 --- a/video/fixtures/profiles_tests/3840_2160_24300000.json +++ b/video/fixtures/profiles_tests/3840_2160_24300000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":24300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":810000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3240000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":24300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":24300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":810000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3240000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":29160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_24400000.json b/video/fixtures/profiles_tests/3840_2160_24400000.json index ada1e6702..1d3367281 100644 --- a/video/fixtures/profiles_tests/3840_2160_24400000.json +++ b/video/fixtures/profiles_tests/3840_2160_24400000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":24400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":813333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3253333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":24400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":24400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":813333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3253333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":29280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_24600000.json b/video/fixtures/profiles_tests/3840_2160_24600000.json index 0dc5174ea..9ed3337b8 100644 --- a/video/fixtures/profiles_tests/3840_2160_24600000.json +++ b/video/fixtures/profiles_tests/3840_2160_24600000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":24600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":820000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3280000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":24600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":24600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":820000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3280000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":29520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_26900000.json b/video/fixtures/profiles_tests/3840_2160_26900000.json index 36e41ea66..16d60a07f 100644 --- a/video/fixtures/profiles_tests/3840_2160_26900000.json +++ b/video/fixtures/profiles_tests/3840_2160_26900000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":26900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":896666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3586666,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":26900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":26900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":896666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3586666,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":32280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_29200000.json b/video/fixtures/profiles_tests/3840_2160_29200000.json index a26afbd94..0b10cdb52 100644 --- a/video/fixtures/profiles_tests/3840_2160_29200000.json +++ b/video/fixtures/profiles_tests/3840_2160_29200000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":29200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":973333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3893333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":29200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":29200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":973333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3893333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":35040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_37400000.json b/video/fixtures/profiles_tests/3840_2160_37400000.json index 8527c3e2a..0d011a815 100644 --- a/video/fixtures/profiles_tests/3840_2160_37400000.json +++ b/video/fixtures/profiles_tests/3840_2160_37400000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":37400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":37400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":37400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":44880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_37700000.json b/video/fixtures/profiles_tests/3840_2160_37700000.json index cf2f1780d..e81e13026 100644 --- a/video/fixtures/profiles_tests/3840_2160_37700000.json +++ b/video/fixtures/profiles_tests/3840_2160_37700000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":37700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":37700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":37700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":45240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_500000.json b/video/fixtures/profiles_tests/3840_2160_500000.json index 55ace561f..a6f47910c 100644 --- a/video/fixtures/profiles_tests/3840_2160_500000.json +++ b/video/fixtures/profiles_tests/3840_2160_500000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":3840,"height":2160,"bitrate":250000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":3840,"height":2160,"bitrate":250000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_53000000.json b/video/fixtures/profiles_tests/3840_2160_53000000.json index 7fad362c9..3b4e9e2d3 100644 --- a/video/fixtures/profiles_tests/3840_2160_53000000.json +++ b/video/fixtures/profiles_tests/3840_2160_53000000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":53000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":53000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":53000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":63600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_5600000.json b/video/fixtures/profiles_tests/3840_2160_5600000.json index 572a715db..d2040b284 100644 --- a/video/fixtures/profiles_tests/3840_2160_5600000.json +++ b/video/fixtures/profiles_tests/3840_2160_5600000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":5600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":186666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":746666,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":5600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":5600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":186666,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":746666,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":6720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_56300000.json b/video/fixtures/profiles_tests/3840_2160_56300000.json index 6a3ac86ed..2ce713cf9 100644 --- a/video/fixtures/profiles_tests/3840_2160_56300000.json +++ b/video/fixtures/profiles_tests/3840_2160_56300000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":56300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":56300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":56300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":67560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_59100000.json b/video/fixtures/profiles_tests/3840_2160_59100000.json index 5f997d95f..4e13c1564 100644 --- a/video/fixtures/profiles_tests/3840_2160_59100000.json +++ b/video/fixtures/profiles_tests/3840_2160_59100000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":59100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":59100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":59100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":70920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_59800000.json b/video/fixtures/profiles_tests/3840_2160_59800000.json index adf4932df..b2acd28a7 100644 --- a/video/fixtures/profiles_tests/3840_2160_59800000.json +++ b/video/fixtures/profiles_tests/3840_2160_59800000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":59800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":59800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":59800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":71760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_62600000.json b/video/fixtures/profiles_tests/3840_2160_62600000.json index 6ee42b112..389de4da7 100644 --- a/video/fixtures/profiles_tests/3840_2160_62600000.json +++ b/video/fixtures/profiles_tests/3840_2160_62600000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":62600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":62600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":62600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":75120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_6400000.json b/video/fixtures/profiles_tests/3840_2160_6400000.json index 2ed067c98..193be72e9 100644 --- a/video/fixtures/profiles_tests/3840_2160_6400000.json +++ b/video/fixtures/profiles_tests/3840_2160_6400000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":6400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":213333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":853333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":6400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":6400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":213333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":853333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":7680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_79200000.json b/video/fixtures/profiles_tests/3840_2160_79200000.json index b39ff335a..ca876b741 100644 --- a/video/fixtures/profiles_tests/3840_2160_79200000.json +++ b/video/fixtures/profiles_tests/3840_2160_79200000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":79200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":79200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":79200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":95040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_79800000.json b/video/fixtures/profiles_tests/3840_2160_79800000.json index 6d1460d75..c5ef08412 100644 --- a/video/fixtures/profiles_tests/3840_2160_79800000.json +++ b/video/fixtures/profiles_tests/3840_2160_79800000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":79800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":79800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":79800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":95760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/3840_2160_8800000.json b/video/fixtures/profiles_tests/3840_2160_8800000.json index 699ac6c7c..f8f63bde3 100644 --- a/video/fixtures/profiles_tests/3840_2160_8800000.json +++ b/video/fixtures/profiles_tests/3840_2160_8800000.json @@ -1 +1 @@ -{"Width":3840,"Height":2160,"Bitrate":8800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":293333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1173333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":8800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":3840,"Height":2160,"Bitrate":8800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":293333,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1173333,"fps":0,"quality":27},{"name":"2160p0","width":3840,"height":2160,"bitrate":10560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/4000_4000_10300000.json b/video/fixtures/profiles_tests/4000_4000_10300000.json index 5b84f7c4e..984f2dd4f 100644 --- a/video/fixtures/profiles_tests/4000_4000_10300000.json +++ b/video/fixtures/profiles_tests/4000_4000_10300000.json @@ -1 +1 @@ -{"Width":4000,"Height":4000,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":177984,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":711936,"fps":0,"quality":27},{"name":"4000p0","width":4000,"height":4000,"bitrate":10300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":4000,"Height":4000,"Bitrate":10300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":177984,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":711936,"fps":0,"quality":27},{"name":"4000p0","width":4000,"height":4000,"bitrate":12360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/400_224_100000.json b/video/fixtures/profiles_tests/400_224_100000.json index eb0f08b4a..54fd2ab12 100644 --- a/video/fixtures/profiles_tests/400_224_100000.json +++ b/video/fixtures/profiles_tests/400_224_100000.json @@ -1 +1 @@ -{"Width":400,"Height":224,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":400,"height":224,"bitrate":50000,"fps":0,"quality":27},{"name":"224p0","width":400,"height":224,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":400,"Height":224,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":400,"height":224,"bitrate":50000,"fps":0,"quality":27},{"name":"224p0","width":400,"height":224,"bitrate":120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/400_400_3500000.json b/video/fixtures/profiles_tests/400_400_3500000.json index 7684c952e..08b0f95a8 100644 --- a/video/fixtures/profiles_tests/400_400_3500000.json +++ b/video/fixtures/profiles_tests/400_400_3500000.json @@ -1 +1 @@ -{"Width":400,"Height":400,"Bitrate":3500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"400p0","width":400,"height":400,"bitrate":3500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":400,"Height":400,"Bitrate":3500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"400p0","width":400,"height":400,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/400_880_900000.json b/video/fixtures/profiles_tests/400_880_900000.json index 0427dcd05..da34b1535 100644 --- a/video/fixtures/profiles_tests/400_880_900000.json +++ b/video/fixtures/profiles_tests/400_880_900000.json @@ -1 +1 @@ -{"Width":400,"Height":880,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":400,"height":880,"bitrate":450000,"fps":0,"quality":27},{"name":"880p0","width":400,"height":880,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":400,"Height":880,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":400,"height":880,"bitrate":450000,"fps":0,"quality":27},{"name":"880p0","width":400,"height":880,"bitrate":1080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/4096_2160_24400000.json b/video/fixtures/profiles_tests/4096_2160_24400000.json index 73e8d3c5e..7fd05651b 100644 --- a/video/fixtures/profiles_tests/4096_2160_24400000.json +++ b/video/fixtures/profiles_tests/4096_2160_24400000.json @@ -1 +1 @@ -{"Width":4096,"Height":2160,"Bitrate":24400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":762500,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3050000,"fps":0,"quality":27},{"name":"2160p0","width":4096,"height":2160,"bitrate":24400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":4096,"Height":2160,"Bitrate":24400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":762500,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":3050000,"fps":0,"quality":27},{"name":"2160p0","width":4096,"height":2160,"bitrate":29280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/4096_4096_23000000.json b/video/fixtures/profiles_tests/4096_4096_23000000.json index c2ca5095b..e67544579 100644 --- a/video/fixtures/profiles_tests/4096_4096_23000000.json +++ b/video/fixtures/profiles_tests/4096_4096_23000000.json @@ -1 +1 @@ -{"Width":4096,"Height":4096,"Bitrate":23000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":379028,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1516113,"fps":0,"quality":27},{"name":"4096p0","width":4096,"height":4096,"bitrate":23000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":4096,"Height":4096,"Bitrate":23000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":379028,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":1516113,"fps":0,"quality":27},{"name":"4096p0","width":4096,"height":4096,"bitrate":27600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/416_640_700000.json b/video/fixtures/profiles_tests/416_640_700000.json index a2b12e20f..a39993bd3 100644 --- a/video/fixtures/profiles_tests/416_640_700000.json +++ b/video/fixtures/profiles_tests/416_640_700000.json @@ -1 +1 @@ -{"Width":416,"Height":640,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":416,"height":640,"bitrate":350000,"fps":0,"quality":27},{"name":"640p0","width":416,"height":640,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":416,"Height":640,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":416,"height":640,"bitrate":350000,"fps":0,"quality":27},{"name":"640p0","width":416,"height":640,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/426_240_100000.json b/video/fixtures/profiles_tests/426_240_100000.json index d48d69690..62c7aafbc 100644 --- a/video/fixtures/profiles_tests/426_240_100000.json +++ b/video/fixtures/profiles_tests/426_240_100000.json @@ -1 +1 @@ -{"Width":426,"Height":240,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":426,"height":240,"bitrate":50000,"fps":0,"quality":27},{"name":"240p0","width":426,"height":240,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":426,"Height":240,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":426,"height":240,"bitrate":50000,"fps":0,"quality":27},{"name":"240p0","width":426,"height":240,"bitrate":120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/448_768_2100000.json b/video/fixtures/profiles_tests/448_768_2100000.json index cc71f3c4c..c347e317b 100644 --- a/video/fixtures/profiles_tests/448_768_2100000.json +++ b/video/fixtures/profiles_tests/448_768_2100000.json @@ -1 +1 @@ -{"Width":448,"Height":768,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"768p0","width":448,"height":768,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":448,"Height":768,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"768p0","width":448,"height":768,"bitrate":2520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/450_450_800000.json b/video/fixtures/profiles_tests/450_450_800000.json index 71a90d41f..afeaed97a 100644 --- a/video/fixtures/profiles_tests/450_450_800000.json +++ b/video/fixtures/profiles_tests/450_450_800000.json @@ -1 +1 @@ -{"Width":450,"Height":450,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":450,"height":450,"bitrate":400000,"fps":0,"quality":27},{"name":"450p0","width":450,"height":450,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":450,"Height":450,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":450,"height":450,"bitrate":400000,"fps":0,"quality":27},{"name":"450p0","width":450,"height":450,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/458_512_800000.json b/video/fixtures/profiles_tests/458_512_800000.json index db4efcb86..034044e95 100644 --- a/video/fixtures/profiles_tests/458_512_800000.json +++ b/video/fixtures/profiles_tests/458_512_800000.json @@ -1 +1 @@ -{"Width":458,"Height":512,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":458,"height":512,"bitrate":400000,"fps":0,"quality":27},{"name":"512p0","width":458,"height":512,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":458,"Height":512,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":458,"height":512,"bitrate":400000,"fps":0,"quality":27},{"name":"512p0","width":458,"height":512,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/460_352_200000.json b/video/fixtures/profiles_tests/460_352_200000.json index e49dda2cb..e28dd2dfd 100644 --- a/video/fixtures/profiles_tests/460_352_200000.json +++ b/video/fixtures/profiles_tests/460_352_200000.json @@ -1 +1 @@ -{"Width":460,"Height":352,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":460,"height":352,"bitrate":100000,"fps":0,"quality":27},{"name":"352p0","width":460,"height":352,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":460,"Height":352,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":460,"height":352,"bitrate":100000,"fps":0,"quality":27},{"name":"352p0","width":460,"height":352,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/460_640_500000.json b/video/fixtures/profiles_tests/460_640_500000.json index d399646b5..4863613ff 100644 --- a/video/fixtures/profiles_tests/460_640_500000.json +++ b/video/fixtures/profiles_tests/460_640_500000.json @@ -1 +1 @@ -{"Width":460,"Height":640,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":460,"height":640,"bitrate":250000,"fps":0,"quality":27},{"name":"640p0","width":460,"height":640,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":460,"Height":640,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":460,"height":640,"bitrate":250000,"fps":0,"quality":27},{"name":"640p0","width":460,"height":640,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/460_816_800000.json b/video/fixtures/profiles_tests/460_816_800000.json index 7dce97299..6f30fbe43 100644 --- a/video/fixtures/profiles_tests/460_816_800000.json +++ b/video/fixtures/profiles_tests/460_816_800000.json @@ -1 +1 @@ -{"Width":460,"Height":816,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":460,"height":816,"bitrate":400000,"fps":0,"quality":27},{"name":"816p0","width":460,"height":816,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":460,"Height":816,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":460,"height":816,"bitrate":400000,"fps":0,"quality":27},{"name":"816p0","width":460,"height":816,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/464_848_1100000.json b/video/fixtures/profiles_tests/464_848_1100000.json index 31ebcfc56..4daba7336 100644 --- a/video/fixtures/profiles_tests/464_848_1100000.json +++ b/video/fixtures/profiles_tests/464_848_1100000.json @@ -1 +1 @@ -{"Width":464,"Height":848,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":772934,"fps":0,"quality":27},{"name":"848p0","width":464,"height":848,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":464,"Height":848,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":772934,"fps":0,"quality":27},{"name":"848p0","width":464,"height":848,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/464_848_1400000.json b/video/fixtures/profiles_tests/464_848_1400000.json index e34becb64..54d0c66b7 100644 --- a/video/fixtures/profiles_tests/464_848_1400000.json +++ b/video/fixtures/profiles_tests/464_848_1400000.json @@ -1 +1 @@ -{"Width":464,"Height":848,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":983734,"fps":0,"quality":27},{"name":"848p0","width":464,"height":848,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":464,"Height":848,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":983734,"fps":0,"quality":27},{"name":"848p0","width":464,"height":848,"bitrate":1680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/464_848_1600000.json b/video/fixtures/profiles_tests/464_848_1600000.json index f95fc7acf..6a2b92fd6 100644 --- a/video/fixtures/profiles_tests/464_848_1600000.json +++ b/video/fixtures/profiles_tests/464_848_1600000.json @@ -1 +1 @@ -{"Width":464,"Height":848,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"848p0","width":464,"height":848,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":464,"Height":848,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"848p0","width":464,"height":848,"bitrate":1920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_264_700000.json b/video/fixtures/profiles_tests/480_264_700000.json index fc20c130b..ed422b322 100644 --- a/video/fixtures/profiles_tests/480_264_700000.json +++ b/video/fixtures/profiles_tests/480_264_700000.json @@ -1 +1 @@ -{"Width":480,"Height":264,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":264,"bitrate":350000,"fps":0,"quality":27},{"name":"264p0","width":480,"height":264,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":264,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":264,"bitrate":350000,"fps":0,"quality":27},{"name":"264p0","width":480,"height":264,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_270_300000.json b/video/fixtures/profiles_tests/480_270_300000.json index 5b1a13f95..d7b379ccf 100644 --- a/video/fixtures/profiles_tests/480_270_300000.json +++ b/video/fixtures/profiles_tests/480_270_300000.json @@ -1 +1 @@ -{"Width":480,"Height":270,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":270,"bitrate":150000,"fps":0,"quality":27},{"name":"270p0","width":480,"height":270,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":270,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":270,"bitrate":150000,"fps":0,"quality":27},{"name":"270p0","width":480,"height":270,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_336_500000.json b/video/fixtures/profiles_tests/480_336_500000.json index 49bf93a23..2f18c2e6a 100644 --- a/video/fixtures/profiles_tests/480_336_500000.json +++ b/video/fixtures/profiles_tests/480_336_500000.json @@ -1 +1 @@ -{"Width":480,"Height":336,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":336,"bitrate":250000,"fps":0,"quality":27},{"name":"336p0","width":480,"height":336,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":336,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":336,"bitrate":250000,"fps":0,"quality":27},{"name":"336p0","width":480,"height":336,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_480_2200000.json b/video/fixtures/profiles_tests/480_480_2200000.json index cb50bc8e8..1724d8849 100644 --- a/video/fixtures/profiles_tests/480_480_2200000.json +++ b/video/fixtures/profiles_tests/480_480_2200000.json @@ -1 +1 @@ -{"Width":480,"Height":480,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"480p0","width":480,"height":480,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":480,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"480p0","width":480,"height":480,"bitrate":2640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_480_500000.json b/video/fixtures/profiles_tests/480_480_500000.json index 022fed308..3234460c0 100644 --- a/video/fixtures/profiles_tests/480_480_500000.json +++ b/video/fixtures/profiles_tests/480_480_500000.json @@ -1 +1 @@ -{"Width":480,"Height":480,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":480,"bitrate":250000,"fps":0,"quality":27},{"name":"480p0","width":480,"height":480,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":480,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":480,"bitrate":250000,"fps":0,"quality":27},{"name":"480p0","width":480,"height":480,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_504_400000.json b/video/fixtures/profiles_tests/480_504_400000.json index a52d2da4b..6e5b806c5 100644 --- a/video/fixtures/profiles_tests/480_504_400000.json +++ b/video/fixtures/profiles_tests/480_504_400000.json @@ -1 +1 @@ -{"Width":480,"Height":504,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":504,"bitrate":200000,"fps":0,"quality":27},{"name":"504p0","width":480,"height":504,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":504,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":504,"bitrate":200000,"fps":0,"quality":27},{"name":"504p0","width":480,"height":504,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_600_300000.json b/video/fixtures/profiles_tests/480_600_300000.json index 33c85206d..cc9beb7a5 100644 --- a/video/fixtures/profiles_tests/480_600_300000.json +++ b/video/fixtures/profiles_tests/480_600_300000.json @@ -1 +1 @@ -{"Width":480,"Height":600,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":150000,"fps":0,"quality":27},{"name":"600p0","width":480,"height":600,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":600,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":150000,"fps":0,"quality":27},{"name":"600p0","width":480,"height":600,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_600_400000.json b/video/fixtures/profiles_tests/480_600_400000.json index c3c860076..17addecbc 100644 --- a/video/fixtures/profiles_tests/480_600_400000.json +++ b/video/fixtures/profiles_tests/480_600_400000.json @@ -1 +1 @@ -{"Width":480,"Height":600,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":200000,"fps":0,"quality":27},{"name":"600p0","width":480,"height":600,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":600,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":200000,"fps":0,"quality":27},{"name":"600p0","width":480,"height":600,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_600_500000.json b/video/fixtures/profiles_tests/480_600_500000.json index e813c3503..b85561f37 100644 --- a/video/fixtures/profiles_tests/480_600_500000.json +++ b/video/fixtures/profiles_tests/480_600_500000.json @@ -1 +1 @@ -{"Width":480,"Height":600,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":250000,"fps":0,"quality":27},{"name":"600p0","width":480,"height":600,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":600,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":600,"bitrate":250000,"fps":0,"quality":27},{"name":"600p0","width":480,"height":600,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_664_500000.json b/video/fixtures/profiles_tests/480_664_500000.json index 7d44e4bc4..95b3c70f0 100644 --- a/video/fixtures/profiles_tests/480_664_500000.json +++ b/video/fixtures/profiles_tests/480_664_500000.json @@ -1 +1 @@ -{"Width":480,"Height":664,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":664,"bitrate":250000,"fps":0,"quality":27},{"name":"664p0","width":480,"height":664,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":664,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":664,"bitrate":250000,"fps":0,"quality":27},{"name":"664p0","width":480,"height":664,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_672_600000.json b/video/fixtures/profiles_tests/480_672_600000.json index 0e49ab698..4bf520cbb 100644 --- a/video/fixtures/profiles_tests/480_672_600000.json +++ b/video/fixtures/profiles_tests/480_672_600000.json @@ -1 +1 @@ -{"Width":480,"Height":672,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":672,"bitrate":300000,"fps":0,"quality":27},{"name":"672p0","width":480,"height":672,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":672,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":672,"bitrate":300000,"fps":0,"quality":27},{"name":"672p0","width":480,"height":672,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_724_500000.json b/video/fixtures/profiles_tests/480_724_500000.json index c7444860b..36848d7cf 100644 --- a/video/fixtures/profiles_tests/480_724_500000.json +++ b/video/fixtures/profiles_tests/480_724_500000.json @@ -1 +1 @@ -{"Width":480,"Height":724,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":724,"bitrate":250000,"fps":0,"quality":27},{"name":"724p0","width":480,"height":724,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":724,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":724,"bitrate":250000,"fps":0,"quality":27},{"name":"724p0","width":480,"height":724,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_852_1000000.json b/video/fixtures/profiles_tests/480_852_1000000.json index 0d212fcaa..1f559086f 100644 --- a/video/fixtures/profiles_tests/480_852_1000000.json +++ b/video/fixtures/profiles_tests/480_852_1000000.json @@ -1 +1 @@ -{"Width":480,"Height":852,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":500000,"fps":0,"quality":27},{"name":"852p0","width":480,"height":852,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":852,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":500000,"fps":0,"quality":27},{"name":"852p0","width":480,"height":852,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_852_300000.json b/video/fixtures/profiles_tests/480_852_300000.json index 8d611db0a..726c7849d 100644 --- a/video/fixtures/profiles_tests/480_852_300000.json +++ b/video/fixtures/profiles_tests/480_852_300000.json @@ -1 +1 @@ -{"Width":480,"Height":852,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":150000,"fps":0,"quality":27},{"name":"852p0","width":480,"height":852,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":852,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":150000,"fps":0,"quality":27},{"name":"852p0","width":480,"height":852,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_852_500000.json b/video/fixtures/profiles_tests/480_852_500000.json index 2d304cceb..2a7d96c39 100644 --- a/video/fixtures/profiles_tests/480_852_500000.json +++ b/video/fixtures/profiles_tests/480_852_500000.json @@ -1 +1 @@ -{"Width":480,"Height":852,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":250000,"fps":0,"quality":27},{"name":"852p0","width":480,"height":852,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":852,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":852,"bitrate":250000,"fps":0,"quality":27},{"name":"852p0","width":480,"height":852,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_854_1100000.json b/video/fixtures/profiles_tests/480_854_1100000.json index 44eeb33b1..4777a077a 100644 --- a/video/fixtures/profiles_tests/480_854_1100000.json +++ b/video/fixtures/profiles_tests/480_854_1100000.json @@ -1 +1 @@ -{"Width":480,"Height":854,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":741920,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":854,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":741920,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_854_1700000.json b/video/fixtures/profiles_tests/480_854_1700000.json index ecf0a7744..72d76dedd 100644 --- a/video/fixtures/profiles_tests/480_854_1700000.json +++ b/video/fixtures/profiles_tests/480_854_1700000.json @@ -1 +1 @@ -{"Width":480,"Height":854,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":854,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":2040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_854_200000.json b/video/fixtures/profiles_tests/480_854_200000.json index a0b5cad46..332ccf363 100644 --- a/video/fixtures/profiles_tests/480_854_200000.json +++ b/video/fixtures/profiles_tests/480_854_200000.json @@ -1 +1 @@ -{"Width":480,"Height":854,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":100000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":854,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":100000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_854_4300000.json b/video/fixtures/profiles_tests/480_854_4300000.json index c06753087..3ce92ca35 100644 --- a/video/fixtures/profiles_tests/480_854_4300000.json +++ b/video/fixtures/profiles_tests/480_854_4300000.json @@ -1 +1 @@ -{"Width":480,"Height":854,"Bitrate":4300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":4300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":854,"Bitrate":4300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":5160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_854_500000.json b/video/fixtures/profiles_tests/480_854_500000.json index 51275fd6f..93089ddd6 100644 --- a/video/fixtures/profiles_tests/480_854_500000.json +++ b/video/fixtures/profiles_tests/480_854_500000.json @@ -1 +1 @@ -{"Width":480,"Height":854,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":250000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":854,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":250000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_854_600000.json b/video/fixtures/profiles_tests/480_854_600000.json index 423175410..5f1468873 100644 --- a/video/fixtures/profiles_tests/480_854_600000.json +++ b/video/fixtures/profiles_tests/480_854_600000.json @@ -1 +1 @@ -{"Width":480,"Height":854,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":300000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":854,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":480,"height":854,"bitrate":300000,"fps":0,"quality":27},{"name":"854p0","width":480,"height":854,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/480_864_1600000.json b/video/fixtures/profiles_tests/480_864_1600000.json index 45af34889..efaa58691 100644 --- a/video/fixtures/profiles_tests/480_864_1600000.json +++ b/video/fixtures/profiles_tests/480_864_1600000.json @@ -1 +1 @@ -{"Width":480,"Height":864,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"864p0","width":480,"height":864,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":480,"Height":864,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"864p0","width":480,"height":864,"bitrate":1920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/498_280_200000.json b/video/fixtures/profiles_tests/498_280_200000.json index 3b5a23e51..282f85ceb 100644 --- a/video/fixtures/profiles_tests/498_280_200000.json +++ b/video/fixtures/profiles_tests/498_280_200000.json @@ -1 +1 @@ -{"Width":498,"Height":280,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":498,"height":280,"bitrate":100000,"fps":0,"quality":27},{"name":"280p0","width":498,"height":280,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":498,"Height":280,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":498,"height":280,"bitrate":100000,"fps":0,"quality":27},{"name":"280p0","width":498,"height":280,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/498_476_800000.json b/video/fixtures/profiles_tests/498_476_800000.json index 897ce82de..703ae6db5 100644 --- a/video/fixtures/profiles_tests/498_476_800000.json +++ b/video/fixtures/profiles_tests/498_476_800000.json @@ -1 +1 @@ -{"Width":498,"Height":476,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":498,"height":476,"bitrate":400000,"fps":0,"quality":27},{"name":"476p0","width":498,"height":476,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":498,"Height":476,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":498,"height":476,"bitrate":400000,"fps":0,"quality":27},{"name":"476p0","width":498,"height":476,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/500_500_100000.json b/video/fixtures/profiles_tests/500_500_100000.json index 015b77adc..4fbe68b94 100644 --- a/video/fixtures/profiles_tests/500_500_100000.json +++ b/video/fixtures/profiles_tests/500_500_100000.json @@ -1 +1 @@ -{"Width":500,"Height":500,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":500,"height":500,"bitrate":50000,"fps":0,"quality":27},{"name":"500p0","width":500,"height":500,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":500,"Height":500,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":500,"height":500,"bitrate":50000,"fps":0,"quality":27},{"name":"500p0","width":500,"height":500,"bitrate":120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/500_500_400000.json b/video/fixtures/profiles_tests/500_500_400000.json index 4ca2530bc..6c1f984f2 100644 --- a/video/fixtures/profiles_tests/500_500_400000.json +++ b/video/fixtures/profiles_tests/500_500_400000.json @@ -1 +1 @@ -{"Width":500,"Height":500,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":500,"height":500,"bitrate":200000,"fps":0,"quality":27},{"name":"500p0","width":500,"height":500,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":500,"Height":500,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":500,"height":500,"bitrate":200000,"fps":0,"quality":27},{"name":"500p0","width":500,"height":500,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/500_878_800000.json b/video/fixtures/profiles_tests/500_878_800000.json index d2e965fc9..064067a66 100644 --- a/video/fixtures/profiles_tests/500_878_800000.json +++ b/video/fixtures/profiles_tests/500_878_800000.json @@ -1 +1 @@ -{"Width":500,"Height":878,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":500,"height":878,"bitrate":400000,"fps":0,"quality":27},{"name":"878p0","width":500,"height":878,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":500,"Height":878,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":500,"height":878,"bitrate":400000,"fps":0,"quality":27},{"name":"878p0","width":500,"height":878,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/512_512_100000.json b/video/fixtures/profiles_tests/512_512_100000.json index b6d550585..836bdd3a7 100644 --- a/video/fixtures/profiles_tests/512_512_100000.json +++ b/video/fixtures/profiles_tests/512_512_100000.json @@ -1 +1 @@ -{"Width":512,"Height":512,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":512,"height":512,"bitrate":50000,"fps":0,"quality":27},{"name":"512p0","width":512,"height":512,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":512,"Height":512,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":512,"height":512,"bitrate":50000,"fps":0,"quality":27},{"name":"512p0","width":512,"height":512,"bitrate":120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/512_512_200000.json b/video/fixtures/profiles_tests/512_512_200000.json index 2d4c684eb..02bed4b1d 100644 --- a/video/fixtures/profiles_tests/512_512_200000.json +++ b/video/fixtures/profiles_tests/512_512_200000.json @@ -1 +1 @@ -{"Width":512,"Height":512,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":512,"height":512,"bitrate":100000,"fps":0,"quality":27},{"name":"512p0","width":512,"height":512,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":512,"Height":512,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":512,"height":512,"bitrate":100000,"fps":0,"quality":27},{"name":"512p0","width":512,"height":512,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/512_512_3300000.json b/video/fixtures/profiles_tests/512_512_3300000.json index 931175be8..d86560842 100644 --- a/video/fixtures/profiles_tests/512_512_3300000.json +++ b/video/fixtures/profiles_tests/512_512_3300000.json @@ -1 +1 @@ -{"Width":512,"Height":512,"Bitrate":3300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"512p0","width":512,"height":512,"bitrate":3300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":512,"Height":512,"Bitrate":3300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"512p0","width":512,"height":512,"bitrate":3960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/512_512_5200000.json b/video/fixtures/profiles_tests/512_512_5200000.json index d8db5988c..92f9a6ad5 100644 --- a/video/fixtures/profiles_tests/512_512_5200000.json +++ b/video/fixtures/profiles_tests/512_512_5200000.json @@ -1 +1 @@ -{"Width":512,"Height":512,"Bitrate":5200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"512p0","width":512,"height":512,"bitrate":5200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":512,"Height":512,"Bitrate":5200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"512p0","width":512,"height":512,"bitrate":6240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/528_848_300000.json b/video/fixtures/profiles_tests/528_848_300000.json index a621d00bf..1efa0a119 100644 --- a/video/fixtures/profiles_tests/528_848_300000.json +++ b/video/fixtures/profiles_tests/528_848_300000.json @@ -1 +1 @@ -{"Width":528,"Height":848,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":528,"height":848,"bitrate":150000,"fps":0,"quality":27},{"name":"848p0","width":528,"height":848,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":528,"Height":848,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":528,"height":848,"bitrate":150000,"fps":0,"quality":27},{"name":"848p0","width":528,"height":848,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/540_540_2400000.json b/video/fixtures/profiles_tests/540_540_2400000.json index aca34da68..16e7503a9 100644 --- a/video/fixtures/profiles_tests/540_540_2400000.json +++ b/video/fixtures/profiles_tests/540_540_2400000.json @@ -1 +1 @@ -{"Width":540,"Height":540,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"540p0","width":540,"height":540,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":540,"Height":540,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"540p0","width":540,"height":540,"bitrate":2880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/540_540_300000.json b/video/fixtures/profiles_tests/540_540_300000.json index 0587c11d3..df78f7ea3 100644 --- a/video/fixtures/profiles_tests/540_540_300000.json +++ b/video/fixtures/profiles_tests/540_540_300000.json @@ -1 +1 @@ -{"Width":540,"Height":540,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":540,"height":540,"bitrate":150000,"fps":0,"quality":27},{"name":"540p0","width":540,"height":540,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":540,"Height":540,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":540,"height":540,"bitrate":150000,"fps":0,"quality":27},{"name":"540p0","width":540,"height":540,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/540_540_400000.json b/video/fixtures/profiles_tests/540_540_400000.json index 33fe7afc2..117440aef 100644 --- a/video/fixtures/profiles_tests/540_540_400000.json +++ b/video/fixtures/profiles_tests/540_540_400000.json @@ -1 +1 @@ -{"Width":540,"Height":540,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":540,"height":540,"bitrate":200000,"fps":0,"quality":27},{"name":"540p0","width":540,"height":540,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":540,"Height":540,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":540,"height":540,"bitrate":200000,"fps":0,"quality":27},{"name":"540p0","width":540,"height":540,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/540_960_4400000.json b/video/fixtures/profiles_tests/540_960_4400000.json index 501aee26e..53d1496f1 100644 --- a/video/fixtures/profiles_tests/540_960_4400000.json +++ b/video/fixtures/profiles_tests/540_960_4400000.json @@ -1 +1 @@ -{"Width":540,"Height":960,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"960p0","width":540,"height":960,"bitrate":4400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":540,"Height":960,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"960p0","width":540,"height":960,"bitrate":5280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/540_960_700000.json b/video/fixtures/profiles_tests/540_960_700000.json index d303d606e..3087bada3 100644 --- a/video/fixtures/profiles_tests/540_960_700000.json +++ b/video/fixtures/profiles_tests/540_960_700000.json @@ -1 +1 @@ -{"Width":540,"Height":960,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":540,"height":960,"bitrate":350000,"fps":0,"quality":27},{"name":"960p0","width":540,"height":960,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":540,"Height":960,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":540,"height":960,"bitrate":350000,"fps":0,"quality":27},{"name":"960p0","width":540,"height":960,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_1700000.json b/video/fixtures/profiles_tests/544_960_1700000.json index 0a1d74b28..8e6695037 100644 --- a/video/fixtures/profiles_tests/544_960_1700000.json +++ b/video/fixtures/profiles_tests/544_960_1700000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":900000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":900000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_1900000.json b/video/fixtures/profiles_tests/544_960_1900000.json index b9279dcbc..957c6d7ee 100644 --- a/video/fixtures/profiles_tests/544_960_1900000.json +++ b/video/fixtures/profiles_tests/544_960_1900000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_2000000.json b/video/fixtures/profiles_tests/544_960_2000000.json index f80bb9880..a374f35a3 100644 --- a/video/fixtures/profiles_tests/544_960_2000000.json +++ b/video/fixtures/profiles_tests/544_960_2000000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_2200000.json b/video/fixtures/profiles_tests/544_960_2200000.json index 77b7bc52c..7dee6d646 100644 --- a/video/fixtures/profiles_tests/544_960_2200000.json +++ b/video/fixtures/profiles_tests/544_960_2200000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_2300000.json b/video/fixtures/profiles_tests/544_960_2300000.json index a59c8c8d3..79b528f0a 100644 --- a/video/fixtures/profiles_tests/544_960_2300000.json +++ b/video/fixtures/profiles_tests/544_960_2300000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_2800000.json b/video/fixtures/profiles_tests/544_960_2800000.json index b1f09795e..08f8196b2 100644 --- a/video/fixtures/profiles_tests/544_960_2800000.json +++ b/video/fixtures/profiles_tests/544_960_2800000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":2800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":3360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_700000.json b/video/fixtures/profiles_tests/544_960_700000.json index d0207a2ab..1c3e02b66 100644 --- a/video/fixtures/profiles_tests/544_960_700000.json +++ b/video/fixtures/profiles_tests/544_960_700000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":544,"height":960,"bitrate":350000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":544,"height":960,"bitrate":350000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/544_960_800000.json b/video/fixtures/profiles_tests/544_960_800000.json index fa247f982..e100e361a 100644 --- a/video/fixtures/profiles_tests/544_960_800000.json +++ b/video/fixtures/profiles_tests/544_960_800000.json @@ -1 +1 @@ -{"Width":544,"Height":960,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":544,"height":960,"bitrate":400000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":544,"Height":960,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":544,"height":960,"bitrate":400000,"fps":0,"quality":27},{"name":"960p0","width":544,"height":960,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/552_640_5900000.json b/video/fixtures/profiles_tests/552_640_5900000.json index 6c78fdf34..eed5a42f4 100644 --- a/video/fixtures/profiles_tests/552_640_5900000.json +++ b/video/fixtures/profiles_tests/552_640_5900000.json @@ -1 +1 @@ -{"Width":552,"Height":640,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":552,"height":640,"bitrate":5900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":552,"Height":640,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":552,"height":640,"bitrate":7080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/558_540_200000.json b/video/fixtures/profiles_tests/558_540_200000.json index 22569253e..7f544a510 100644 --- a/video/fixtures/profiles_tests/558_540_200000.json +++ b/video/fixtures/profiles_tests/558_540_200000.json @@ -1 +1 @@ -{"Width":558,"Height":540,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":558,"height":540,"bitrate":100000,"fps":0,"quality":27},{"name":"540p0","width":558,"height":540,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":558,"Height":540,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":558,"height":540,"bitrate":100000,"fps":0,"quality":27},{"name":"540p0","width":558,"height":540,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/558_560_3300000.json b/video/fixtures/profiles_tests/558_560_3300000.json index 359dcf10a..c2a2ec45b 100644 --- a/video/fixtures/profiles_tests/558_560_3300000.json +++ b/video/fixtures/profiles_tests/558_560_3300000.json @@ -1 +1 @@ -{"Width":558,"Height":560,"Bitrate":3300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"560p0","width":558,"height":560,"bitrate":3300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":558,"Height":560,"Bitrate":3300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"560p0","width":558,"height":560,"bitrate":3960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/568_320_700000.json b/video/fixtures/profiles_tests/568_320_700000.json index 1817054ac..53b1551fb 100644 --- a/video/fixtures/profiles_tests/568_320_700000.json +++ b/video/fixtures/profiles_tests/568_320_700000.json @@ -1 +1 @@ -{"Width":568,"Height":320,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":568,"height":320,"bitrate":350000,"fps":0,"quality":27},{"name":"320p0","width":568,"height":320,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":568,"Height":320,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":568,"height":320,"bitrate":350000,"fps":0,"quality":27},{"name":"320p0","width":568,"height":320,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/574_1024_10700000.json b/video/fixtures/profiles_tests/574_1024_10700000.json index fd1c97e03..e13c56eba 100644 --- a/video/fixtures/profiles_tests/574_1024_10700000.json +++ b/video/fixtures/profiles_tests/574_1024_10700000.json @@ -1 +1 @@ -{"Width":574,"Height":1024,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":574,"height":1024,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":574,"Height":1024,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":574,"height":1024,"bitrate":12840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/574_1024_11900000.json b/video/fixtures/profiles_tests/574_1024_11900000.json index 6a2ed3839..b6e7ef573 100644 --- a/video/fixtures/profiles_tests/574_1024_11900000.json +++ b/video/fixtures/profiles_tests/574_1024_11900000.json @@ -1 +1 @@ -{"Width":574,"Height":1024,"Bitrate":11900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":574,"height":1024,"bitrate":11900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":574,"Height":1024,"Bitrate":11900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":574,"height":1024,"bitrate":14280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_1100000.json b/video/fixtures/profiles_tests/576_1024_1100000.json index aca3e80d9..3ecd5cb85 100644 --- a/video/fixtures/profiles_tests/576_1024_1100000.json +++ b/video/fixtures/profiles_tests/576_1024_1100000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":515625,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":515625,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_1200000.json b/video/fixtures/profiles_tests/576_1024_1200000.json index e9c2a96eb..c863b261c 100644 --- a/video/fixtures/profiles_tests/576_1024_1200000.json +++ b/video/fixtures/profiles_tests/576_1024_1200000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":562500,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":562500,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_1400000.json b/video/fixtures/profiles_tests/576_1024_1400000.json index d1f2649ab..1a49742b1 100644 --- a/video/fixtures/profiles_tests/576_1024_1400000.json +++ b/video/fixtures/profiles_tests/576_1024_1400000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":656250,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":656250,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_1500000.json b/video/fixtures/profiles_tests/576_1024_1500000.json index d4f3074a4..2533883b1 100644 --- a/video/fixtures/profiles_tests/576_1024_1500000.json +++ b/video/fixtures/profiles_tests/576_1024_1500000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":703125,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":703125,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_1600000.json b/video/fixtures/profiles_tests/576_1024_1600000.json index 8430d17bc..06cdc85a4 100644 --- a/video/fixtures/profiles_tests/576_1024_1600000.json +++ b/video/fixtures/profiles_tests/576_1024_1600000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":750000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":750000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_1800000.json b/video/fixtures/profiles_tests/576_1024_1800000.json index 4a23d53c9..eebfbc1f7 100644 --- a/video/fixtures/profiles_tests/576_1024_1800000.json +++ b/video/fixtures/profiles_tests/576_1024_1800000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":843750,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":843750,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":2160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_200000.json b/video/fixtures/profiles_tests/576_1024_200000.json index 727812fab..084db5278 100644 --- a/video/fixtures/profiles_tests/576_1024_200000.json +++ b/video/fixtures/profiles_tests/576_1024_200000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":100000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":100000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_2200000.json b/video/fixtures/profiles_tests/576_1024_2200000.json index e8bb8b489..a8123469e 100644 --- a/video/fixtures/profiles_tests/576_1024_2200000.json +++ b/video/fixtures/profiles_tests/576_1024_2200000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":2640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_300000.json b/video/fixtures/profiles_tests/576_1024_300000.json index d63042b44..16874e354 100644 --- a/video/fixtures/profiles_tests/576_1024_300000.json +++ b/video/fixtures/profiles_tests/576_1024_300000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":150000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":150000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_400000.json b/video/fixtures/profiles_tests/576_1024_400000.json index 0bb0eb806..34281fd8c 100644 --- a/video/fixtures/profiles_tests/576_1024_400000.json +++ b/video/fixtures/profiles_tests/576_1024_400000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":200000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":200000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_4200000.json b/video/fixtures/profiles_tests/576_1024_4200000.json index 1f4455991..0d2ceb474 100644 --- a/video/fixtures/profiles_tests/576_1024_4200000.json +++ b/video/fixtures/profiles_tests/576_1024_4200000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":4200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":5040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_500000.json b/video/fixtures/profiles_tests/576_1024_500000.json index 7e2197397..d334dcf89 100644 --- a/video/fixtures/profiles_tests/576_1024_500000.json +++ b/video/fixtures/profiles_tests/576_1024_500000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":250000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":250000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_5900000.json b/video/fixtures/profiles_tests/576_1024_5900000.json index dc325ea4d..b8a1a6f9c 100644 --- a/video/fixtures/profiles_tests/576_1024_5900000.json +++ b/video/fixtures/profiles_tests/576_1024_5900000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":5900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":7080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_1024_600000.json b/video/fixtures/profiles_tests/576_1024_600000.json index 20112c1d4..e43aaa277 100644 --- a/video/fixtures/profiles_tests/576_1024_600000.json +++ b/video/fixtures/profiles_tests/576_1024_600000.json @@ -1 +1 @@ -{"Width":576,"Height":1024,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":300000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":1024,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":1024,"bitrate":300000,"fps":0,"quality":27},{"name":"1024p0","width":576,"height":1024,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_324_400000.json b/video/fixtures/profiles_tests/576_324_400000.json index 0f497a0ac..5b0d19d89 100644 --- a/video/fixtures/profiles_tests/576_324_400000.json +++ b/video/fixtures/profiles_tests/576_324_400000.json @@ -1 +1 @@ -{"Width":576,"Height":324,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":324,"bitrate":200000,"fps":0,"quality":27},{"name":"324p0","width":576,"height":324,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":324,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":324,"bitrate":200000,"fps":0,"quality":27},{"name":"324p0","width":576,"height":324,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_360_100000.json b/video/fixtures/profiles_tests/576_360_100000.json index e3d305d18..f8fd07ee1 100644 --- a/video/fixtures/profiles_tests/576_360_100000.json +++ b/video/fixtures/profiles_tests/576_360_100000.json @@ -1 +1 @@ -{"Width":576,"Height":360,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":360,"bitrate":50000,"fps":0,"quality":27},{"name":"360p0","width":576,"height":360,"bitrate":100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":360,"Bitrate":100000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":360,"bitrate":50000,"fps":0,"quality":27},{"name":"360p0","width":576,"height":360,"bitrate":120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_576_3100000.json b/video/fixtures/profiles_tests/576_576_3100000.json index 6c1cc3435..b2d351cae 100644 --- a/video/fixtures/profiles_tests/576_576_3100000.json +++ b/video/fixtures/profiles_tests/576_576_3100000.json @@ -1 +1 @@ -{"Width":576,"Height":576,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"576p0","width":576,"height":576,"bitrate":3100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":576,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"576p0","width":576,"height":576,"bitrate":3720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_576_700000.json b/video/fixtures/profiles_tests/576_576_700000.json index af4bd15af..e2bc30aac 100644 --- a/video/fixtures/profiles_tests/576_576_700000.json +++ b/video/fixtures/profiles_tests/576_576_700000.json @@ -1 +1 @@ -{"Width":576,"Height":576,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":576,"bitrate":350000,"fps":0,"quality":27},{"name":"576p0","width":576,"height":576,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":576,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":576,"bitrate":350000,"fps":0,"quality":27},{"name":"576p0","width":576,"height":576,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_640_400000.json b/video/fixtures/profiles_tests/576_640_400000.json index 7de00bf97..601be7f09 100644 --- a/video/fixtures/profiles_tests/576_640_400000.json +++ b/video/fixtures/profiles_tests/576_640_400000.json @@ -1 +1 @@ -{"Width":576,"Height":640,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":640,"bitrate":200000,"fps":0,"quality":27},{"name":"640p0","width":576,"height":640,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":640,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":640,"bitrate":200000,"fps":0,"quality":27},{"name":"640p0","width":576,"height":640,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_728_300000.json b/video/fixtures/profiles_tests/576_728_300000.json index 4551a631d..f1b5bf3e6 100644 --- a/video/fixtures/profiles_tests/576_728_300000.json +++ b/video/fixtures/profiles_tests/576_728_300000.json @@ -1 +1 @@ -{"Width":576,"Height":728,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":728,"bitrate":150000,"fps":0,"quality":27},{"name":"728p0","width":576,"height":728,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":728,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":728,"bitrate":150000,"fps":0,"quality":27},{"name":"728p0","width":576,"height":728,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_816_200000.json b/video/fixtures/profiles_tests/576_816_200000.json index 06a829a56..8b26d1353 100644 --- a/video/fixtures/profiles_tests/576_816_200000.json +++ b/video/fixtures/profiles_tests/576_816_200000.json @@ -1 +1 @@ -{"Width":576,"Height":816,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":816,"bitrate":100000,"fps":0,"quality":27},{"name":"816p0","width":576,"height":816,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":816,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":816,"bitrate":100000,"fps":0,"quality":27},{"name":"816p0","width":576,"height":816,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/576_896_400000.json b/video/fixtures/profiles_tests/576_896_400000.json index f747c9ce9..c0c46884b 100644 --- a/video/fixtures/profiles_tests/576_896_400000.json +++ b/video/fixtures/profiles_tests/576_896_400000.json @@ -1 +1 @@ -{"Width":576,"Height":896,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":896,"bitrate":200000,"fps":0,"quality":27},{"name":"896p0","width":576,"height":896,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":576,"Height":896,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":576,"height":896,"bitrate":200000,"fps":0,"quality":27},{"name":"896p0","width":576,"height":896,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/578_1028_500000.json b/video/fixtures/profiles_tests/578_1028_500000.json index 680d2a292..25faedd16 100644 --- a/video/fixtures/profiles_tests/578_1028_500000.json +++ b/video/fixtures/profiles_tests/578_1028_500000.json @@ -1 +1 @@ -{"Width":578,"Height":1028,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":578,"height":1028,"bitrate":250000,"fps":0,"quality":27},{"name":"1028p0","width":578,"height":1028,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":578,"Height":1028,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":578,"height":1028,"bitrate":250000,"fps":0,"quality":27},{"name":"1028p0","width":578,"height":1028,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/5920_3000_10400000.json b/video/fixtures/profiles_tests/5920_3000_10400000.json index 8dc4588a8..ad9df5ef7 100644 --- a/video/fixtures/profiles_tests/5920_3000_10400000.json +++ b/video/fixtures/profiles_tests/5920_3000_10400000.json @@ -1 +1 @@ -{"Width":5920,"Height":3000,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":161902,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":647610,"fps":0,"quality":27},{"name":"3000p0","width":5920,"height":3000,"bitrate":10400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":5920,"Height":3000,"Bitrate":10400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":161902,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":647610,"fps":0,"quality":27},{"name":"3000p0","width":5920,"height":3000,"bitrate":12480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/600_600_1500000.json b/video/fixtures/profiles_tests/600_600_1500000.json index 161b7d7ac..73523fc34 100644 --- a/video/fixtures/profiles_tests/600_600_1500000.json +++ b/video/fixtures/profiles_tests/600_600_1500000.json @@ -1 +1 @@ -{"Width":600,"Height":600,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":600,"height":600,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":600,"Height":600,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":600,"height":600,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/600_600_4400000.json b/video/fixtures/profiles_tests/600_600_4400000.json index e00fc45ee..8c0b05d8d 100644 --- a/video/fixtures/profiles_tests/600_600_4400000.json +++ b/video/fixtures/profiles_tests/600_600_4400000.json @@ -1 +1 @@ -{"Width":600,"Height":600,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":600,"height":600,"bitrate":4400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":600,"Height":600,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":600,"height":600,"bitrate":5280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/600_600_800000.json b/video/fixtures/profiles_tests/600_600_800000.json index ca2946df1..814c8e6a8 100644 --- a/video/fixtures/profiles_tests/600_600_800000.json +++ b/video/fixtures/profiles_tests/600_600_800000.json @@ -1 +1 @@ -{"Width":600,"Height":600,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":600,"height":600,"bitrate":400000,"fps":0,"quality":27},{"name":"600p0","width":600,"height":600,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":600,"Height":600,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":600,"height":600,"bitrate":400000,"fps":0,"quality":27},{"name":"600p0","width":600,"height":600,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/600_750_2500000.json b/video/fixtures/profiles_tests/600_750_2500000.json index 205db94fc..bfbfe9e41 100644 --- a/video/fixtures/profiles_tests/600_750_2500000.json +++ b/video/fixtures/profiles_tests/600_750_2500000.json @@ -1 +1 @@ -{"Width":600,"Height":750,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"750p0","width":600,"height":750,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":600,"Height":750,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"750p0","width":600,"height":750,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/608_1080_1100000.json b/video/fixtures/profiles_tests/608_1080_1100000.json index 025a0ae20..ebf30b3b2 100644 --- a/video/fixtures/profiles_tests/608_1080_1100000.json +++ b/video/fixtures/profiles_tests/608_1080_1100000.json @@ -1 +1 @@ -{"Width":608,"Height":1080,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":463157,"fps":0,"quality":27},{"name":"1080p0","width":608,"height":1080,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":608,"Height":1080,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":463157,"fps":0,"quality":27},{"name":"1080p0","width":608,"height":1080,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/608_1080_1200000.json b/video/fixtures/profiles_tests/608_1080_1200000.json index 4c65d8478..2afb60d4f 100644 --- a/video/fixtures/profiles_tests/608_1080_1200000.json +++ b/video/fixtures/profiles_tests/608_1080_1200000.json @@ -1 +1 @@ -{"Width":608,"Height":1080,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":505263,"fps":0,"quality":27},{"name":"1080p0","width":608,"height":1080,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":608,"Height":1080,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":505263,"fps":0,"quality":27},{"name":"1080p0","width":608,"height":1080,"bitrate":1440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/608_1080_1600000.json b/video/fixtures/profiles_tests/608_1080_1600000.json index 7e12565cf..b37d5eb7a 100644 --- a/video/fixtures/profiles_tests/608_1080_1600000.json +++ b/video/fixtures/profiles_tests/608_1080_1600000.json @@ -1 +1 @@ -{"Width":608,"Height":1080,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":673684,"fps":0,"quality":27},{"name":"1080p0","width":608,"height":1080,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":608,"Height":1080,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":673684,"fps":0,"quality":27},{"name":"1080p0","width":608,"height":1080,"bitrate":1920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/608_1080_200000.json b/video/fixtures/profiles_tests/608_1080_200000.json index 2628b26ba..a3b77979b 100644 --- a/video/fixtures/profiles_tests/608_1080_200000.json +++ b/video/fixtures/profiles_tests/608_1080_200000.json @@ -1 +1 @@ -{"Width":608,"Height":1080,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":608,"height":1080,"bitrate":100000,"fps":0,"quality":27},{"name":"1080p0","width":608,"height":1080,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":608,"Height":1080,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":608,"height":1080,"bitrate":100000,"fps":0,"quality":27},{"name":"1080p0","width":608,"height":1080,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/624_1280_1000000.json b/video/fixtures/profiles_tests/624_1280_1000000.json index 5b0151018..5aa78e192 100644 --- a/video/fixtures/profiles_tests/624_1280_1000000.json +++ b/video/fixtures/profiles_tests/624_1280_1000000.json @@ -1 +1 @@ -{"Width":624,"Height":1280,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":624,"height":1280,"bitrate":500000,"fps":0,"quality":27},{"name":"1280p0","width":624,"height":1280,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":624,"Height":1280,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":624,"height":1280,"bitrate":500000,"fps":0,"quality":27},{"name":"1280p0","width":624,"height":1280,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/624_526_700000.json b/video/fixtures/profiles_tests/624_526_700000.json index 7f4afb52a..ce5a0e56b 100644 --- a/video/fixtures/profiles_tests/624_526_700000.json +++ b/video/fixtures/profiles_tests/624_526_700000.json @@ -1 +1 @@ -{"Width":624,"Height":526,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":624,"height":526,"bitrate":350000,"fps":0,"quality":27},{"name":"526p0","width":624,"height":526,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":624,"Height":526,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":624,"height":526,"bitrate":350000,"fps":0,"quality":27},{"name":"526p0","width":624,"height":526,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/624_832_1600000.json b/video/fixtures/profiles_tests/624_832_1600000.json index 2e1d8a055..1899af626 100644 --- a/video/fixtures/profiles_tests/624_832_1600000.json +++ b/video/fixtures/profiles_tests/624_832_1600000.json @@ -1 +1 @@ -{"Width":624,"Height":832,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":852071,"fps":0,"quality":27},{"name":"832p0","width":624,"height":832,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":624,"Height":832,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":852071,"fps":0,"quality":27},{"name":"832p0","width":624,"height":832,"bitrate":1920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/628_698_200000.json b/video/fixtures/profiles_tests/628_698_200000.json index c7ab2affc..eaa58092a 100644 --- a/video/fixtures/profiles_tests/628_698_200000.json +++ b/video/fixtures/profiles_tests/628_698_200000.json @@ -1 +1 @@ -{"Width":628,"Height":698,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":628,"height":698,"bitrate":100000,"fps":0,"quality":27},{"name":"698p0","width":628,"height":698,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":628,"Height":698,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":628,"height":698,"bitrate":100000,"fps":0,"quality":27},{"name":"698p0","width":628,"height":698,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/636_1000_1400000.json b/video/fixtures/profiles_tests/636_1000_1400000.json index 918276588..9d2fb3fb1 100644 --- a/video/fixtures/profiles_tests/636_1000_1400000.json +++ b/video/fixtures/profiles_tests/636_1000_1400000.json @@ -1 +1 @@ -{"Width":636,"Height":1000,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":608603,"fps":0,"quality":27},{"name":"1000p0","width":636,"height":1000,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":636,"Height":1000,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":608603,"fps":0,"quality":27},{"name":"1000p0","width":636,"height":1000,"bitrate":1680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_1138_1000000.json b/video/fixtures/profiles_tests/640_1138_1000000.json index 93cab77f7..a9aa9f78f 100644 --- a/video/fixtures/profiles_tests/640_1138_1000000.json +++ b/video/fixtures/profiles_tests/640_1138_1000000.json @@ -1 +1 @@ -{"Width":640,"Height":1138,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":1138,"bitrate":500000,"fps":0,"quality":27},{"name":"1138p0","width":640,"height":1138,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":1138,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":1138,"bitrate":500000,"fps":0,"quality":27},{"name":"1138p0","width":640,"height":1138,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_1138_5400000.json b/video/fixtures/profiles_tests/640_1138_5400000.json index 00a60edc8..9d3945714 100644 --- a/video/fixtures/profiles_tests/640_1138_5400000.json +++ b/video/fixtures/profiles_tests/640_1138_5400000.json @@ -1 +1 @@ -{"Width":640,"Height":1138,"Bitrate":5400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1138p0","width":640,"height":1138,"bitrate":5400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":1138,"Bitrate":5400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1138p0","width":640,"height":1138,"bitrate":6480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_332_2500000.json b/video/fixtures/profiles_tests/640_332_2500000.json index 8f2b58634..65185f527 100644 --- a/video/fixtures/profiles_tests/640_332_2500000.json +++ b/video/fixtures/profiles_tests/640_332_2500000.json @@ -1 +1 @@ -{"Width":640,"Height":332,"Bitrate":2500000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":332,"bitrate":1250000,"fps":0,"quality":27},{"name":"332p0","width":640,"height":332,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":332,"Bitrate":2500000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":332,"bitrate":1250000,"fps":0,"quality":27},{"name":"332p0","width":640,"height":332,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_332_300000.json b/video/fixtures/profiles_tests/640_332_300000.json index 6e1071e9a..21ecfcba0 100644 --- a/video/fixtures/profiles_tests/640_332_300000.json +++ b/video/fixtures/profiles_tests/640_332_300000.json @@ -1 +1 @@ -{"Width":640,"Height":332,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":332,"bitrate":150000,"fps":0,"quality":27},{"name":"332p0","width":640,"height":332,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":332,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":332,"bitrate":150000,"fps":0,"quality":27},{"name":"332p0","width":640,"height":332,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_352_1900000.json b/video/fixtures/profiles_tests/640_352_1900000.json index 74627ca18..acb53f2a5 100644 --- a/video/fixtures/profiles_tests/640_352_1900000.json +++ b/video/fixtures/profiles_tests/640_352_1900000.json @@ -1 +1 @@ -{"Width":640,"Height":352,"Bitrate":1900000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":352,"bitrate":950000,"fps":0,"quality":27},{"name":"352p0","width":640,"height":352,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":352,"Bitrate":1900000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":352,"bitrate":950000,"fps":0,"quality":27},{"name":"352p0","width":640,"height":352,"bitrate":2280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_360_200000.json b/video/fixtures/profiles_tests/640_360_200000.json index 512ace617..1438b2e8d 100644 --- a/video/fixtures/profiles_tests/640_360_200000.json +++ b/video/fixtures/profiles_tests/640_360_200000.json @@ -1 +1 @@ -{"Width":640,"Height":360,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":100000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":360,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":100000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_360_300000.json b/video/fixtures/profiles_tests/640_360_300000.json index 78be24fa9..a362b09fa 100644 --- a/video/fixtures/profiles_tests/640_360_300000.json +++ b/video/fixtures/profiles_tests/640_360_300000.json @@ -1 +1 @@ -{"Width":640,"Height":360,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":150000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":360,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":150000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_360_400000.json b/video/fixtures/profiles_tests/640_360_400000.json index ded4a6fbb..063ee62fb 100644 --- a/video/fixtures/profiles_tests/640_360_400000.json +++ b/video/fixtures/profiles_tests/640_360_400000.json @@ -1 +1 @@ -{"Width":640,"Height":360,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":200000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":360,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":200000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_360_500000.json b/video/fixtures/profiles_tests/640_360_500000.json index e0eae0f71..9a03f11a8 100644 --- a/video/fixtures/profiles_tests/640_360_500000.json +++ b/video/fixtures/profiles_tests/640_360_500000.json @@ -1 +1 @@ -{"Width":640,"Height":360,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":250000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":360,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":250000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_360_600000.json b/video/fixtures/profiles_tests/640_360_600000.json index 3a37f2157..7e3866a6b 100644 --- a/video/fixtures/profiles_tests/640_360_600000.json +++ b/video/fixtures/profiles_tests/640_360_600000.json @@ -1 +1 @@ -{"Width":640,"Height":360,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":300000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":360,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":300000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_360_800000.json b/video/fixtures/profiles_tests/640_360_800000.json index fc796ae24..3d8cf9bd0 100644 --- a/video/fixtures/profiles_tests/640_360_800000.json +++ b/video/fixtures/profiles_tests/640_360_800000.json @@ -1 +1 @@ -{"Width":640,"Height":360,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":400000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":360,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":360,"bitrate":400000,"fps":0,"quality":27},{"name":"360p0","width":640,"height":360,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_368_400000.json b/video/fixtures/profiles_tests/640_368_400000.json index ccdeff3e2..3e1b5662f 100644 --- a/video/fixtures/profiles_tests/640_368_400000.json +++ b/video/fixtures/profiles_tests/640_368_400000.json @@ -1 +1 @@ -{"Width":640,"Height":368,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":368,"bitrate":200000,"fps":0,"quality":27},{"name":"368p0","width":640,"height":368,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":368,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":368,"bitrate":200000,"fps":0,"quality":27},{"name":"368p0","width":640,"height":368,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_640_1400000.json b/video/fixtures/profiles_tests/640_640_1400000.json index 24ff0319d..11078f289 100644 --- a/video/fixtures/profiles_tests/640_640_1400000.json +++ b/video/fixtures/profiles_tests/640_640_1400000.json @@ -1 +1 @@ -{"Width":640,"Height":640,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":945000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":640,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":945000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":1680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_640_1500000.json b/video/fixtures/profiles_tests/640_640_1500000.json index 5199f930e..a9f1e3e31 100644 --- a/video/fixtures/profiles_tests/640_640_1500000.json +++ b/video/fixtures/profiles_tests/640_640_1500000.json @@ -1 +1 @@ -{"Width":640,"Height":640,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":640,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_640_1700000.json b/video/fixtures/profiles_tests/640_640_1700000.json index cbd0c1643..25a61906e 100644 --- a/video/fixtures/profiles_tests/640_640_1700000.json +++ b/video/fixtures/profiles_tests/640_640_1700000.json @@ -1 +1 @@ -{"Width":640,"Height":640,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":640,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":2040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_640_400000.json b/video/fixtures/profiles_tests/640_640_400000.json index a3f4b167f..61e401190 100644 --- a/video/fixtures/profiles_tests/640_640_400000.json +++ b/video/fixtures/profiles_tests/640_640_400000.json @@ -1 +1 @@ -{"Width":640,"Height":640,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":200000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":640,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":200000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_640_600000.json b/video/fixtures/profiles_tests/640_640_600000.json index b5534c33a..933545096 100644 --- a/video/fixtures/profiles_tests/640_640_600000.json +++ b/video/fixtures/profiles_tests/640_640_600000.json @@ -1 +1 @@ -{"Width":640,"Height":640,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":300000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":640,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":300000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/640_640_700000.json b/video/fixtures/profiles_tests/640_640_700000.json index 5d1f90fa4..d367bbd09 100644 --- a/video/fixtures/profiles_tests/640_640_700000.json +++ b/video/fixtures/profiles_tests/640_640_700000.json @@ -1 +1 @@ -{"Width":640,"Height":640,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":350000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":640,"Height":640,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":640,"height":640,"bitrate":350000,"fps":0,"quality":27},{"name":"640p0","width":640,"height":640,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/658_1080_800000.json b/video/fixtures/profiles_tests/658_1080_800000.json index 10ed7ef0f..1a5b4e0ef 100644 --- a/video/fixtures/profiles_tests/658_1080_800000.json +++ b/video/fixtures/profiles_tests/658_1080_800000.json @@ -1 +1 @@ -{"Width":658,"Height":1080,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":658,"height":1080,"bitrate":400000,"fps":0,"quality":27},{"name":"1080p0","width":658,"height":1080,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":658,"Height":1080,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":658,"height":1080,"bitrate":400000,"fps":0,"quality":27},{"name":"1080p0","width":658,"height":1080,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/684_1216_1900000.json b/video/fixtures/profiles_tests/684_1216_1900000.json index 451eec24b..0e04f9678 100644 --- a/video/fixtures/profiles_tests/684_1216_1900000.json +++ b/video/fixtures/profiles_tests/684_1216_1900000.json @@ -1 +1 @@ -{"Width":684,"Height":1216,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":631578,"fps":0,"quality":27},{"name":"1216p0","width":684,"height":1216,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":684,"Height":1216,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":631578,"fps":0,"quality":27},{"name":"1216p0","width":684,"height":1216,"bitrate":2280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/704_1280_2700000.json b/video/fixtures/profiles_tests/704_1280_2700000.json index cd12da9e3..38e628628 100644 --- a/video/fixtures/profiles_tests/704_1280_2700000.json +++ b/video/fixtures/profiles_tests/704_1280_2700000.json @@ -1 +1 @@ -{"Width":704,"Height":1280,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":828409,"fps":0,"quality":27},{"name":"1280p0","width":704,"height":1280,"bitrate":2700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":704,"Height":1280,"Bitrate":2700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":828409,"fps":0,"quality":27},{"name":"1280p0","width":704,"height":1280,"bitrate":3240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/704_1280_500000.json b/video/fixtures/profiles_tests/704_1280_500000.json index bfc4432ed..7d6ffbeca 100644 --- a/video/fixtures/profiles_tests/704_1280_500000.json +++ b/video/fixtures/profiles_tests/704_1280_500000.json @@ -1 +1 @@ -{"Width":704,"Height":1280,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":704,"height":1280,"bitrate":250000,"fps":0,"quality":27},{"name":"1280p0","width":704,"height":1280,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":704,"Height":1280,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":704,"height":1280,"bitrate":250000,"fps":0,"quality":27},{"name":"1280p0","width":704,"height":1280,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/718_720_600000.json b/video/fixtures/profiles_tests/718_720_600000.json index 86d7d8515..50eb5e7fd 100644 --- a/video/fixtures/profiles_tests/718_720_600000.json +++ b/video/fixtures/profiles_tests/718_720_600000.json @@ -1 +1 @@ -{"Width":718,"Height":720,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":718,"height":720,"bitrate":300000,"fps":0,"quality":27},{"name":"720p0","width":718,"height":720,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":718,"Height":720,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":718,"height":720,"bitrate":300000,"fps":0,"quality":27},{"name":"720p0","width":718,"height":720,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1120_1200000.json b/video/fixtures/profiles_tests/720_1120_1200000.json index 989cd7333..2a43fd721 100644 --- a/video/fixtures/profiles_tests/720_1120_1200000.json +++ b/video/fixtures/profiles_tests/720_1120_1200000.json @@ -1 +1 @@ -{"Width":720,"Height":1120,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":411428,"fps":0,"quality":27},{"name":"1120p0","width":720,"height":1120,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1120,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":411428,"fps":0,"quality":27},{"name":"1120p0","width":720,"height":1120,"bitrate":1440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1126_800000.json b/video/fixtures/profiles_tests/720_1126_800000.json index 9ff8f63d7..ea38882c7 100644 --- a/video/fixtures/profiles_tests/720_1126_800000.json +++ b/video/fixtures/profiles_tests/720_1126_800000.json @@ -1 +1 @@ -{"Width":720,"Height":1126,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1126,"bitrate":400000,"fps":0,"quality":27},{"name":"1126p0","width":720,"height":1126,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1126,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1126,"bitrate":400000,"fps":0,"quality":27},{"name":"1126p0","width":720,"height":1126,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1000000.json b/video/fixtures/profiles_tests/720_1280_1000000.json index aefd5e730..01021a99e 100644 --- a/video/fixtures/profiles_tests/720_1280_1000000.json +++ b/video/fixtures/profiles_tests/720_1280_1000000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":500000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":500000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1100000.json b/video/fixtures/profiles_tests/720_1280_1100000.json index 4cc6455c6..57c408e75 100644 --- a/video/fixtures/profiles_tests/720_1280_1100000.json +++ b/video/fixtures/profiles_tests/720_1280_1100000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":330000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":330000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1200000.json b/video/fixtures/profiles_tests/720_1280_1200000.json index cdc0a2f5c..74ef09d6b 100644 --- a/video/fixtures/profiles_tests/720_1280_1200000.json +++ b/video/fixtures/profiles_tests/720_1280_1200000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":360000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1300000.json b/video/fixtures/profiles_tests/720_1280_1300000.json index 5152866ee..9e0b1df80 100644 --- a/video/fixtures/profiles_tests/720_1280_1300000.json +++ b/video/fixtures/profiles_tests/720_1280_1300000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":390000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":390000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1400000.json b/video/fixtures/profiles_tests/720_1280_1400000.json index 540f0ec3d..437270484 100644 --- a/video/fixtures/profiles_tests/720_1280_1400000.json +++ b/video/fixtures/profiles_tests/720_1280_1400000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":420000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":420000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1500000.json b/video/fixtures/profiles_tests/720_1280_1500000.json index ea67e49df..7144325e1 100644 --- a/video/fixtures/profiles_tests/720_1280_1500000.json +++ b/video/fixtures/profiles_tests/720_1280_1500000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":450000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":450000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1600000.json b/video/fixtures/profiles_tests/720_1280_1600000.json index 1566b9cd2..13d69e89c 100644 --- a/video/fixtures/profiles_tests/720_1280_1600000.json +++ b/video/fixtures/profiles_tests/720_1280_1600000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":480000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1700000.json b/video/fixtures/profiles_tests/720_1280_1700000.json index d2e4468f7..d96da278b 100644 --- a/video/fixtures/profiles_tests/720_1280_1700000.json +++ b/video/fixtures/profiles_tests/720_1280_1700000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":510000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":510000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1800000.json b/video/fixtures/profiles_tests/720_1280_1800000.json index 455a76e40..c749a6f49 100644 --- a/video/fixtures/profiles_tests/720_1280_1800000.json +++ b/video/fixtures/profiles_tests/720_1280_1800000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":540000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":540000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_1900000.json b/video/fixtures/profiles_tests/720_1280_1900000.json index 5c1d22e5c..6a33a3771 100644 --- a/video/fixtures/profiles_tests/720_1280_1900000.json +++ b/video/fixtures/profiles_tests/720_1280_1900000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":570000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":570000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2000000.json b/video/fixtures/profiles_tests/720_1280_2000000.json index ff7e03bf2..7309834af 100644 --- a/video/fixtures/profiles_tests/720_1280_2000000.json +++ b/video/fixtures/profiles_tests/720_1280_2000000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":600000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2100000.json b/video/fixtures/profiles_tests/720_1280_2100000.json index b63814dc4..f01f3c327 100644 --- a/video/fixtures/profiles_tests/720_1280_2100000.json +++ b/video/fixtures/profiles_tests/720_1280_2100000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":630000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":630000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2200000.json b/video/fixtures/profiles_tests/720_1280_2200000.json index 5ba1fe398..a70b54f09 100644 --- a/video/fixtures/profiles_tests/720_1280_2200000.json +++ b/video/fixtures/profiles_tests/720_1280_2200000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":660000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":660000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2300000.json b/video/fixtures/profiles_tests/720_1280_2300000.json index 30c749e74..b6d7eb42d 100644 --- a/video/fixtures/profiles_tests/720_1280_2300000.json +++ b/video/fixtures/profiles_tests/720_1280_2300000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":690000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":690000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2400000.json b/video/fixtures/profiles_tests/720_1280_2400000.json index 1d61d2d81..c85fd7d27 100644 --- a/video/fixtures/profiles_tests/720_1280_2400000.json +++ b/video/fixtures/profiles_tests/720_1280_2400000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":720000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":720000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2500000.json b/video/fixtures/profiles_tests/720_1280_2500000.json index 207469de5..c3cd427b1 100644 --- a/video/fixtures/profiles_tests/720_1280_2500000.json +++ b/video/fixtures/profiles_tests/720_1280_2500000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":750000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":750000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2600000.json b/video/fixtures/profiles_tests/720_1280_2600000.json index cb4176152..e43b71452 100644 --- a/video/fixtures/profiles_tests/720_1280_2600000.json +++ b/video/fixtures/profiles_tests/720_1280_2600000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":780000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":780000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_2900000.json b/video/fixtures/profiles_tests/720_1280_2900000.json index 735777d1a..cdf5cb63e 100644 --- a/video/fixtures/profiles_tests/720_1280_2900000.json +++ b/video/fixtures/profiles_tests/720_1280_2900000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":870000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":2900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":870000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_300000.json b/video/fixtures/profiles_tests/720_1280_300000.json index a2fab5061..bbe91fc41 100644 --- a/video/fixtures/profiles_tests/720_1280_300000.json +++ b/video/fixtures/profiles_tests/720_1280_300000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":150000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":150000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_3000000.json b/video/fixtures/profiles_tests/720_1280_3000000.json index 19e6668e9..c05bc1d16 100644 --- a/video/fixtures/profiles_tests/720_1280_3000000.json +++ b/video/fixtures/profiles_tests/720_1280_3000000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":900000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":900000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_3100000.json b/video/fixtures/profiles_tests/720_1280_3100000.json index 9f0dfd698..c048273dc 100644 --- a/video/fixtures/profiles_tests/720_1280_3100000.json +++ b/video/fixtures/profiles_tests/720_1280_3100000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":930000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":3100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":930000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_3500000.json b/video/fixtures/profiles_tests/720_1280_3500000.json index 74d238cc4..98f592b19 100644 --- a/video/fixtures/profiles_tests/720_1280_3500000.json +++ b/video/fixtures/profiles_tests/720_1280_3500000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":3500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":3500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":4200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_3700000.json b/video/fixtures/profiles_tests/720_1280_3700000.json index 49aced809..a990ef544 100644 --- a/video/fixtures/profiles_tests/720_1280_3700000.json +++ b/video/fixtures/profiles_tests/720_1280_3700000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":3700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":3700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":3700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":4440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_400000.json b/video/fixtures/profiles_tests/720_1280_400000.json index 6c9735389..5423ff717 100644 --- a/video/fixtures/profiles_tests/720_1280_400000.json +++ b/video/fixtures/profiles_tests/720_1280_400000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":200000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":200000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_500000.json b/video/fixtures/profiles_tests/720_1280_500000.json index f25934ead..71c4991d2 100644 --- a/video/fixtures/profiles_tests/720_1280_500000.json +++ b/video/fixtures/profiles_tests/720_1280_500000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":250000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":250000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_5700000.json b/video/fixtures/profiles_tests/720_1280_5700000.json index b7e5f48ba..cf923f1b6 100644 --- a/video/fixtures/profiles_tests/720_1280_5700000.json +++ b/video/fixtures/profiles_tests/720_1280_5700000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":5700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":5700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":5700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":6840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_600000.json b/video/fixtures/profiles_tests/720_1280_600000.json index 5f36be64d..a6cd626aa 100644 --- a/video/fixtures/profiles_tests/720_1280_600000.json +++ b/video/fixtures/profiles_tests/720_1280_600000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":300000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":300000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_6300000.json b/video/fixtures/profiles_tests/720_1280_6300000.json index ca6f8defe..1bfed1372 100644 --- a/video/fixtures/profiles_tests/720_1280_6300000.json +++ b/video/fixtures/profiles_tests/720_1280_6300000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":6300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":6300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":6300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":7560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_6400000.json b/video/fixtures/profiles_tests/720_1280_6400000.json index 3b0155b04..54d2741dd 100644 --- a/video/fixtures/profiles_tests/720_1280_6400000.json +++ b/video/fixtures/profiles_tests/720_1280_6400000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":6400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":6400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":6400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":7680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_700000.json b/video/fixtures/profiles_tests/720_1280_700000.json index 06f3fd7a3..43aea6be0 100644 --- a/video/fixtures/profiles_tests/720_1280_700000.json +++ b/video/fixtures/profiles_tests/720_1280_700000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":350000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":350000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_7100000.json b/video/fixtures/profiles_tests/720_1280_7100000.json index 596d208c7..db0feb3e1 100644 --- a/video/fixtures/profiles_tests/720_1280_7100000.json +++ b/video/fixtures/profiles_tests/720_1280_7100000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":7100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":7100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":7100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":8520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_7200000.json b/video/fixtures/profiles_tests/720_1280_7200000.json index efd98296f..c328bc796 100644 --- a/video/fixtures/profiles_tests/720_1280_7200000.json +++ b/video/fixtures/profiles_tests/720_1280_7200000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":7200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":7200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":7200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":8640000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_800000.json b/video/fixtures/profiles_tests/720_1280_800000.json index 5ba4f9cbf..687a2e485 100644 --- a/video/fixtures/profiles_tests/720_1280_800000.json +++ b/video/fixtures/profiles_tests/720_1280_800000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":400000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":400000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_1280_900000.json b/video/fixtures/profiles_tests/720_1280_900000.json index 8a62d8cc9..aabc13c1b 100644 --- a/video/fixtures/profiles_tests/720_1280_900000.json +++ b/video/fixtures/profiles_tests/720_1280_900000.json @@ -1 +1 @@ -{"Width":720,"Height":1280,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":450000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":1280,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":1280,"bitrate":450000,"fps":0,"quality":27},{"name":"1280p0","width":720,"height":1280,"bitrate":1080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_404_300000.json b/video/fixtures/profiles_tests/720_404_300000.json index 4a29c2aec..51313da01 100644 --- a/video/fixtures/profiles_tests/720_404_300000.json +++ b/video/fixtures/profiles_tests/720_404_300000.json @@ -1 +1 @@ -{"Width":720,"Height":404,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":404,"bitrate":150000,"fps":0,"quality":27},{"name":"404p0","width":720,"height":404,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":404,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":404,"bitrate":150000,"fps":0,"quality":27},{"name":"404p0","width":720,"height":404,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_1000000.json b/video/fixtures/profiles_tests/720_416_1000000.json index be34c15ab..27d03c1e7 100644 --- a/video/fixtures/profiles_tests/720_416_1000000.json +++ b/video/fixtures/profiles_tests/720_416_1000000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":416,"bitrate":500000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":416,"bitrate":500000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_1100000.json b/video/fixtures/profiles_tests/720_416_1100000.json index 94b410990..51df586ab 100644 --- a/video/fixtures/profiles_tests/720_416_1100000.json +++ b/video/fixtures/profiles_tests/720_416_1100000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_1200000.json b/video/fixtures/profiles_tests/720_416_1200000.json index abab5280a..a6e753cea 100644 --- a/video/fixtures/profiles_tests/720_416_1200000.json +++ b/video/fixtures/profiles_tests/720_416_1200000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":1440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_1900000.json b/video/fixtures/profiles_tests/720_416_1900000.json index a7246b365..0a9958846 100644 --- a/video/fixtures/profiles_tests/720_416_1900000.json +++ b/video/fixtures/profiles_tests/720_416_1900000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_2000000.json b/video/fixtures/profiles_tests/720_416_2000000.json index d19a2714f..d89757e82 100644 --- a/video/fixtures/profiles_tests/720_416_2000000.json +++ b/video/fixtures/profiles_tests/720_416_2000000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":2000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_2100000.json b/video/fixtures/profiles_tests/720_416_2100000.json index ed7e9ea80..a8e975745 100644 --- a/video/fixtures/profiles_tests/720_416_2100000.json +++ b/video/fixtures/profiles_tests/720_416_2100000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_2300000.json b/video/fixtures/profiles_tests/720_416_2300000.json index 3b9c84e11..e04666ce6 100644 --- a/video/fixtures/profiles_tests/720_416_2300000.json +++ b/video/fixtures/profiles_tests/720_416_2300000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":2300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_416_2400000.json b/video/fixtures/profiles_tests/720_416_2400000.json index 92401d4c6..2e964e4fe 100644 --- a/video/fixtures/profiles_tests/720_416_2400000.json +++ b/video/fixtures/profiles_tests/720_416_2400000.json @@ -1 +1 @@ -{"Width":720,"Height":416,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":416,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"416p0","width":720,"height":416,"bitrate":2880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_1000000.json b/video/fixtures/profiles_tests/720_720_1000000.json index 47ab4b494..b647bdeb6 100644 --- a/video/fixtures/profiles_tests/720_720_1000000.json +++ b/video/fixtures/profiles_tests/720_720_1000000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":500000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":500000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_1100000.json b/video/fixtures/profiles_tests/720_720_1100000.json index c9de0baed..f51b34d54 100644 --- a/video/fixtures/profiles_tests/720_720_1100000.json +++ b/video/fixtures/profiles_tests/720_720_1100000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":586666,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":586666,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_1200000.json b/video/fixtures/profiles_tests/720_720_1200000.json index 53f41ecb2..8633986d7 100644 --- a/video/fixtures/profiles_tests/720_720_1200000.json +++ b/video/fixtures/profiles_tests/720_720_1200000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":640000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":1200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":640000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":1440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_1700000.json b/video/fixtures/profiles_tests/720_720_1700000.json index a1872bead..5d3ad3e32 100644 --- a/video/fixtures/profiles_tests/720_720_1700000.json +++ b/video/fixtures/profiles_tests/720_720_1700000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":906666,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":906666,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":2040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_2500000.json b/video/fixtures/profiles_tests/720_720_2500000.json index 10ab9c83c..b2dc66dce 100644 --- a/video/fixtures/profiles_tests/720_720_2500000.json +++ b/video/fixtures/profiles_tests/720_720_2500000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":2500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":2500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_300000.json b/video/fixtures/profiles_tests/720_720_300000.json index a8de66f4a..f1dd3ea5e 100644 --- a/video/fixtures/profiles_tests/720_720_300000.json +++ b/video/fixtures/profiles_tests/720_720_300000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":150000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":300000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":150000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_400000.json b/video/fixtures/profiles_tests/720_720_400000.json index 3bdf767ea..d5db9916c 100644 --- a/video/fixtures/profiles_tests/720_720_400000.json +++ b/video/fixtures/profiles_tests/720_720_400000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":200000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":400000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":200000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_600000.json b/video/fixtures/profiles_tests/720_720_600000.json index c8edcf54c..806d1433e 100644 --- a/video/fixtures/profiles_tests/720_720_600000.json +++ b/video/fixtures/profiles_tests/720_720_600000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":300000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":300000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_720_700000.json b/video/fixtures/profiles_tests/720_720_700000.json index 8e5b3584e..96a1ea332 100644 --- a/video/fixtures/profiles_tests/720_720_700000.json +++ b/video/fixtures/profiles_tests/720_720_700000.json @@ -1 +1 @@ -{"Width":720,"Height":720,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":350000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":720,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":720,"bitrate":350000,"fps":0,"quality":27},{"name":"720p0","width":720,"height":720,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_900_1300000.json b/video/fixtures/profiles_tests/720_900_1300000.json index 2833362d0..19a7959af 100644 --- a/video/fixtures/profiles_tests/720_900_1300000.json +++ b/video/fixtures/profiles_tests/720_900_1300000.json @@ -1 +1 @@ -{"Width":720,"Height":900,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":554666,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":1300000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":900,"Bitrate":1300000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":554666,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":1560000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_900_1800000.json b/video/fixtures/profiles_tests/720_900_1800000.json index ada675b2e..b36f7f434 100644 --- a/video/fixtures/profiles_tests/720_900_1800000.json +++ b/video/fixtures/profiles_tests/720_900_1800000.json @@ -1 +1 @@ -{"Width":720,"Height":900,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":768000,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":900,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":768000,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":2160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_900_200000.json b/video/fixtures/profiles_tests/720_900_200000.json index 4954187ff..ed9b3b833 100644 --- a/video/fixtures/profiles_tests/720_900_200000.json +++ b/video/fixtures/profiles_tests/720_900_200000.json @@ -1 +1 @@ -{"Width":720,"Height":900,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":900,"bitrate":100000,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":900,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":900,"bitrate":100000,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_900_4400000.json b/video/fixtures/profiles_tests/720_900_4400000.json index 71c622424..76dae8cb5 100644 --- a/video/fixtures/profiles_tests/720_900_4400000.json +++ b/video/fixtures/profiles_tests/720_900_4400000.json @@ -1 +1 @@ -{"Width":720,"Height":900,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":4400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":900,"Bitrate":4400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":5280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_900_500000.json b/video/fixtures/profiles_tests/720_900_500000.json index 8d145dc5d..491493abf 100644 --- a/video/fixtures/profiles_tests/720_900_500000.json +++ b/video/fixtures/profiles_tests/720_900_500000.json @@ -1 +1 @@ -{"Width":720,"Height":900,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":900,"bitrate":250000,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":900,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":720,"height":900,"bitrate":250000,"fps":0,"quality":27},{"name":"900p0","width":720,"height":900,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_966_1700000.json b/video/fixtures/profiles_tests/720_966_1700000.json index 19e1bb24e..7568b83ae 100644 --- a/video/fixtures/profiles_tests/720_966_1700000.json +++ b/video/fixtures/profiles_tests/720_966_1700000.json @@ -1 +1 @@ -{"Width":720,"Height":966,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":675776,"fps":0,"quality":27},{"name":"966p0","width":720,"height":966,"bitrate":1700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":966,"Bitrate":1700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":675776,"fps":0,"quality":27},{"name":"966p0","width":720,"height":966,"bitrate":2040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/720_978_1800000.json b/video/fixtures/profiles_tests/720_978_1800000.json index 5058f6256..680f7d268 100644 --- a/video/fixtures/profiles_tests/720_978_1800000.json +++ b/video/fixtures/profiles_tests/720_978_1800000.json @@ -1 +1 @@ -{"Width":720,"Height":978,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":706748,"fps":0,"quality":27},{"name":"978p0","width":720,"height":978,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":720,"Height":978,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":706748,"fps":0,"quality":27},{"name":"978p0","width":720,"height":978,"bitrate":2160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/726_1280_2600000.json b/video/fixtures/profiles_tests/726_1280_2600000.json index 99e8948d6..edb1081e7 100644 --- a/video/fixtures/profiles_tests/726_1280_2600000.json +++ b/video/fixtures/profiles_tests/726_1280_2600000.json @@ -1 +1 @@ -{"Width":726,"Height":1280,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":773553,"fps":0,"quality":27},{"name":"1280p0","width":726,"height":1280,"bitrate":2600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":726,"Height":1280,"Bitrate":2600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":773553,"fps":0,"quality":27},{"name":"1280p0","width":726,"height":1280,"bitrate":3120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/734_1016_10200000.json b/video/fixtures/profiles_tests/734_1016_10200000.json index 30614f21e..2dcf967d5 100644 --- a/video/fixtures/profiles_tests/734_1016_10200000.json +++ b/video/fixtures/profiles_tests/734_1016_10200000.json @@ -1 +1 @@ -{"Width":734,"Height":1016,"Bitrate":10200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":10200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":734,"Height":1016,"Bitrate":10200000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":12240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/734_1016_3700000.json b/video/fixtures/profiles_tests/734_1016_3700000.json index db5706827..b4600ca9c 100644 --- a/video/fixtures/profiles_tests/734_1016_3700000.json +++ b/video/fixtures/profiles_tests/734_1016_3700000.json @@ -1 +1 @@ -{"Width":734,"Height":1016,"Bitrate":3700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":3700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":734,"Height":1016,"Bitrate":3700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":4440000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/734_1016_5900000.json b/video/fixtures/profiles_tests/734_1016_5900000.json index 0440ed084..c17b7a8fb 100644 --- a/video/fixtures/profiles_tests/734_1016_5900000.json +++ b/video/fixtures/profiles_tests/734_1016_5900000.json @@ -1 +1 @@ -{"Width":734,"Height":1016,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":5900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":734,"Height":1016,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":7080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/734_1016_6400000.json b/video/fixtures/profiles_tests/734_1016_6400000.json index d0b5fad6c..5c39467c6 100644 --- a/video/fixtures/profiles_tests/734_1016_6400000.json +++ b/video/fixtures/profiles_tests/734_1016_6400000.json @@ -1 +1 @@ -{"Width":734,"Height":1016,"Bitrate":6400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":6400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":734,"Height":1016,"Bitrate":6400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":7680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/734_1016_9500000.json b/video/fixtures/profiles_tests/734_1016_9500000.json index c888f2869..d76c0d8c3 100644 --- a/video/fixtures/profiles_tests/734_1016_9500000.json +++ b/video/fixtures/profiles_tests/734_1016_9500000.json @@ -1 +1 @@ -{"Width":734,"Height":1016,"Bitrate":9500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":9500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":734,"Height":1016,"Bitrate":9500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1016p0","width":734,"height":1016,"bitrate":11400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/736_1280_3000000.json b/video/fixtures/profiles_tests/736_1280_3000000.json index 586b29ca6..2d07d6d5f 100644 --- a/video/fixtures/profiles_tests/736_1280_3000000.json +++ b/video/fixtures/profiles_tests/736_1280_3000000.json @@ -1 +1 @@ -{"Width":736,"Height":1280,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":880434,"fps":0,"quality":27},{"name":"1280p0","width":736,"height":1280,"bitrate":3000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":736,"Height":1280,"Bitrate":3000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":880434,"fps":0,"quality":27},{"name":"1280p0","width":736,"height":1280,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/740_1080_1000000.json b/video/fixtures/profiles_tests/740_1080_1000000.json index b37a541e2..a18527cf2 100644 --- a/video/fixtures/profiles_tests/740_1080_1000000.json +++ b/video/fixtures/profiles_tests/740_1080_1000000.json @@ -1 +1 @@ -{"Width":740,"Height":1080,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":740,"height":1080,"bitrate":500000,"fps":0,"quality":27},{"name":"1080p0","width":740,"height":1080,"bitrate":1000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":740,"Height":1080,"Bitrate":1000000,"CurrentOutput":[{"name":"low-bitrate","width":740,"height":1080,"bitrate":500000,"fps":0,"quality":27},{"name":"1080p0","width":740,"height":1080,"bitrate":1200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/750_814_10700000.json b/video/fixtures/profiles_tests/750_814_10700000.json index a9bcfce02..7335712ce 100644 --- a/video/fixtures/profiles_tests/750_814_10700000.json +++ b/video/fixtures/profiles_tests/750_814_10700000.json @@ -1 +1 @@ -{"Width":750,"Height":814,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"814p0","width":750,"height":814,"bitrate":10700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":750,"Height":814,"Bitrate":10700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"814p0","width":750,"height":814,"bitrate":12840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/756_756_14800000.json b/video/fixtures/profiles_tests/756_756_14800000.json index 1594ff830..be31243b2 100644 --- a/video/fixtures/profiles_tests/756_756_14800000.json +++ b/video/fixtures/profiles_tests/756_756_14800000.json @@ -1 +1 @@ -{"Width":756,"Height":756,"Bitrate":14800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"756p0","width":756,"height":756,"bitrate":14800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":756,"Height":756,"Bitrate":14800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"756p0","width":756,"height":756,"bitrate":17760000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/768_1024_17600000.json b/video/fixtures/profiles_tests/768_1024_17600000.json index 4460d87c8..dd7a72140 100644 --- a/video/fixtures/profiles_tests/768_1024_17600000.json +++ b/video/fixtures/profiles_tests/768_1024_17600000.json @@ -1 +1 @@ -{"Width":768,"Height":1024,"Bitrate":17600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":768,"height":1024,"bitrate":17600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":768,"Height":1024,"Bitrate":17600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":768,"height":1024,"bitrate":21120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/768_1024_23100000.json b/video/fixtures/profiles_tests/768_1024_23100000.json index d1f509840..f75ccce9d 100644 --- a/video/fixtures/profiles_tests/768_1024_23100000.json +++ b/video/fixtures/profiles_tests/768_1024_23100000.json @@ -1 +1 @@ -{"Width":768,"Height":1024,"Bitrate":23100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":768,"height":1024,"bitrate":23100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":768,"Height":1024,"Bitrate":23100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1024p0","width":768,"height":1024,"bitrate":27720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/770_1000_7400000.json b/video/fixtures/profiles_tests/770_1000_7400000.json index 17bf3f42f..28aee137a 100644 --- a/video/fixtures/profiles_tests/770_1000_7400000.json +++ b/video/fixtures/profiles_tests/770_1000_7400000.json @@ -1 +1 @@ -{"Width":770,"Height":1000,"Bitrate":7400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":770,"height":1000,"bitrate":7400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":770,"Height":1000,"Bitrate":7400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1000p0","width":770,"height":1000,"bitrate":8880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_450_1800000.json b/video/fixtures/profiles_tests/800_450_1800000.json index ec0fdf0a5..24bbfd406 100644 --- a/video/fixtures/profiles_tests/800_450_1800000.json +++ b/video/fixtures/profiles_tests/800_450_1800000.json @@ -1 +1 @@ -{"Width":800,"Height":450,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"450p0","width":800,"height":450,"bitrate":1800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":450,"Bitrate":1800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"450p0","width":800,"height":450,"bitrate":2160000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_450_700000.json b/video/fixtures/profiles_tests/800_450_700000.json index 91054cb53..633d93c67 100644 --- a/video/fixtures/profiles_tests/800_450_700000.json +++ b/video/fixtures/profiles_tests/800_450_700000.json @@ -1 +1 @@ -{"Width":800,"Height":450,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":350000,"fps":0,"quality":27},{"name":"450p0","width":800,"height":450,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":450,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":350000,"fps":0,"quality":27},{"name":"450p0","width":800,"height":450,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_450_800000.json b/video/fixtures/profiles_tests/800_450_800000.json index ed632493c..c4b31d489 100644 --- a/video/fixtures/profiles_tests/800_450_800000.json +++ b/video/fixtures/profiles_tests/800_450_800000.json @@ -1 +1 @@ -{"Width":800,"Height":450,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":400000,"fps":0,"quality":27},{"name":"450p0","width":800,"height":450,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":450,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":400000,"fps":0,"quality":27},{"name":"450p0","width":800,"height":450,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_450_900000.json b/video/fixtures/profiles_tests/800_450_900000.json index 02ee2a910..c2bdd9cb7 100644 --- a/video/fixtures/profiles_tests/800_450_900000.json +++ b/video/fixtures/profiles_tests/800_450_900000.json @@ -1 +1 @@ -{"Width":800,"Height":450,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":450000,"fps":0,"quality":27},{"name":"450p0","width":800,"height":450,"bitrate":900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":450,"Bitrate":900000,"CurrentOutput":[{"name":"low-bitrate","width":800,"height":450,"bitrate":450000,"fps":0,"quality":27},{"name":"450p0","width":800,"height":450,"bitrate":1080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_600_2400000.json b/video/fixtures/profiles_tests/800_600_2400000.json index ea7dc9a91..67a22639b 100644 --- a/video/fixtures/profiles_tests/800_600_2400000.json +++ b/video/fixtures/profiles_tests/800_600_2400000.json @@ -1 +1 @@ -{"Width":800,"Height":600,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":800,"height":600,"bitrate":2400000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":600,"Bitrate":2400000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"600p0","width":800,"height":600,"bitrate":2880000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_700_10100000.json b/video/fixtures/profiles_tests/800_700_10100000.json index 76766ec25..38c7a55bc 100644 --- a/video/fixtures/profiles_tests/800_700_10100000.json +++ b/video/fixtures/profiles_tests/800_700_10100000.json @@ -1 +1 @@ -{"Width":800,"Height":700,"Bitrate":10100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"700p0","width":800,"height":700,"bitrate":10100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":700,"Bitrate":10100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"700p0","width":800,"height":700,"bitrate":12120000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_3600000.json b/video/fixtures/profiles_tests/800_800_3600000.json index b7c6eefe6..c97443aaf 100644 --- a/video/fixtures/profiles_tests/800_800_3600000.json +++ b/video/fixtures/profiles_tests/800_800_3600000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":3600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":3600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":3600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":4320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_3900000.json b/video/fixtures/profiles_tests/800_800_3900000.json index ed7c7b789..50d37f0f8 100644 --- a/video/fixtures/profiles_tests/800_800_3900000.json +++ b/video/fixtures/profiles_tests/800_800_3900000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":3900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":3900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":3900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":4680000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_5900000.json b/video/fixtures/profiles_tests/800_800_5900000.json index 04f2f34f5..5355ec1e3 100644 --- a/video/fixtures/profiles_tests/800_800_5900000.json +++ b/video/fixtures/profiles_tests/800_800_5900000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":5900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":5900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":7080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_6100000.json b/video/fixtures/profiles_tests/800_800_6100000.json index b33bc467b..86d3ac89f 100644 --- a/video/fixtures/profiles_tests/800_800_6100000.json +++ b/video/fixtures/profiles_tests/800_800_6100000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":6100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":6100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":6100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":7320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_6600000.json b/video/fixtures/profiles_tests/800_800_6600000.json index 62f64e14b..5fc0e7b0e 100644 --- a/video/fixtures/profiles_tests/800_800_6600000.json +++ b/video/fixtures/profiles_tests/800_800_6600000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":6600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":6600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":6600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":7920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_7900000.json b/video/fixtures/profiles_tests/800_800_7900000.json index 8da6f18ac..3f0e6b48f 100644 --- a/video/fixtures/profiles_tests/800_800_7900000.json +++ b/video/fixtures/profiles_tests/800_800_7900000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":7900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":7900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":7900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":9480000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_8000000.json b/video/fixtures/profiles_tests/800_800_8000000.json index 23dadf2a6..411915afb 100644 --- a/video/fixtures/profiles_tests/800_800_8000000.json +++ b/video/fixtures/profiles_tests/800_800_8000000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":8000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":8000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":9600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/800_800_8500000.json b/video/fixtures/profiles_tests/800_800_8500000.json index ba5411d73..6eae24099 100644 --- a/video/fixtures/profiles_tests/800_800_8500000.json +++ b/video/fixtures/profiles_tests/800_800_8500000.json @@ -1 +1 @@ -{"Width":800,"Height":800,"Bitrate":8500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":8500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":800,"Height":800,"Bitrate":8500000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"800p0","width":800,"height":800,"bitrate":10200000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/816_712_200000.json b/video/fixtures/profiles_tests/816_712_200000.json index 7e2895dee..32bc06edc 100644 --- a/video/fixtures/profiles_tests/816_712_200000.json +++ b/video/fixtures/profiles_tests/816_712_200000.json @@ -1 +1 @@ -{"Width":816,"Height":712,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":816,"height":712,"bitrate":100000,"fps":0,"quality":27},{"name":"712p0","width":816,"height":712,"bitrate":200000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":816,"Height":712,"Bitrate":200000,"CurrentOutput":[{"name":"low-bitrate","width":816,"height":712,"bitrate":100000,"fps":0,"quality":27},{"name":"712p0","width":816,"height":712,"bitrate":240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/820_1188_16900000.json b/video/fixtures/profiles_tests/820_1188_16900000.json index 6456a6c3d..b0277d974 100644 --- a/video/fixtures/profiles_tests/820_1188_16900000.json +++ b/video/fixtures/profiles_tests/820_1188_16900000.json @@ -1 +1 @@ -{"Width":820,"Height":1188,"Bitrate":16900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1188p0","width":820,"height":1188,"bitrate":16900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":820,"Height":1188,"Bitrate":16900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1188p0","width":820,"height":1188,"bitrate":20280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/840_1196_16700000.json b/video/fixtures/profiles_tests/840_1196_16700000.json index f27fc37f5..3c284770b 100644 --- a/video/fixtures/profiles_tests/840_1196_16700000.json +++ b/video/fixtures/profiles_tests/840_1196_16700000.json @@ -1 +1 @@ -{"Width":840,"Height":1196,"Bitrate":16700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1196p0","width":840,"height":1196,"bitrate":16700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":840,"Height":1196,"Bitrate":16700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1196p0","width":840,"height":1196,"bitrate":20040000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/848_464_1100000.json b/video/fixtures/profiles_tests/848_464_1100000.json index 727c09b82..94902a3f1 100644 --- a/video/fixtures/profiles_tests/848_464_1100000.json +++ b/video/fixtures/profiles_tests/848_464_1100000.json @@ -1 +1 @@ -{"Width":848,"Height":464,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":772934,"fps":0,"quality":27},{"name":"464p0","width":848,"height":464,"bitrate":1100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":848,"Height":464,"Bitrate":1100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":772934,"fps":0,"quality":27},{"name":"464p0","width":848,"height":464,"bitrate":1320000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/854_1200_16600000.json b/video/fixtures/profiles_tests/854_1200_16600000.json index 484c35846..d15ac71da 100644 --- a/video/fixtures/profiles_tests/854_1200_16600000.json +++ b/video/fixtures/profiles_tests/854_1200_16600000.json @@ -1 +1 @@ -{"Width":854,"Height":1200,"Bitrate":16600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":854,"height":1200,"bitrate":16600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":854,"Height":1200,"Bitrate":16600000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":854,"height":1200,"bitrate":19920000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/854_480_700000.json b/video/fixtures/profiles_tests/854_480_700000.json index c90135cea..5d83d1e00 100644 --- a/video/fixtures/profiles_tests/854_480_700000.json +++ b/video/fixtures/profiles_tests/854_480_700000.json @@ -1 +1 @@ -{"Width":854,"Height":480,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":854,"height":480,"bitrate":350000,"fps":0,"quality":27},{"name":"480p0","width":854,"height":480,"bitrate":700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":854,"Height":480,"Bitrate":700000,"CurrentOutput":[{"name":"low-bitrate","width":854,"height":480,"bitrate":350000,"fps":0,"quality":27},{"name":"480p0","width":854,"height":480,"bitrate":840000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/880_880_800000.json b/video/fixtures/profiles_tests/880_880_800000.json index 5d2b93cb0..0c275cd4e 100644 --- a/video/fixtures/profiles_tests/880_880_800000.json +++ b/video/fixtures/profiles_tests/880_880_800000.json @@ -1 +1 @@ -{"Width":880,"Height":880,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":880,"height":880,"bitrate":400000,"fps":0,"quality":27},{"name":"880p0","width":880,"height":880,"bitrate":800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":880,"Height":880,"Bitrate":800000,"CurrentOutput":[{"name":"low-bitrate","width":880,"height":880,"bitrate":400000,"fps":0,"quality":27},{"name":"880p0","width":880,"height":880,"bitrate":960000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/886_534_12700000.json b/video/fixtures/profiles_tests/886_534_12700000.json index 8ace769d3..f277b8c3d 100644 --- a/video/fixtures/profiles_tests/886_534_12700000.json +++ b/video/fixtures/profiles_tests/886_534_12700000.json @@ -1 +1 @@ -{"Width":886,"Height":534,"Bitrate":12700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"534p0","width":886,"height":534,"bitrate":12700000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":886,"Height":534,"Bitrate":12700000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"534p0","width":886,"height":534,"bitrate":15240000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/900_1200_10900000.json b/video/fixtures/profiles_tests/900_1200_10900000.json index e16eac852..b74fb2d74 100644 --- a/video/fixtures/profiles_tests/900_1200_10900000.json +++ b/video/fixtures/profiles_tests/900_1200_10900000.json @@ -1 +1 @@ -{"Width":900,"Height":1200,"Bitrate":10900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":900,"height":1200,"bitrate":10900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":900,"Height":1200,"Bitrate":10900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"720p0","width":1280,"height":720,"bitrate":4000000,"fps":0,"quality":27},{"name":"1200p0","width":900,"height":1200,"bitrate":13080000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/954_392_500000.json b/video/fixtures/profiles_tests/954_392_500000.json index 912cc0e23..99a903e45 100644 --- a/video/fixtures/profiles_tests/954_392_500000.json +++ b/video/fixtures/profiles_tests/954_392_500000.json @@ -1 +1 @@ -{"Width":954,"Height":392,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":954,"height":392,"bitrate":250000,"fps":0,"quality":27},{"name":"392p0","width":954,"height":392,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":954,"Height":392,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":954,"height":392,"bitrate":250000,"fps":0,"quality":27},{"name":"392p0","width":954,"height":392,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_540_600000.json b/video/fixtures/profiles_tests/960_540_600000.json index 317ce3725..0705d4ecd 100644 --- a/video/fixtures/profiles_tests/960_540_600000.json +++ b/video/fixtures/profiles_tests/960_540_600000.json @@ -1 +1 @@ -{"Width":960,"Height":540,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":960,"height":540,"bitrate":300000,"fps":0,"quality":27},{"name":"540p0","width":960,"height":540,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":960,"Height":540,"Bitrate":600000,"CurrentOutput":[{"name":"low-bitrate","width":960,"height":540,"bitrate":300000,"fps":0,"quality":27},{"name":"540p0","width":960,"height":540,"bitrate":720000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_540_7000000.json b/video/fixtures/profiles_tests/960_540_7000000.json index a24b296e1..75643fc62 100644 --- a/video/fixtures/profiles_tests/960_540_7000000.json +++ b/video/fixtures/profiles_tests/960_540_7000000.json @@ -1 +1 @@ -{"Width":960,"Height":540,"Bitrate":7000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"540p0","width":960,"height":540,"bitrate":7000000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":960,"Height":540,"Bitrate":7000000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"540p0","width":960,"height":540,"bitrate":8400000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_544_1900000.json b/video/fixtures/profiles_tests/960_544_1900000.json index 2d8f22cda..4ab9e40c6 100644 --- a/video/fixtures/profiles_tests/960_544_1900000.json +++ b/video/fixtures/profiles_tests/960_544_1900000.json @@ -1 +1 @@ -{"Width":960,"Height":544,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"544p0","width":960,"height":544,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":960,"Height":544,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":1000000,"fps":0,"quality":27},{"name":"544p0","width":960,"height":544,"bitrate":2280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_720_1900000.json b/video/fixtures/profiles_tests/960_720_1900000.json index 0f765c32f..ba1e129d8 100644 --- a/video/fixtures/profiles_tests/960_720_1900000.json +++ b/video/fixtures/profiles_tests/960_720_1900000.json @@ -1 +1 @@ -{"Width":960,"Height":720,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":760000,"fps":0,"quality":27},{"name":"720p0","width":960,"height":720,"bitrate":1900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":960,"Height":720,"Bitrate":1900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":760000,"fps":0,"quality":27},{"name":"720p0","width":960,"height":720,"bitrate":2280000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_720_2100000.json b/video/fixtures/profiles_tests/960_720_2100000.json index 054170455..62acbbfb0 100644 --- a/video/fixtures/profiles_tests/960_720_2100000.json +++ b/video/fixtures/profiles_tests/960_720_2100000.json @@ -1 +1 @@ -{"Width":960,"Height":720,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":840000,"fps":0,"quality":27},{"name":"720p0","width":960,"height":720,"bitrate":2100000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":960,"Height":720,"Bitrate":2100000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":840000,"fps":0,"quality":27},{"name":"720p0","width":960,"height":720,"bitrate":2520000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_720_500000.json b/video/fixtures/profiles_tests/960_720_500000.json index ff3c35a8f..d4f4d7cae 100644 --- a/video/fixtures/profiles_tests/960_720_500000.json +++ b/video/fixtures/profiles_tests/960_720_500000.json @@ -1 +1 @@ -{"Width":960,"Height":720,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":960,"height":720,"bitrate":250000,"fps":0,"quality":27},{"name":"720p0","width":960,"height":720,"bitrate":500000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":960,"Height":720,"Bitrate":500000,"CurrentOutput":[{"name":"low-bitrate","width":960,"height":720,"bitrate":250000,"fps":0,"quality":27},{"name":"720p0","width":960,"height":720,"bitrate":600000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/960_960_2800000.json b/video/fixtures/profiles_tests/960_960_2800000.json index 7e04d5575..180c00ac3 100644 --- a/video/fixtures/profiles_tests/960_960_2800000.json +++ b/video/fixtures/profiles_tests/960_960_2800000.json @@ -1 +1 @@ -{"Width":960,"Height":960,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":840000,"fps":0,"quality":27},{"name":"960p0","width":960,"height":960,"bitrate":2800000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":960,"Height":960,"Bitrate":2800000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":840000,"fps":0,"quality":27},{"name":"960p0","width":960,"height":960,"bitrate":3360000,"fps":0,"quality":27}]} \ No newline at end of file diff --git a/video/fixtures/profiles_tests/992_1302_2900000.json b/video/fixtures/profiles_tests/992_1302_2900000.json index 284f1bc8a..149cf3ce5 100644 --- a/video/fixtures/profiles_tests/992_1302_2900000.json +++ b/video/fixtures/profiles_tests/992_1302_2900000.json @@ -1 +1 @@ -{"Width":992,"Height":1302,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":620781,"fps":0,"quality":27},{"name":"1302p0","width":992,"height":1302,"bitrate":2900000,"fps":0,"quality":27}]} \ No newline at end of file +{"Width":992,"Height":1302,"Bitrate":2900000,"CurrentOutput":[{"name":"360p0","width":640,"height":360,"bitrate":620781,"fps":0,"quality":27},{"name":"1302p0","width":992,"height":1302,"bitrate":3480000,"fps":0,"quality":27}]} \ No newline at end of file