AntonioNarcilio / video-player-hls

Try the video player 🎞️ that accepts videos in hls format (m3u8), with it you can watch streaming videos easily 🥳!
https://video-player-hls.vercel.app
10 stars 7 forks source link
antonio-narcilio hls hls-js hls-player hls-stream hls-video-player nextjs plyr typescript

preview

🚀 Technologies and tools used:

🗂 Project structure

.
├── public
│   ├── assets
│   │   ├── poster.svg
│   │   └── preview.png
│   ├── video
│   │   ├── 720p_000.mp4
│   │   ├── 720p_001.mp4
│   │   ├── 720p_002.mp4
│   │   ├── 720p_003.mp4
│   │   ├── 720p_004.mp4
│   │   ├── 720p_005.mp4
│   │   ├── 720p_006.mp4
│   │   ├── 720p_007.mp4
│   │   └── 720p.m3u8
│   └── favicon.svg
├── src
│   ├── assets
│   │   └── animations
│   │       ├── 404-error.json
│   │       └── 500-error.json
│   ├── components
│   │   ├── Head
│   │   │   ├── Head.tsx
│   │   │   └── index.ts
│   │   ├── HotToast
│   │   │   ├── HostToast.tsx
│   │   │   └── index.tsx
│   │   ├── LottieAnimation
│   │   │   ├── index.tsx
│   │   │   ├── LottieAnimation.tsx
│   │   │   └── styles.ts
│   │   └── Plyr
│   │       ├── index.ts
│   │       ├── Plyr.tsx
│   │       └── styles.ts
│   ├── pages
│   │   ├── api
│   │   │   └── v1
│   │   │       └── [slug].ts
│   │   ├── 404.tsx
│   │   ├── 500.tsx
│   │   ├── _app.tsx
│   │   ├── _document.tsx
│   │   └── index.tsx
│   ├── styles
│   │   ├── pages
│   │   │   ├── error
│   │   │   │   ├── index.ts
│   │   │   │   └── styles.ts
│   │   │   └── index
│   │   │       └── styles.ts
│   │   ├── themes
│   │   │   └── dark.ts
│   │   └── global.ts
│   └── @types
│       ├── env.config.d.ts
│       ├── index.d.ts
│       ├── lottie-animation.d.ts
│       └── styled.d.ts
├── next.config.js
├── next-env.d.ts
├── package.json
└── tsconfig.json