@zezosoft/react-player
Version:
A lightweight and customizable video player by Zezosoft, built for seamless streaming with advanced controls, adaptive playback, and modern UI. Perfect for web and React applications.
31 lines (30 loc) • 674 B
TypeScript
/**
* @description
* @param seconds
* @returns
*/
export declare const timeFormat: (seconds: number) => string;
/**
* @description
* @param seconds
*/
export declare const timeFormatForContent: (seconds: number) => string;
/**
* @description
* @param seconds
* @returns
*/
export declare const secondsToMilliseconds: (seconds: number) => number;
/**
* @description
* @param milliseconds
* @returns
*/
export declare const millisecondsToSeconds: (milliseconds: number) => number;
/**
* @description
* @param url
* @returns
*/
export declare const getExtensionFromUrl: (url: string) => string | undefined;
export { QualityManager } from "./qualityManager";