File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ Run the following commands to create a new bucket and copy tutorial files to the
4747Make sure you're in this ` transcoding ` directory.
4848
4949```
50- gsutil mb -p [PROJECT_ID] -b on -l US gs://[BUCKET_NAME]
51- gsutil cp -R transcode.sh input gs://[BUCKET_NAME]
50+ gcloud storage buckets create gs://[BUCKET_NAME] --project=[PROJECT_ID] --uniform-bucket-level-access --location=US
51+ gcloud storage cp --recursive transcode.sh input gs://[BUCKET_NAME]
5252```
5353
5454To learn more about creating storage buckets, see the [ Cloud Storage documentation] ( https://cloud.google.com/storage/docs/creating-buckets ) .
@@ -237,7 +237,7 @@ status:
237237The job stores encoded video files in the same Cloud Storage bucket. To list the objects, run:
238238
239239` ` `
240- gsutil ls -lR gs://[BUCKET_NAME]/output
240+ gcloud storage ls --long --recursive gs://[BUCKET_NAME]/output
241241```
242242
243243It displays a list of the encoded video files.
@@ -256,7 +256,7 @@ You can also browse the objects with the [Console](https://console.cloud.google.
256256To download the files, run:
257257
258258```
259- gsutil cp -R gs://[BUCKET_NAME]/output .
259+ gcloud storage cp --recursive gs://[BUCKET_NAME]/output .
260260```
261261
262262You will find the new files in the output directory inside the current directory.
You can’t perform that action at this time.
0 commit comments