Video Player with 4K video streaming over P2P BitTorrent
No releases have been made. Use only for development.
git clone https://github.com/Seedess/seedess-p2p-video-player-react.git
cd ./seedess-p2p-video-player-react
npm installYou can start the react dev server and edit the code
npm startAfter you have cloned the github repo into a directory such as seedess-p2p-video-player-react you can include it in your project as:
Example for a file VideoPlayer.js
import SeedessVideoPlayer from './seedess-p2p-video-player-react'
export const VideoPlayer = ({ url }) => (
<div className="video-player">
<SeedessVideoPlayer src="{url}">
</div>
)