Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions transcoding/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ Run the following commands to create a new bucket and copy tutorial files to the
Make sure you're in this `transcoding` directory.

```
gsutil mb -p [PROJECT_ID] -b on -l US gs://[BUCKET_NAME]
gsutil cp -R transcode.sh input gs://[BUCKET_NAME]
gcloud storage buckets create gs://[BUCKET_NAME] --project=[PROJECT_ID] --uniform-bucket-level-access --location=US
gcloud storage cp --recursive transcode.sh input gs://[BUCKET_NAME]
```

To learn more about creating storage buckets, see the [Cloud Storage documentation](https://cloud.google.com/storage/docs/creating-buckets).
Expand Down Expand Up @@ -237,7 +237,7 @@ status:
The job stores encoded video files in the same Cloud Storage bucket. To list the objects, run:

```
gsutil ls -lR gs://[BUCKET_NAME]/output
gcloud storage ls --long --recursive gs://[BUCKET_NAME]/output
```

It displays a list of the encoded video files.
Expand All @@ -256,7 +256,7 @@ You can also browse the objects with the [Console](https://console.cloud.google.
To download the files, run:

```
gsutil cp -R gs://[BUCKET_NAME]/output .
gcloud storage cp --recursive gs://[BUCKET_NAME]/output .
```

You will find the new files in the output directory inside the current directory.
Expand Down