-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request] Ability to Split Torrent in RAR parts #85
Comments
By this you mean the linux command ryt? not the TG command... Sounds good...its easy to add just need to clarify this. |
rar a -m<leve_of_compression> -v<size_in_MB>m "<name_of_rar_file>" "<folder/file_to_archive>" this is linux command. we can send TG command to fill in the variables. Will this be added in next update? |
Ohkk.... Yepp in next update.. most issue from GitHub will be implemented. |
Readme says new repo will come for heroku. Is that right? |
@yash-dk Done? |
will be.... added currently I have research work so development is slowed... |
😔 |
when Yash? |
will be added started the work |
It's a new week i hope it's done 🙏 |
@yash-dk please add it now |
here are the logs |
reviewed it should if fine now. |
@yash-dk make TG_UPLOAD_LIMIT in MB rather than in bytes |
@yash-dk still not working
|
The splitting is only required for telegram upload and will work only there. Rclone uploads are not supported. |
just write like this:- |
but uploading to telegram is useless. Can you make it work to upload in Google Drive |
I tried to upload to telegram with RAR_SPLIT enabled but error says ZIP Failed Fallback to Normal. RAR split feature is not working at all. @yash-dk |
Fixed? |
@yash-dk QUERY: stderr: Output: run these to commands to install rar module sudo apt-add-repository non-free -y |
bro where are you? |
* Addition fixed from yash-dk#91 * Add custom tracker support from URL TRACKER_SOURCE var.. yash-dk#76 * for fixing yash-dk#86 (yash-dk#105) * Fixes the file cleanup for rclone and tg up * Alter the direct link gen format * Change some stuff in Direct Link Generator * Use Rar for splitting with USE_RAR_SPLIT var yash-dk#85 * Ignore abs path for rar * Added sas zip support * add support for loading SA accounts from zip in settings * Fix the extract archive error * Local extract and fix stuff in rclone upload * .. * Update deploy.yml * Update deploy.yml * Update deploy.yml * Adding to RAR fixed * Add the FORCE_SPLIT_UPLOAD and finalize USE_RAR_SPLIT * Added /cleardata * Remove the saftey margin in zipping * Fix Handling some https cloudflare traffic error * Add both formats to /leech reply and no reply * created del directories * Kangershub Co-authored-by: YashDK <[email protected]> Co-authored-by: Amirul Islam <[email protected]> Co-authored-by: Shrimadhav U K <[email protected]> Co-authored-by: nikhilesh-claysol <[email protected]> Co-authored-by: Amirul Islam <[email protected]>
please add the ability to split torrents in RAR parts
---- sample linux command in case ----
mode needed : rar (apt-get install rar)
command : rar a -m<leve_of_compression> -v<size_in_MB>m "<name_of_rar_file>" "<folder/file_to_archive>"
Glossary:
leve_of_compression
0 - just store
1 - fair amount of compression
2 - a little bit more compression
3 - extreme compression
name_of_rar_file - name of the rar file with absolute path where it will be stored
folder/file_to_archive - path of folder or file to be archived
size_in_MB - 500 if the file need to be splitted in 500mb parts
Say I have 15 GB file. If I set -v5120m then it will split the rar in three parts 5 GB file.
Command will be : rar a -m0 -v5120m "save/to/exampleRAR" "/folder/to/be/archived"
python equivalent :
subprocess.call(['rar a -m0 -v5120m "save/to/exampleRAR" "/folder/to/be/archived"'])
Thanks in advance..🙏
Expected Features:
The text was updated successfully, but these errors were encountered: