@skribe/puppeteer-stream
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

puppeteer-stream

Skribe's fork of the Extension for Puppeteer to retrieve audio and/or video streams of a page

Installation

npm i @skribe/puppeteer-stream

Usage

ES5 import

const { launch, getStream } = require("puppeteer-stream");

or ES6 import

import { launch, getStream } from "puppeteer-stream";

Launch

The method launch(options) is just a slightly changed puppeteer launch function to start puppeteer in headful mode with this extension.

Example

const { launch, getStream } = require("puppeteer-stream");
const fs = require("fs");

const file = fs.createWriteStream(__dirname + "/test.webm");

async function test() {
	const browser = await launch({
		defaultViewport: {
			width: 1920,
			height: 1080,
		},
	});

	const page = await browser.newPage();
	await page.goto("https://www.youtube.com/watch?v=dQw4w9WgXcQ");
	const stream = await getStream(page, { audio: true, video: true });
	console.log("recording");

	stream.pipe(file);
	setTimeout(async () => {
		await stream.destroy();
		file.close();
		console.log("finished");
	}, 1000 * 10);
}

test();

Package Sidebar

Install

npm i @skribe/puppeteer-stream

Version

1.0.1

License

MIT

Unpacked Size

32.5 kB

Total Files

10

Last publish

Collaborators

  • lorikku