Skip to content

Commit

Permalink
feat: added ability for video file playback
Browse files Browse the repository at this point in the history
  • Loading branch information
willcray committed Nov 11, 2024
1 parent 46624fc commit 9cbae4b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions _pages/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ <h4>
</div>
{% elsif x.picture %}
<img src="{{ x.picture | relative_url }}" class="img-fluid">
{% elsif x.video_file %}
<video autoplay muted loop playsinline width="100%">
<source src="{{ x.video_file | relative_url }}" type="video/mp4">
Your browser does not support the video tag.
</video>
{% endif %}
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions _projects/1-review-app.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: page
categories: Embedded
title: Review App
picture: /images/projects/YC_Demo.mp4
title: ReView
video_file: /images/projects/YC_Demo.mp4
---
I built an app that allows users to learn what's recyclable and compostable in their area by taking a photo of an item. The app uses a convolutional neural network to classify the item and a rule-based system to determine if it's recyclable or compostable. It's built using a React Native/TypeScript and a Firebase/AWS Sagemaker backend.
ReView is an app that allows users to learn what's recyclable and compostable in their area by taking a photo of an item. The app uses a convolutional neural network to classify the item and a rule-based system to determine if it's recyclable or compostable. It's built using a React Native/TypeScript and a Firebase/AWS Sagemaker backend.

0 comments on commit 9cbae4b

Please sign in to comment.