Skip to content

Commit d785845

Browse files
performance improved
1 parent eca126a commit d785845

File tree

2 files changed

+23
-14
lines changed

2 files changed

+23
-14
lines changed

src/AutoRepresentations.php

+10-14
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,14 @@ private function getKiloBitRate(): int
6666
public function get(): array
6767
{
6868
$dimension = $this->getDimensions();
69+
6970
$this->height = $dimension->getHeight();
71+
$width = $dimension->getWidth();
7072
$ratio = $dimension->getRatio()->getValue();
73+
7174
$kilobitrate = $this->getKiloBitRate();
7275

73-
$representations[] = $this->addRepresentation($ratio, $kilobitrate, $this->height);
76+
$representations[] = $this->addRepresentation($kilobitrate, $width, $this->height);
7477

7578
$heights = array_filter($this->heights, function ($value) {
7679
return $value < $this->height;
@@ -80,26 +83,22 @@ public function get(): array
8083
$kilobitrates = $this->getKiloBitRates($kilobitrate, count($heights));
8184

8285
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);
8487
}
8588
}
8689

8790
return array_reverse($representations);
8891
}
8992

9093
/**
91-
* @param $ratio
94+
* @param $width
9295
* @param $kilobitrate
9396
* @param $height
9497
* @return Representation
9598
* @throws Exception
9699
*/
97-
private function addRepresentation($ratio, $kilobitrate, $height): Representation
100+
private function addRepresentation($kilobitrate, $width, $height)
98101
{
99-
$width = (int)$height * $ratio;
100-
101-
if ($width % 2 == 1) $width++;
102-
103102
return (new Representation())->setKiloBitrate($kilobitrate)->setResize($width, $height);
104103
}
105104

@@ -111,15 +110,12 @@ private function addRepresentation($ratio, $kilobitrate, $height): Representatio
111110
private function getKiloBitRates($kilobitrate, $count)
112111
{
113112
$divided_by = 1.3;
114-
$kilobitrates = [];
115113

116-
for ($i = 0; $i < $count; $i++) {
114+
while ($count) {
117115
$kbitrate = intval($kilobitrate / $divided_by);
118-
119-
if ($kbitrate < 100) $kbitrate = 100;
120-
121-
$kilobitrates[] = $kbitrate;
116+
$kilobitrates[] = ($kbitrate < 100) ? 100 : $kbitrate;
122117
$divided_by += .3;
118+
$count--;
123119
}
124120

125121
return $kilobitrates;

src/helpers.php

+13
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,17 @@ function hls(string $input_path, string $save_path = null): string
6666
return "Failed: error: " . $e->getMessage();
6767
}
6868
}
69+
}
70+
71+
if (! function_exists('round_to_even')) {
72+
/**
73+
* Round a number to nearest even number
74+
*
75+
* @param float $number
76+
* @return int
77+
*/
78+
function round_to_even(float $number): int
79+
{
80+
return (($number = intval($number)) % 2 == 0) ? $number : $number + 1;
81+
}
6982
}

0 commit comments

Comments
 (0)