Metadata-Version: 2.1
Name: webvtt-to-json
Version: 0.1
Summary: Convert WebVTT to JSON, optionally removing duplicate lines
Home-page: https://github.com/simonw/webvtt-to-json
Author: Simon Willison
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/simonw/webvtt-to-json/issues
Project-URL: CI, https://github.com/simonw/webvtt-to-json/actions
Project-URL: Changelog, https://github.com/simonw/webvtt-to-json/releases
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

# webvtt-to-json

[![PyPI](https://img.shields.io/pypi/v/webvtt-to-json.svg)](https://pypi.org/project/webvtt-to-json/)
[![Changelog](https://img.shields.io/github/v/release/simonw/webvtt-to-json?include_prereleases&label=changelog)](https://github.com/simonw/webvtt-to-json/releases)
[![Tests](https://github.com/simonw/webvtt-to-json/workflows/Test/badge.svg)](https://github.com/simonw/webvtt-to-json/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/simonw/webvtt-to-json/blob/master/LICENSE)

Convert WebVTT to JSON, optionally removing duplicate lines

## Installation

Install this tool using `pip`:

    pip install webvtt-to-json

## Usage

To output JSON for a WebVTT file:

    webvtt-to-json subtitles.vtt

This will output to standard output. Use `-o filename` to send it to a specified file.

Subtitles can often include duplicate lines. Add `-d` or `--dedupe` to attempt to remove those duplicates from the output:

    webvtt-to-json --dedupe subtitles.vtt

You can also use:

    python -m webvtt_to_json ...

## Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:

    cd webvtt-to-json
    python -m venv venv
    source venv/bin/activate

Now install the dependencies and test dependencies:

    pip install -e '.[test]'

To run the tests:

    pytest
