Skip to content

Commit

Permalink
Added NGIAB end-to-end flow video
Browse files Browse the repository at this point in the history
  • Loading branch information
manjilasingh committed Sep 19, 2024
1 parent 167a4eb commit b81c3cd
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ tags:
import GitHubReadme from '@site/src/components/GitHubReadme';

<GitHubReadme username="CIROH-UA" repo="NGIAB-CloudInfra" />


Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
sidebar_position: 4
title: "NGIAB Workflow Video"
description: "NextGen In a Box (NGIAB) Workflow Video"
tags:
- NextGen In A Box
- NGIAB
- NGIAB Data Preprocess
- Demonstration
- Video
- Workflow
---

# NGIAB and NGIAB Data Preprocess:
## End-to-End Workflow Demonstration

This video demonstrates the complete end-to-end workflow of running the NextGen In A Box (NGIAB) with the NGIAB Data Preprocess. Watch as the Data Preprocess builds and validates input data, followed by NGIAB executing the NextGen model and handling the output.

import VideoPlayer from '/src/components/VideoPlayer.js';

<VideoPlayer url="https://youtu.be/Z1iov-o23ug" />
16 changes: 13 additions & 3 deletions src/components/VideoPlayer.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
import React from 'react';
import ReactPlayer from 'react-player';

export default function VideoPlayer({ url }) {
const ResponsivePlayer = ({ url }) => {
return (
<ReactPlayer url={url} width="100%" height="400px" controls />
<div className="player-wrapper">
<ReactPlayer
className="react-player"
url={url}
width="100%"
height="100%"
controls
/>
</div>
);
}
};

export default ResponsivePlayer;

0 comments on commit b81c3cd

Please sign in to comment.