77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
|
|
import Event from '../../event/Event.js';
|
||
|
|
import EventTarget from '../../event/EventTarget.js';
|
||
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
||
|
|
import IMediaTrackCapabilities from './IMediaTrackCapabilities.js';
|
||
|
|
import IMediaTrackSettings from './IMediaTrackSettings.js';
|
||
|
|
type IMediaTrackConstraints = Record<string, string | number | boolean | Record<string, string | number | boolean>>;
|
||
|
|
/**
|
||
|
|
* Canvas Capture Media Stream Track.
|
||
|
|
*
|
||
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrack
|
||
|
|
*/
|
||
|
|
export default class MediaStreamTrack extends EventTarget {
|
||
|
|
#private;
|
||
|
|
contentHint: '' | 'speech' | 'speech-recognition' | 'music' | 'motion' | 'detail' | 'text';
|
||
|
|
enabled: boolean;
|
||
|
|
readonly id: string;
|
||
|
|
muted: boolean;
|
||
|
|
readyState: 'live' | 'ended';
|
||
|
|
label: string;
|
||
|
|
[PropertySymbol.label]: string;
|
||
|
|
[PropertySymbol.kind]: 'audio' | 'video';
|
||
|
|
[PropertySymbol.constraints]: IMediaTrackConstraints;
|
||
|
|
[PropertySymbol.capabilities]: IMediaTrackCapabilities;
|
||
|
|
[PropertySymbol.settings]: IMediaTrackSettings;
|
||
|
|
onended: ((event: Event) => void) | null;
|
||
|
|
onmute: ((event: Event) => void) | null;
|
||
|
|
onunmute: ((event: Event) => void) | null;
|
||
|
|
/**
|
||
|
|
* Constructor.
|
||
|
|
*
|
||
|
|
* @param illegalConstructorSymbol Illegal constructor symbol.
|
||
|
|
*/
|
||
|
|
constructor(illegalConstructorSymbol: symbol);
|
||
|
|
/**
|
||
|
|
* Returns the kind of the track.
|
||
|
|
*
|
||
|
|
* @returns Kind.
|
||
|
|
*/
|
||
|
|
get kind(): 'audio' | 'video';
|
||
|
|
/**
|
||
|
|
* Applies constraints.
|
||
|
|
*
|
||
|
|
* @param _constraints Constraints.
|
||
|
|
* @param constraints
|
||
|
|
*/
|
||
|
|
applyConstraints(constraints: IMediaTrackConstraints): Promise<void>;
|
||
|
|
/**
|
||
|
|
* Returns constraints.
|
||
|
|
*
|
||
|
|
* @returns Constraints.
|
||
|
|
*/
|
||
|
|
getConstraints(): object;
|
||
|
|
/**
|
||
|
|
* Returns capabilities.
|
||
|
|
*
|
||
|
|
* @returns Capabilities.
|
||
|
|
*/
|
||
|
|
getCapabilities(): IMediaTrackCapabilities;
|
||
|
|
/**
|
||
|
|
* Returns settings.
|
||
|
|
*
|
||
|
|
* @returns Settings.
|
||
|
|
*/
|
||
|
|
getSettings(): IMediaTrackSettings;
|
||
|
|
/**
|
||
|
|
* Clones the track.
|
||
|
|
*
|
||
|
|
* @returns Clone.
|
||
|
|
*/
|
||
|
|
clone(): MediaStreamTrack;
|
||
|
|
/**
|
||
|
|
* Stops the track.
|
||
|
|
*/
|
||
|
|
stop(): void;
|
||
|
|
}
|
||
|
|
export {};
|
||
|
|
//# sourceMappingURL=MediaStreamTrack.d.ts.map
|