@@ -66,11 +66,14 @@ private function getKiloBitRate(): int
66
66
public function get (): array
67
67
{
68
68
$ dimension = $ this ->getDimensions ();
69
+
69
70
$ this ->height = $ dimension ->getHeight ();
71
+ $ width = $ dimension ->getWidth ();
70
72
$ ratio = $ dimension ->getRatio ()->getValue ();
73
+
71
74
$ kilobitrate = $ this ->getKiloBitRate ();
72
75
73
- $ representations [] = $ this ->addRepresentation ($ ratio , $ kilobitrate , $ this ->height );
76
+ $ representations [] = $ this ->addRepresentation ($ kilobitrate , $ width , $ this ->height );
74
77
75
78
$ heights = array_filter ($ this ->heights , function ($ value ) {
76
79
return $ value < $ this ->height ;
@@ -80,26 +83,22 @@ public function get(): array
80
83
$ kilobitrates = $ this ->getKiloBitRates ($ kilobitrate , count ($ heights ));
81
84
82
85
foreach (array_values ($ heights ) as $ key => $ height ) {
83
- $ representations [] = $ this ->addRepresentation ($ ratio , $ kilobitrates [$ key ], $ height );
86
+ $ representations [] = $ this ->addRepresentation ($ kilobitrates [$ key ], round_to_even ( $ ratio * $ height ) , $ height );
84
87
}
85
88
}
86
89
87
90
return array_reverse ($ representations );
88
91
}
89
92
90
93
/**
91
- * @param $ratio
94
+ * @param $width
92
95
* @param $kilobitrate
93
96
* @param $height
94
97
* @return Representation
95
98
* @throws Exception
96
99
*/
97
- private function addRepresentation ($ ratio , $ kilobitrate , $ height ): Representation
100
+ private function addRepresentation ($ kilobitrate , $ width , $ height )
98
101
{
99
- $ width = (int )$ height * $ ratio ;
100
-
101
- if ($ width % 2 == 1 ) $ width ++;
102
-
103
102
return (new Representation ())->setKiloBitrate ($ kilobitrate )->setResize ($ width , $ height );
104
103
}
105
104
@@ -111,15 +110,12 @@ private function addRepresentation($ratio, $kilobitrate, $height): Representatio
111
110
private function getKiloBitRates ($ kilobitrate , $ count )
112
111
{
113
112
$ divided_by = 1.3 ;
114
- $ kilobitrates = [];
115
113
116
- for ($ i = 0 ; $ i < $ count; $ i ++ ) {
114
+ while ($ count ) {
117
115
$ kbitrate = intval ($ kilobitrate / $ divided_by );
118
-
119
- if ($ kbitrate < 100 ) $ kbitrate = 100 ;
120
-
121
- $ kilobitrates [] = $ kbitrate ;
116
+ $ kilobitrates [] = ($ kbitrate < 100 ) ? 100 : $ kbitrate ;
122
117
$ divided_by += .3 ;
118
+ $ count --;
123
119
}
124
120
125
121
return $ kilobitrates ;
0 commit comments