2024-01-26 01:50:40 -06:00
|
|
|
## M3U Duplicates Filter
|
2024-01-14 09:35:35 -06:00
|
|
|
|
|
|
|
Simple script that will remove worse qualities from your M3U8 list, if detected.
|
|
|
|
|
|
|
|
### NOTE!
|
|
|
|
This may **NOT** be 100% accurate.
|
|
|
|
This script is in BETA phase. Please report any bugs!
|
|
|
|
|
|
|
|
### Based on
|
|
|
|
- argparse
|
|
|
|
- pathlib
|
|
|
|
- [ipytv](https://github.com/Beer4Ever83/ipytv)
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
```bash
|
2024-01-14 09:36:06 -06:00
|
|
|
python3 <path-to-script> -m "<m3u path>" (-v)
|
2024-01-14 09:35:35 -06:00
|
|
|
```
|
|
|
|
|
|
|
|
### Result
|
|
|
|
When everything is done, file is **OVERWRITTEN**!
|
|
|
|
|
|
|
|
### Example usage
|
|
|
|
```bash
|
|
|
|
python3 <path-to-script> -m "m3u_list.m3u"
|
|
|
|
```
|
|
|
|
|
|
|
|
### Available parameters
|
|
|
|
- -m/--m3u - absolute path to m3u+ file
|
2024-01-26 01:50:40 -06:00
|
|
|
- -v/--verbose - enable verbose mode
|