# nightwatch-record-windows

> Nightwatch.js video screen recording via ffmpeg

Latest version **1.0.2** (published 2018-05-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install nightwatch-record-windows
pnpm add nightwatch-record-windows
yarn add nightwatch-record-windows
bun add nightwatch-record-windows
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2018-05-24 |
| First published | 2018-05-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=6.0.0 |
| Dependencies | 0 |
| Unpacked size | 8.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Ervin Chan |
| Maintainers | ervin-chan-bcs |
| Keywords | nightwatch, video, screen, recording, ffmpeg, windows |

## Links

- npm: https://www.npmjs.com/package/nightwatch-record-windows
- npm.io page: https://npm.io/package/nightwatch-record-windows

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2018-05-24
- 1.0.1 — 2018-05-16
- 0.1.0 — 2018-05-16

## README

# Nightwatch.js video screen recording via ffmpeg
Modified version of [nightwatch-record](https://github.com/imarenco/nightwatch-record) made to work for Windows with [ffmpeg](https://www.ffmpeg.org/) and [screen-capture-recorder](https://github.com/rdp/screen-capture-recorder-to-video-windows-free).

Record videos of [Nightwatch.js](http://nightwatchjs.org/) test sessions.

## Installation

Using npm:
```
npm i -D nightwatch-record-windows
```

Add to your nightwatch.conf.js:
```
videos: {
    fileName: "nightwatch", // Required field
    nameAfterTest: true,
    format: "mp4",
    enabled: true,
    deleteOnSuccess: false,
    path: "",
    fps: 15,
    input: "video=screen-capture-recorder",
    videoCodec: "mpeg4"
    }
```

Add to your nightwatch hooks:
```
beforeEach: function (browser, done) {
        require('nightwatch-record').start(browser, done);
},
afterEach: function (browser, done) {
    require('nightwatch-record').stop(browser, done);
},
```
## License
Released under the [MIT license](https://opensource.org/licenses/MIT).

---
_Source: https://npm.io/package/nightwatch-record-windows · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
