An open API service indexing awesome lists of open source software.

https://github.com/shhossain/play

Play videos on vlc
https://github.com/shhossain/play

Last synced: about 1 month ago
JSON representation

Play videos on vlc

Awesome Lists containing this project

README

          

# Play

Extract video from website and play it in VLC Media Player.

## Requirements

- Python 3.6+
- VLC Media Player

## Installation

```bash
pip install git+https://github.com/shhossain/play.git
```

## Usage

```bash
usage: play [-h] url [range]

positional arguments:
url URL to get video URLs from
range Range of URLs to get (e.g. 1-5 or 1)
```

## Example
Play videos 1 to 5
```bash
play https://some-website.com/videos 1-5
```

Play video 1 to last
```bash
play https://some-website.com/videos 1
```

Play all videos
```bash
play https://some-website.com/videos
```