From e6b6f6c745a4b989d32810d19750fe0a299b7acb Mon Sep 17 00:00:00 2001 From: artem matinian Date: Tue, 10 Oct 2023 19:27:24 +0300 Subject: [PATCH 1/2] Backup & Storage fix --- templates/documentation/vod/amazon-cold-storage-backup.md | 2 +- templates/documentation/vod/azure-cold-storage-backup.md | 2 +- templates/documentation/vod/google-cold-storage-backup.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/documentation/vod/amazon-cold-storage-backup.md b/templates/documentation/vod/amazon-cold-storage-backup.md index 37a2ab75..3e8fa2b6 100644 --- a/templates/documentation/vod/amazon-cold-storage-backup.md +++ b/templates/documentation/vod/amazon-cold-storage-backup.md @@ -4,7 +4,7 @@ slug: "amazon-cold-storage-backup" meta: description: Backup videos uploaded to api.video to Amazon Storage account with a simple script. --- -# Video backup to Azure +# Video backup to Amazon S3 At [api.video](https://api.video/) we understand that sometimes, you want to make sure that your videos are safe and secure. Although api.video has a backup and disaster recovery plan, it’s up to you to decide if you want an extra backup resource or if you would like to use api.video just to transcode your videos but eventually store them on a different resource. diff --git a/templates/documentation/vod/azure-cold-storage-backup.md b/templates/documentation/vod/azure-cold-storage-backup.md index 930914a5..d27fcf99 100644 --- a/templates/documentation/vod/azure-cold-storage-backup.md +++ b/templates/documentation/vod/azure-cold-storage-backup.md @@ -4,7 +4,7 @@ slug: "azure-cold-storage-backup" meta: description: Backup videos uploaded to api.video to Azure Storage account with a simple script. --- -# Video backup to Azure +# Video backup to Azure Storage account At [api.video](https://api.video/) we understand that sometimes, you want to make sure that your videos are safe and secure. Although api.video has a backup and disaster recovery plan, it’s up to you to decide if you want an extra backup resource or if you would like to use api.video just to transcode your videos but eventually store them on a different resource. diff --git a/templates/documentation/vod/google-cold-storage-backup.md b/templates/documentation/vod/google-cold-storage-backup.md index aed0daef..369e149a 100644 --- a/templates/documentation/vod/google-cold-storage-backup.md +++ b/templates/documentation/vod/google-cold-storage-backup.md @@ -4,7 +4,7 @@ slug: "google-cold-storage-backup" meta: description: Backup videos uploaded to api.video to Google Storage account with a simple script. --- -# Video backup to Azure +# Video backup to Google Storage accounts At [api.video](https://api.video/) we understand that sometimes, you want to make sure that your videos are safe and secure. Although api.video has a backup and disaster recovery plan, it’s up to you to decide if you want an extra backup resource or if you would like to use api.video just to transcode your videos but eventually store them on a different resource. From 9686b40c3bb8dedc8ce000a2a2780104010954b0 Mon Sep 17 00:00:00 2001 From: artem matinian Date: Tue, 10 Oct 2023 19:32:04 +0300 Subject: [PATCH 2/2] Backup & Storage fix --- templates/documentation/vod/amazon-cold-storage-backup.md | 4 ++-- templates/documentation/vod/google-cold-storage-backup.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/documentation/vod/amazon-cold-storage-backup.md b/templates/documentation/vod/amazon-cold-storage-backup.md index 3e8fa2b6..3a8945a2 100644 --- a/templates/documentation/vod/amazon-cold-storage-backup.md +++ b/templates/documentation/vod/amazon-cold-storage-backup.md @@ -12,7 +12,7 @@ That’s why, we’ve created this guide so you can store the videos you’ve al ## How it’s done? -This guide will explain how you can store your transcoded videos on Amazon S3 Account. In short, all you need to do is run a small script that will copy the videos from [api.video](https://api.video/) to Azure. The videos will be kept on api.video as well, however, if you wish to delete them you can do so by leveraging the `DELETE /videos` endpoint, more information can be found [here](https://docs.api.video/vod/delete-a-video). +This guide will explain how you can store your transcoded videos on Amazon S3 Account. In short, all you need to do is run a small script that will copy the videos from [api.video](https://api.video/) to Amazon S3. The videos will be kept on api.video as well, however, if you wish to delete them you can do so by leveraging the `DELETE /videos` endpoint, more information can be found [here](https://docs.api.video/vod/delete-a-video). ## Preparation @@ -57,7 +57,7 @@ $ npm install After the dependencies are installed, we will need to enter the credentials we have copied in the preparation phase. -Edit the `.env` file and replace the following with the keys you've received from Azure and [api.video](https://api.video/). +Edit the `.env` file and replace the following with the keys you've received from AWS and [api.video](https://api.video/). ```bash # possible providers: google, aws, azure diff --git a/templates/documentation/vod/google-cold-storage-backup.md b/templates/documentation/vod/google-cold-storage-backup.md index 369e149a..580be06a 100644 --- a/templates/documentation/vod/google-cold-storage-backup.md +++ b/templates/documentation/vod/google-cold-storage-backup.md @@ -4,7 +4,7 @@ slug: "google-cold-storage-backup" meta: description: Backup videos uploaded to api.video to Google Storage account with a simple script. --- -# Video backup to Google Storage accounts +# Video backup to Google Storage account At [api.video](https://api.video/) we understand that sometimes, you want to make sure that your videos are safe and secure. Although api.video has a backup and disaster recovery plan, it’s up to you to decide if you want an extra backup resource or if you would like to use api.video just to transcode your videos but eventually store them on a different resource. @@ -12,7 +12,7 @@ That’s why, we’ve created this guide so you can store the videos you’ve al ## How it’s done? -This guide will explain how you can store your transcoded videos on Amazon S3 Account. In short, all you need to do is run a small script that will copy the videos from [api.video](https://api.video/) to Azure. The videos will be kept on api.video as well, however, if you wish to delete them you can do so by leveraging the `DELETE /videos` endpoint, more information can be found [here](https://docs.api.video/vod/delete-a-video). +This guide will explain how you can store your transcoded videos on Google Storage account. In short, all you need to do is run a small script that will copy the videos from [api.video](https://api.video/) to Google Storage account. The videos will be kept on api.video as well, however, if you wish to delete them you can do so by leveraging the `DELETE /videos` endpoint, more information can be found [here](https://docs.api.video/vod/delete-a-video). ## Preparation @@ -84,7 +84,7 @@ $ npm install After the dependencies are installed, we will need to enter the credentials we have copied in the preparation phase. -Edit the `.env` file and replace the following with the keys you've received from Azure and [api.video](https://api.video/). +Edit the `.env` file and replace the following with the keys you've received from Google and [api.video](https://api.video/). ```bash # possible providers: google, aws, azure