Skip to content

baobao-jane/nextjs-shaka-player-example

Repository files navigation

This is a Next.js project bootstrapped with create-next-app.

nextjs-shaka-player-example

This simple project contains the implementation of Shaka Player with Next.js and TypeScript. This example includes support for Widevine and FairPlay DRM."

Since Next.js has built-in support for SSR, and Shaka Player doesn't support it, you need to load Shaka Player with:

import dynamic from 'next/dynamic';

Shaka Player doesn't have built-in TypeScript support. Therefore, you have to create a global.d.ts file to provide TypeScript support. Additionally, check the tsconfig.json file and ensure the following options are included:

  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "global.d.ts"],
  "exclude": ["node_modules"],

This version aims to improve the clarity and readability of your instructions.

Getting Started

git clone https://github.com/your-username/nextjs-shaka-player-example.git
cd nextjs-shaka-player-example

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying pages/index.tsx. The page auto-updates as you edit the file.

API routes can be accessed on http://localhost:3000/api/hello. This endpoint can be edited in pages/api/hello.ts.

The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.

This project uses next/font to automatically optimize and load Inter, a custom Google Font.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

Editional explanation for FairPlay DRM

When playing HLS files using FairPlay DRM and installing PatchedMediaKeysApple(it is not a modern eme) with shaka.polyfill.PatchedMediaKeysApple.install();,

the issue arises when executing shaka.util.FairPlayUtils.defaultGetContentId.

When the initDataTypes is "skd" and the value contains "/", it is interpreted as a path.

Consequently, only the portion before "/" is used as contentId, leading to authentication failure.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published