diff --git a/media/exploring-if.media b/media/exploring-if.media new file mode 100644 index 0000000..b4b60fc --- /dev/null +++ b/media/exploring-if.media @@ -0,0 +1,7 @@ +file: iframe:https://media.ccc.de/v/bornhack2022-4201-exploring-the-degrees/oembed +title: 'Exploring the Degrees of Freedom in Designing Interactive Fiction' +date: 20220807 +description: > + My main talk for BornHack 2022. + + More information: https://bornhack.dk/bornhack-2022/program/exploring-the-degrees-of-freedom-in-designing-interactive-fiction/ diff --git a/media/roundworm.media b/media/roundworm.media new file mode 100644 index 0000000..92f0280 --- /dev/null +++ b/media/roundworm.media @@ -0,0 +1,7 @@ +file: iframe:https://media.ccc.de/v/bornhack2022-4213-roundworm-a-simple-fro/oembed +title: 'roundworm: A simple frontend for browsing pictures and videos stored in S3 storage' +date: 20220807 +description: > + My lightning talk for BornHack 2022. + + More information: https://bornhack.dk/bornhack-2022/program/roundworm-a-simple-frontend-for-browsing-pictures-and-videos-stored-in-s3-storage/ diff --git a/scripts/generate-pages.py b/scripts/generate-pages.py index 872c0c5..881c6ae 100755 --- a/scripts/generate-pages.py +++ b/scripts/generate-pages.py @@ -80,6 +80,12 @@ def generate_video_section_html(section_html, media): thumbnail=thumbnail, link=link) return html_out +def iframe_video(file_src): + return '''\ + +'''.format(url=file_src) + def extern_video(file_src): url = 'https://media-metanohi-name.eu-central-1.linodeobjects.com/media/' + file_src return '''\ @@ -113,6 +119,7 @@ def generate_video_page(base_dir, out_dir, base_html, showing_html, media): file_type, file_src = media['file'].split(':', 1) actions = { 'extern': extern_video, + 'iframe': iframe_video 'youtube': youtube_video } video_html = actions[file_type](file_src) diff --git a/thumbnails/exploring-if.jpg b/thumbnails/exploring-if.jpg new file mode 100644 index 0000000..58aafbd Binary files /dev/null and b/thumbnails/exploring-if.jpg differ diff --git a/thumbnails/roundworm.jpg b/thumbnails/roundworm.jpg new file mode 100644 index 0000000..b85193a Binary files /dev/null and b/thumbnails/roundworm.jpg differ