1.0.2 • Published 1 year ago

@skribe/puppeteer-stream v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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

Save Stream to File:

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();

Stream to Discord

Stream Spotify

Use puppeteer-extra plugins

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

0.0.9

1 year ago

3.0.9

1 year ago

3.0.8

1 year ago