Skip to content

Commit 64cc65b

Browse files
- Add Google Cloud Storage library
- Bug fixes
1 parent b96d25b commit 64cc65b

6 files changed

+145
-7
lines changed

README.md

+35-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ $ffmpeg = Streaming\FFMpeg::create($config);
6969
```
7070

7171
### Opening a File
72-
There are three ways to open a file:
72+
There are several ways to open a file:
7373

7474
#### 1. From a Local Path
7575
You can pass a local path of video to the `open` method:
@@ -144,6 +144,23 @@ $video = $ffmpeg->fromS3($config, $bucket, $key);
144144
```
145145
A path can also be passed to save the file on your local computer/server.
146146

147+
148+
#### 4. From Google Cloud Storage
149+
[Google Cloud Storage](https://console.cloud.google.com/storage) is a RESTful online file storage web service for storing and accessing data on Google Cloud Platform infrastructure. The service combines the performance and scalability of Google's cloud with advanced security and sharing capabilities. It is an Infrastructure as a Service (IaaS), comparable to Amazon S3 online storage service. Contrary to Google Drive and according to different service specifications, Google Cloud Storage appears to be more suitable for enterprises. [Learn more](https://en.wikipedia.org/wiki/Google_Storage)
150+
- For creating credentials, read the Cloud Storage Authentication found **[here](https://cloud.google.com/storage/docs/authentication)** or you can [create it](https://console.cloud.google.com/apis/credentials) directly.
151+
152+
For downloading a file from Google Cloud Storage, you need to pass an associative array of config, the name of your bucket, and the name of your file in the bucket to the `fromGCS` method:
153+
``` php
154+
$config = [
155+
'keyFilePath' => '/path/to/credentials.json'
156+
];
157+
$bucket = 'my_bucket';
158+
$name = 'my_sweetie.mp4';
159+
160+
$video = $ffmpeg->fromGCS($config, $bucket, $name);
161+
```
162+
A path can also be passed to save the file on your local computer/server.
163+
147164
### DASH
148165
**[Dynamic Adaptive Streaming over HTTP (DASH)](https://en.wikipedia.org/wiki/Dynamic_Adaptive_Streaming_over_HTTP)**, also known as MPEG-DASH, is an adaptive bitrate streaming technique that enables high quality streaming of media content over the Internet delivered from conventional HTTP web servers.
149166

@@ -270,7 +287,7 @@ $video->HLS()
270287
```
271288

272289
### Saving Files
273-
There are three options to save your packaged video files:
290+
There are several options to save your packaged files.
274291

275292
#### 1. To a Local Path
276293
You can pass a local path to the `save` method. If there was no directory in the path, then the package auto makes the directory.
@@ -352,6 +369,22 @@ A path can also be passed to save a copy of files on your local computer/server.
352369
``` php
353370
$hls->saveToS3($config, $dest, '/var/www/media/videos/hls/test.m3u8');
354371
```
372+
373+
#### 4. TO Google Cloud Storage
374+
You can save and upload entire packaged video files to **[Google Cloud Storage](https://console.cloud.google.com/storage)**. For uploading files, you need to have credentials.
375+
``` php
376+
$config = [
377+
'keyFilePath' => '/path/to/credentials.json'
378+
];
379+
$bucket = 'my_bucket';
380+
381+
$dash->saveToGCS($config, $bucket)
382+
```
383+
A path can also be passed to save a copy of files on your local computer/server.
384+
``` php
385+
$hls->saveToGCS($config, $bucket, '/var/www/media/videos/hls/test.m3u8');
386+
```
387+
355388
**NOTE:** You can mix opening and saving options together. For instance, you can open a file on your local computer/server and save packaged files to a Cloud (or vice versa).
356389

357390
![schema](/docs/schema.gif?raw=true "schema" )

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"php-ffmpeg/php-ffmpeg": "^0.14",
5151
"guzzlehttp/guzzle": "~6.0",
5252
"aws/aws-sdk-php": "~3.0",
53+
"google/cloud-storage": "^1.14",
5354
"ext-openssl": "*"
5455
},
5556
"scripts": {

src/Export.php

+40-5
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ public function save(string $path = null, $analyse = true)
6060
$this->getFilter()
6161
);
6262

63-
try{
63+
try {
6464
$this->media->save(
6565
$this->getFormat(),
6666
$path
6767
);
68-
}catch (ExceptionInterface $e){
68+
} catch (ExceptionInterface $e) {
6969
throw new RuntimeException(sprintf(
7070
"There was an error saving files: \n\n reason: \n %s",
7171
$e->getMessage()
@@ -169,7 +169,12 @@ public function saveToCloud(
169169
* @return mixed
170170
* @throws Exception
171171
*/
172-
public function saveToS3(array $config, string $dest, string $path = null, bool $analyse = true)
172+
public function saveToS3(
173+
array $config,
174+
string $dest,
175+
string $path = null,
176+
bool $analyse = true
177+
)
173178
{
174179
list($results, $tmp_dir) = $this->saveToTemporaryFolder($path, $analyse);
175180
sleep(1);
@@ -182,6 +187,36 @@ public function saveToS3(array $config, string $dest, string $path = null, bool
182187
return $results;
183188
}
184189

190+
/**
191+
* @param array $config
192+
* @param string $bucket
193+
* @param string|null $path
194+
* @param array $options
195+
* @param bool $userProject
196+
* @param bool $analyse
197+
* @return mixed
198+
* @throws Exception
199+
*/
200+
public function saveToGCS(
201+
array $config,
202+
string $bucket,
203+
string $path = null,
204+
array $options = [],
205+
$userProject = false,
206+
bool $analyse = true
207+
)
208+
{
209+
list($results, $tmp_dir) = $this->saveToTemporaryFolder($path, $analyse);
210+
sleep(1);
211+
212+
$google_cloud = new GoogleCloudStorage($config, $bucket, $userProject);
213+
$google_cloud->uploadDirectory($tmp_dir, $options);
214+
215+
$this->moveTmpFolder($path, $tmp_dir);
216+
217+
return $results;
218+
}
219+
185220
/**
186221
* @return array
187222
*/
@@ -215,7 +250,7 @@ private function saveToTemporaryFolder($path, $analyse)
215250
$basename = Helper::randomString();
216251

217252
if (null !== $path) {
218-
$basename = pathinfo($path)["basename"];
253+
$basename = pathinfo($path, PATHINFO_BASENAME);
219254
}
220255

221256
$tmp_dir = FileManager::tmpDir();
@@ -232,7 +267,7 @@ private function saveToTemporaryFolder($path, $analyse)
232267
private function moveTmpFolder(?string $path, $tmp_dir)
233268
{
234269
if (null !== $path) {
235-
FileManager::moveDir($tmp_dir, pathinfo($path)["dirname"] . DIRECTORY_SEPARATOR);
270+
FileManager::moveDir($tmp_dir, pathinfo($path, PATHINFO_DIRNAME) . DIRECTORY_SEPARATOR);
236271
} else {
237272
FileManager::deleteDirectory($tmp_dir);
238273
}

src/FFMpeg.php

+11
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,17 @@ public function fromS3(array $config, string $bucket, string $key, string $save_
8787
return $this->open($save_to, $is_tmp);
8888
}
8989

90+
91+
public function fromGCS(array $config, string $bucket, string $name, string $save_to = null, $userProject = false): Media
92+
{
93+
list($is_tmp, $save_to) = $this->isTmp($save_to);
94+
95+
$google_cloud = new GoogleCloudStorage($config, $bucket, $userProject);
96+
$google_cloud->download($name, $save_to);
97+
98+
return $this->open($save_to, $is_tmp);
99+
}
100+
90101
/**
91102
* @param $path
92103
* @return array

src/FileManager.php

+2
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,8 @@ public static function moveDir(string $source, string $destination)
190190
unlink($source . $file);
191191
}
192192
}
193+
194+
static::deleteDirectory($source);
193195
}
194196

195197
/**

src/GoogleCloudStorage.php

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<?php
2+
3+
/**
4+
* This file is part of the ******* package.
5+
*
6+
* (c) Amin Yazdanpanah <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
13+
namespace Streaming;
14+
15+
use Google\Cloud\Storage\StorageClient;
16+
17+
class GoogleCloudStorage
18+
{
19+
/**
20+
* @var \Google\Cloud\Storage\Bucket $bucket
21+
*/
22+
private $bucket;
23+
24+
/**
25+
* GoogleCloudStorage constructor.
26+
* @param string $bucket
27+
* @param bool $userProject
28+
* @param array $config
29+
*/
30+
public function __construct(array $config, string $bucket, $userProject = false)
31+
{
32+
$storage = new StorageClient($config);
33+
$this->bucket = $storage->bucket($bucket, $userProject);
34+
}
35+
36+
/**
37+
* @param string $dir
38+
* @param array $options
39+
*/
40+
public function uploadDirectory(string $dir, array $options = [])
41+
{
42+
foreach (scandir($dir) as $key => $filename) {
43+
$path = $dir . DIRECTORY_SEPARATOR . $filename;
44+
45+
if (is_file($path)) {
46+
$this->bucket->upload(fopen($path, 'r'), $options);
47+
}
48+
}
49+
}
50+
51+
public function download(string $name, string $save_to)
52+
{
53+
return $this->bucket->object($name)
54+
->downloadToFile($save_to);
55+
}
56+
}

0 commit comments

Comments
 (0)