Metadata-Version: 2.1
Name: m3-dl
Version: 0.0.29
Summary: this is a description
Home-page: https://github.com/zk4/m3u8_dl
Author: zk
Author-email: liuzq7@gmail.com
License: BSD
Download-URL: https://github.com/zk4/m3u8_dl/archive/master.zip
Keywords: best practice for python project
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Requires-Python: >3.7.0
Description-Content-Type: text/markdown
Requires-Dist: PySocks (==1.7.1)
Requires-Dist: PyYAML (==5.3)
Requires-Dist: requests (==2.23.0)
Requires-Dist: urllib3 (==1.25.8)
Requires-Dist: termcolor (==1.1.0)

# Intro
This is a pipe compatiable tool for downloading m3u8.

1. Fast download for m3u8.
2. Auto decrpt the key.

# Install
since the name m3u8_dl is taken by other developer...

short it to m3_dl
```
pip install m3_dl
```

# Usage 
```
m3_dl <m3u8_url> -o <dest>
```

ex:
```
# download to local file
m3_dl http://aaa.com/a.m3u8 -o ./a.mp4

# pipe it to mpv
m3_dl  https://you.tube-kuyun.com/20200210/1144_623a1fb3/index.m3u8 | mpv -

# pipe it to mpv and save to local
m3_dl  https://you.tube-kuyun.com/20200210/1144_623a1fb3/index.m3u8 | tee > ./a.mp4 | mpv -
```

# Full Usage 
```
```


# TODO
3. enable redownlowd
5. make it mitm compatiable

# Notes
when feed binary to stdout, it will block ouput if stdout is full

