Skip to content

Commit ef69722

Browse files
authored
fix video asset url (GoogleCloudPlatform#884)
1 parent 8721645 commit ef69722

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

video/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ Video Intelligence API from PHP.
2929
(if composer is installed globally).
3030
5. **Run** with the command `php src/SNIPPET_NAME.php`. For example:
3131
```sh
32-
$ php src/analyze_shots.php gs://demomaker/cat.mp4
32+
$ php src/analyze_shots.php gs://cloud-samples-data/video/cat.mp4
3333
Usage: php src/analyze_shots.php URI
3434

35-
$ php src/analyze_shots.php gs://demomaker/cat.mp4
35+
$ php src/analyze_shots.php gs://cloud-samples-data/video/cat.mp4
3636
Shot: 0s to 14.84s
3737
```
3838

video/quickstart.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
# Execute a request.
2929
$options = [
30-
'inputUri' => 'gs://demomaker/cat.mp4',
30+
'inputUri' => 'gs://cloud-samples-data/video/cat.mp4',
3131
'features' => [Feature::LABEL_DETECTION]
3232
];
3333
$operation = $video->annotateVideo($options);

0 commit comments

Comments
 (0)