Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brunos3d/maratona
🎬 REACT.JS - Insert your list of video links and press play.
https://github.com/brunos3d/maratona
maratona react video-player youtube
Last synced: about 2 months ago
JSON representation
🎬 REACT.JS - Insert your list of video links and press play.
- Host: GitHub
- URL: https://github.com/brunos3d/maratona
- Owner: brunos3d
- Created: 2020-01-28T03:00:40.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-03T19:03:20.000Z (about 3 years ago)
- Last Synced: 2023-03-03T10:33:42.373Z (almost 2 years ago)
- Topics: maratona, react, video-player, youtube
- Language: JavaScript
- Homepage: https://brunos3d.github.io/Maratona/
- Size: 7.77 MB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Maratona
![build-status](https://travis-ci.com/BrunoS3D/Maratona.svg?branch=master)
🎬 REACT.JS - Insert your list of video links and press play. [Preview](https://brunos3d.github.io/Maratona/)## About
A YouTube-inspired interface where you simply paste a video URL list and can enjoy watching.## Acceptable formats
You can paste a simple list separated by spaces, commas or line breaks as shown below:```yaml
http://media.w3.org/2010/05/bunny/movie.mp4,
http://media.w3.org/2010/05/bunny/trailer.mp4
http://media.w3.org/2010/05/sintel/trailer.mp4
```Or if you prefer you can use a string array in JSON format
```js
[
"http://media.w3.org/2010/05/bunny/movie.mp4",
"http://media.w3.org/2010/05/bunny/trailer.mp4",
"http://media.w3.org/2010/05/sintel/trailer.mp4"
]
```