PHP code example of divinity76 / headless-chromium-recorder
1. Go to this page and download the library: Download divinity76/headless-chromium-recorder library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
divinity76 / headless-chromium-recorder example snippets
declare(strict_types=1);
sChromium\BrowserFactory();
$browserFactory->setOptions([
'headless' => true,
'noSandbox' => true,
'customFlags' => [
'--disable-dev-shm-usage', // docker compatibility..
],
'windowSize' => [1920, 1200],
]);
$browser = $browserFactory->createBrowser();
$page = $browser->createPage();
$page->setViewport(
width: 1920,
height: 1080,
)->await();
$recorder = new \Divinity76\HeadlessChromiumRecorder\Recorder($page);
$recorder->startRecording(
format: 'jpeg',
//format: 'png',
quality: 100,
everyNthFrame: 1
);
$page->navigate('https://www.youtube.com/watch?v=dQw4w9WgXcQ')->waitForNavigation(\HeadlessChromium\Page::LOAD);
// Video will not start playing until we accept cookies prompt:
for ($attempt = 0;; ++$attempt) {
try {
$page->mouse()->find("tp-yt-paper-dialog[class*=ytd-consent-bump] button", 3)->click();
break;
} catch (\HeadlessChromium\Exception\ElementNotFoundException $e) {
if ($attempt > 1000) {
throw $e;
}
//usleep(1); // should be a socket_select: https://github.com/chrome-php/wrench/pull/17
$page->getSession()->getConnection()->readData(); // should be a socket_select...
}
}
$targetTime = microtime(true) + 30;
while (microtime(true) < $targetTime) {
//usleep(1); // should be a socket_select: https://github.com/chrome-php/wrench/pull/17
$page->getSession()->getConnection()->readData();
}
$recorder->stopRecording();
$page->close();
$savepath = __DIR__ . DIRECTORY_SEPARATOR . 'test1.mp4';
$recorder->generateVideo1(
$savepath,
[
//'-fps_mode' => '-fps_mode passthrough',
]
);
echo "video saved to: $savepath\n";
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.