UNPKG

@yume-chan/scrcpy

Version:
9 lines 309 B
export function parseEncoder(line, encoderNameRegex) { const match = line.match(encoderNameRegex); if (match) { return { type: "video", name: match[1] }; } return undefined; } export const EncoderRegex = /^\s+scrcpy --encoder-name '([^']+)'$/; //# sourceMappingURL=parse-encoder.js.map