You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1023 B
31 lines
1023 B
import React from 'react'; |
|
import EditStorage from './EditStorage'; |
|
|
|
// eslint-disable-next-line react/function-component-definition |
|
export default function ConfigStorageInfo() { |
|
return ( |
|
<> |
|
<p className="description"> |
|
Owncast supports optionally using external storage providers to stream your video. Learn |
|
more about this by visiting our{' '} |
|
<a |
|
href="https://owncast.online/docs/storage/?source=admin" |
|
target="_blank" |
|
rel="noopener noreferrer" |
|
> |
|
Storage Documentation |
|
</a> |
|
. |
|
</p> |
|
<p className="description"> |
|
Configuring this incorrectly will likely cause your video to be unplayable. Double check the |
|
documentation for your storage provider on how to configure the bucket you created for |
|
Owncast. |
|
</p> |
|
<p className="description"> |
|
Keep in mind this is for live streaming, not for archival, recording or VOD purposes. |
|
</p> |
|
<EditStorage /> |
|
</> |
|
); |
|
}
|
|
|