diff --git a/README.md b/README.md index adc8956..a5032d8 100644 --- a/README.md +++ b/README.md @@ -188,6 +188,24 @@ export default function Page() { ``` +### Player only ([Demo](https://next-video-demo.vercel.app/player-only)) + +Since [`v1.1.0`](https://github.com/muxinc/next-video/releases/tag/v1.1.0) you can import the player component directly and use it without any upload and processing features. + +```tsx +import Player from 'next-video/player'; +// or +import BackgroundPlayer from 'next-video/background-player'; + +export default function Page() { + return ; +} +``` + ### Custom poster and blurDataURL You can add a custom poster and blurDataURL to the video by passing them as props.