@@ -13,6 +13,7 @@ Place your assets in the appropriate subdirectory:
1313- ** Icons** : ` assets/icons/ ` - Small icon files (typically SVG)
1414- ** Logos** : ` assets/logos/ ` - Logo files (typically SVG)
1515- ** Images** : ` assets/images/ ` - Image files (PNG, JPG, WebP, etc.)
16+ - ** Videos** : ` assets/videos/ ` - Video files (MP4, WebM, MOV, AVI, MKV, etc.)
1617
1718### Supported File Formats
1819
@@ -22,6 +23,9 @@ The following formats are supported:
2223- ** PNG** - Raster format with transparency support
2324- ** JPG/JPEG** - Raster format, smaller file size, no transparency
2425- ** WebP** - Modern raster format with excellent compression
26+ - ** MP4** (recommended for videos) - Widely supported video format
27+ - ** WebM** - Open video format with good compression
28+ - ** MOV, AVI, MKV** - Other supported video formats
2529
2630### Format Conversion
2731
@@ -78,17 +82,20 @@ Assets are automatically made available at shorter, direct URLs:
7882- Icons: ` https://assets.awsug.nz/icons/filename.svg `
7983- Logos: ` https://assets.awsug.nz/logos/filename.svg `
8084- Images: ` https://assets.awsug.nz/images/filename.png `
85+ - Videos: ` https://assets.awsug.nz/videos/filename.mp4 `
8186
8287For example:
8388
8489- ` assets/icons/aws-black-orange.svg ` → ` https://assets.awsug.nz/icons/aws-black-orange.svg `
8590- ` assets/logos/datacom-primary-blue.svg ` → ` https://assets.awsug.nz/logos/datacom-primary-blue.svg `
91+ - ` assets/videos/awscd-ocenia-cfp-2026.mp4 ` → ` https://assets.awsug.nz/videos/awscd-ocenia-cfp-2026.mp4 `
8692
8793** Full URL format:** All assets can be accessed using the full URL path:
8894
8995- ` https://assets.awsug.nz/icons/aws-black-orange.svg `
9096- ` https://assets.awsug.nz/logos/datacom-primary-blue.svg `
9197- ` https://assets.awsug.nz/images/your-image.png `
98+ - ` https://assets.awsug.nz/videos/your-video.mp4 `
9299
93100These URLs are created automatically during deployment - no manual configuration needed.
94101
@@ -112,6 +119,10 @@ You can link directly to any asset using its direct URL:
112119
113120- ` https://assets.awsug.nz/images/your-image.png `
114121
122+ ** Videos:**
123+
124+ - ` https://assets.awsug.nz/videos/your-video.mp4 `
125+
115126### In HTML
116127
117128Embed an image directly:
@@ -128,6 +139,14 @@ Link to an image (opens in new tab):
128139</a >
129140```
130141
142+ Embed a video:
143+
144+ ``` html
145+ <video src =" https://assets.awsug.nz/videos/your-video.mp4" controls >
146+ Your browser does not support the video tag.
147+ </video >
148+ ```
149+
131150### In Markdown
132151
133152Display an image:
@@ -154,6 +173,10 @@ background-image: url('https://assets.awsug.nz/logos/datacom-primary-blue.svg');
154173
155174``` jsx
156175< img src= " https://assets.awsug.nz/icons/aws-black-orange.svg" alt= " AWS Icon" / >
176+
177+ < video src= " https://assets.awsug.nz/videos/your-video.mp4" controls>
178+ Your browser does not support the video tag.
179+ < / video>
157180```
158181
159182### Download Links
0 commit comments