Skip to content

Ashutosh00710/apex-videostream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Apex Video Streaming

Preview

Key Controls

Key Action
Volume Up
Volume Down
Move 5s Forward
Move 5s Backward

Folder Structure

├── ...
├── public
│ ├── ...images
│ ├── index.html
│ └── manifest.json
├── src
│ ├── assets                        # media files related to project
│ │ ├── apex_mobile.jpg
│ │ ├── Apex.png
│ │ └── background.png
│ ├── hooks                         # custom hooks
│ │ ├── useFallBack.js              # fallback case of refresh browser
│ │ └── useKeyDown.js               # video controls from keys
│ ├── App.css                       # styles for App component
│ ├── App.js                        # Main component
│ ├── index.css
│ └── index.js
├── ...