⌬ Use of Advanced Leech Utils:
>> Guide Way for Using WZML-X features to Fullest
>> Updated with v1.3.3
➲ Prefix :
Parameters : \s --> To give Space After Prefix, use this !
Sample : @channel_name\s
>> It Supports HTML Tags ( NEW )
➲ Caption :
Parameters :
① \s --> To give Space ! Sample: \s\s
② \| --> If you want to Use |, Use as \|
③ {filename} --> Filename
{size} --> File Size
{duration} --> File Duration
{quality} --> Quality
{languages} --> Languages
{subtitles} --> Subtitles
{md5_hash} --> MD5 Hash
④ Remname : Separated by "|" and Enhanced Syntax : |<key>:<rem_key>:<count>|... ♾
Sample : <b>{filename}</b>
<spoiler>{size}</spoiler> \| @WZML_X |.: :1|@:•|_X
>> Supports HTML Tags
>> Here, Remname Arg Used in Caption, which replaces "." with " " Only 1 time, then replaces "@" with "•", then removes "_X" from Caption
>> <b>{filename}</b> = <b><html_tag>{prefix}</html_tag>filename</b> ( Breakthrough how Prefix HTML tag are Combined )
➲ RemName : ( Only Filename )
Syntax : <key>:<new_key>:<times>|<key>:<new_key>|<key>... ♾
Separator : "|"
Parameters :
① key : Keyword you want to Remove ( Supports Regex Patterns ) for large quantity of Remove.
② new_key : New Keyword in the place of Keyword.
③ times : To limit the same process of replacements.
Sample :
i) @cha_nam:@new_cha:1
>> Removes "@cha_nam" with "@new_cha" but only once.
ii) @cha_nam::1
>> Removes "@cha_nam" but only once.
iii) @cha_nam|@ano_nam
>> Removes all occurrence of @cha_nam & @ano_nam
• Regex Advanced Removing & Complex Situations :
- Using Python Regex : Click Here
Why Regex ?
>> Removing All Episodes Name from Multiple Files During Leech !
>> We won't gonna do S01E01|S01E02|... that won't replaced all and not Efficient.
Sample : S\d+ ?E\d+
>> This will Remove all Episode Names from filenames.
Sample : \b(www\.[^\s/$.?#].[^\s]*)\b
>> For Removing all Websites Starting with www.
Combined Sample : S\d+ ?E\d+::1|\b(www\.[^\s/$.?#].[^\s]*)\b|KatmovieHD\.[A-Za-z]+|@cha_nam:@ano_cha
>> Above RemName has 3 CASES:
1) Removes All Episodes Name only once
2) Removes all Websites Name starting with www.
3) Removes all Domains for KatmovieHD, vice versa for any Site !
Combined RemName of Remnames :
>> These are Super Combinations
Input : abcd.mkv --> Output : abcd.mkv
Sample : abcd:efgh|fg:ij|eijh:kl|k:ab|l:cd
>> abcd --> efgh | efgh
>> fg --> ij | eijh
>> eijh --> kl | kl
>> k --> ab | abl
>> l --> cd | abcd
>> So New Filename Becomes abcd.mkv, Replacing Works on Left to Right
>> Combine Regex & Simple Words, Rule the File Manipulation to Next Gen
Regex Generator : Click Here