Skip to content

Commit a933aae

Browse files
bug fixes and other minor improvements
1 parent ec49aeb commit a933aae

8 files changed

+18
-47
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](https://github.com/aminyazdanpanah/PHP-FFmpeg-video-streaming/blob/master/LICENSE)
88

99
## Overview
10-
This package provides integration with **[PHP-FFMpeg](https://github.com/PHP-FFMpeg/PHP-FFMpeg)** and package media content for online streaming such as DASH and HLS. You can also use **[DRM](https://en.wikipedia.org/wiki/Digital_rights_management)** for HLS packaging. There are several options to open a file from clouds and save files to them as well.
10+
This package provides integration with **[PHP-FFMpeg](https://github.com/PHP-FFMpeg/PHP-FFMpeg)** and packages media content for online streaming such as DASH and HLS. You can use **[DRM](https://en.wikipedia.org/wiki/Digital_rights_management)** for HLS packaging. There are several options to open a file from a cloud and save files to clouds as well.
1111
- **[Full Documentation](https://video.aminyazdanpanah.com/)** is available describing all features and components.
1212
- **[A complete example](https://video.aminyazdanpanah.com/start/example)** is provided. It contains server-side(Transcoding + cloud + progress + web socket) and client-side(progress bar + web socket + player).
1313
- For using DRM and encryption, I **recommend** trying **[Shaka PHP](https://github.com/aminyazdanpanah/shaka-php)**, which is a great tool for this use case.
@@ -111,7 +111,7 @@ $r_4k = (new Representation)->setKiloBitrate(17408)->setResize(3840, 2160);
111111

112112
$video->DASH()
113113
->HEVC()
114-
->addRepresentations($r_144p, $r_240p, $r_360p, $r_480p, $r_720p, $r_1080p, $r_2k, $r_4k)
114+
->addRepresentations([$r_144p, $r_240p, $r_360p, $r_480p, $r_720p, $r_1080p, $r_2k, $r_4k])
115115
->setAdaption('id=0,streams=v id=1,streams=a')
116116
->save('/var/www/media/videos/dash-stream.mpd');
117117
```
@@ -137,7 +137,7 @@ $r_720p = (new Representation)->setKiloBitrate(2048)->setResize(1280, 720);
137137
$video->HLS()
138138
->X264()
139139
->setHlsBaseUrl('https://bucket.s3-us-west-1.amazonaws.com/videos') // Add a base URL
140-
->addRepresentations($r_360p, $r_480p, $r_720p)
140+
->addRepresentations([$r_360p, $r_480p, $r_720p])
141141
->setHlsTime(5) // Set Hls Time. Default value is 10
142142
->setHlsAllowCache(false) // Default value is true
143143
->save();

src/AutoRepresentations.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private function getKiloBitrateValues(?array $k_bitrate_values): void
109109
{
110110
$count_sides = count($this->side_values);
111111

112-
if ($k_bitrate_values) {
112+
if (!empty($k_bitrate_values)) {
113113
if ($count_sides !== count($k_bitrate_values)) {
114114
throw new InvalidArgumentException("The count of side value array must be the same as the count of kilo bitrate array");
115115
}
@@ -133,7 +133,7 @@ private function getKiloBitrateValues(?array $k_bitrate_values): void
133133
*/
134134
private function getSideValues(?array $side_values): void
135135
{
136-
if ($side_values) {
136+
if (!empty($side_values)) {
137137
$this->side_values = $side_values;
138138
return;
139139
}

src/Export.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ private function tmpDirectory(?string $path): void
160160
*/
161161
private function makePaths(?string $path, array $clouds): void
162162
{
163-
if ($clouds) {
163+
if (!empty($clouds)) {
164164
$this->tmpDirectory($path);
165165
} elseif (!is_null($path)) {
166166
if (strlen($path) > PHP_MAXPATHLEN) {
@@ -197,15 +197,15 @@ public function __destruct()
197197
sleep(1);
198198

199199
if ($this->media->isTmp()) {
200-
@unlink($this->media->getPath());
200+
File::remove($this->media->getPath());
201201
}
202202

203203
if ($this->tmp_dir) {
204-
File::deleteDirectory($this->tmp_dir);
204+
File::remove($this->tmp_dir);
205205
}
206206

207207
if ($this instanceof HLS && $this->tmp_key_info_file) {
208-
@unlink($this->getHlsKeyInfoFile());
208+
File::remove($this->getHlsKeyInfoFile());
209209
}
210210
}
211211
}

src/FFMpeg.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function open(string $path, bool $is_tmp = false): Media
4444
} catch (ExceptionInterface $e) {
4545
if ($is_tmp) {
4646
sleep(1);
47-
@unlink($path);
47+
File::remove($path);
4848
}
4949
throw new RuntimeException("An error occurred while opening the file: " . $e->getMessage(), $e->getCode(), $e);
5050
}

src/File.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ private static function tmpDirPath(): string
8585
public static function moveDir(string $src, string $dst): void
8686
{
8787
static::filesystem('mirror', [$src, $dst]);
88-
static::deleteDirectory($src);
88+
static::remove($src);
8989
}
9090

9191
/**
9292
* @param $dir
9393
*/
94-
public static function deleteDirectory(string $dir): void
94+
public static function remove(string $dir): void
9595
{
9696
static::filesystem('remove', [$dir]);
9797
}

src/HLS.php

-13
Original file line numberDiff line numberDiff line change
@@ -115,19 +115,6 @@ public function encryption(string $save_to, string $url, int $length = 16): HLS
115115
return $this;
116116
}
117117

118-
/**
119-
* @param string $url
120-
* @param string $path
121-
* @param int $length
122-
* @return HLS
123-
* @deprecated Please use encryption instead
124-
*/
125-
public function generateRandomKeyInfo(string $url, string $path, int $length = 16): HLS
126-
{
127-
@trigger_error('generateRandomKeyInfo method is deprecated and will be removed in a future release. Use encryption instead.', E_USER_DEPRECATED);
128-
return $this->encryption($path, $url, $length);
129-
}
130-
131118
/**
132119
* @return string
133120
*/

src/Metadata.php

+6-8
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,13 @@ public function __construct(Export $export)
3434
*/
3535
public function extract(): array
3636
{
37-
$metadata["video"] = $this->getVideoMetadata();
38-
$metadata["streams"] = $this->getStreamsMetadata();
39-
40-
$filename = 'It is not possible to save metadata to clouds.';
41-
if (!$this->export->isTmpDir()) {
42-
$filename = $this->saveAsJson($metadata);
43-
}
37+
$metadata = [
38+
"video" => $this->getVideoMetadata(),
39+
"streams" => $this->getStreamsMetadata()
40+
];
4441

4542
return [
46-
'filename' => $filename,
43+
'filename' => !$this->export->isTmpDir() ? $this->saveAsJson($metadata) : null,
4744
'metadata' => $metadata
4845
];
4946
}
@@ -72,6 +69,7 @@ private function getVideoMetadata(): array
7269
*/
7370
private function getStreamsMetadata(): array
7471
{
72+
$metadata = [];
7573
$stream_path = $this->export->getPathInfo();
7674
$metadata["filename"] = $stream_path["dirname"] . DIRECTORY_SEPARATOR . $stream_path["basename"];
7775
$metadata["size_of_stream_dir"] = File::directorySize($stream_path["dirname"]);

src/Traits/Representations.php

-14
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,6 @@ trait Representations
2020
/** @var array */
2121
protected $representations = [];
2222

23-
/**
24-
* @param Representation $rep
25-
* @return $this
26-
* @deprecated Please use addRepresentations instead
27-
*/
28-
public function addRepresentation(Representation $rep)
29-
{
30-
@trigger_error('addRepresentation method is deprecated and will be removed in a future release. Use addRepresentations instead.', E_USER_DEPRECATED);
31-
$this->checkFormat();
32-
$this->representations[] = $rep;
33-
34-
return $this;
35-
}
36-
3723
/**
3824
* @return $this
3925
*/

0 commit comments

Comments
 (0)