UNPKG

raspi-io-server-utils

Version:

Utilities for interacting with Raspberry IOs and Raspbian

13 lines (12 loc) 368 B
import { AbstractPlayer } from './abstract-player'; export declare class MPlayer extends AbstractPlayer { static checkAvailability(): Promise<{}>; private _process; constructor(file: string); readonly running: boolean; readonly playerName: string; readonly _mplayerVolume: number; _start(): void; _stop(): void; _stopped(): void; }