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
- Host: GitHub
- URL: https://github.com/shhossain/play
- Owner: shhossain
- License: mit
- Created: 2023-10-04T12:11:20.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-02T09:34:20.000Z (over 1 year ago)
- Last Synced: 2025-01-26T05:24:50.214Z (9 months ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```