UDPspeeder
ParPar
UDPspeeder | ParPar | |
---|---|---|
8 | 7 | |
4,793 | 204 | |
1.0% | 1.0% | |
0.9 | 8.3 | |
7 months ago | 30 days ago | |
C++ | C++ | |
MIT License | - |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
UDPspeeder
- File transfer solution on a high-latency link
-
Free Public WiFi
It's been a while since I set it up, but iirc I ended up going with https://github.com/wangyu-/UDPspeeder
Pretty sure I used the suggested config and it's been working flawlessly in the background.
Or something like that. With wireguard, it's just a matter of pointing the config at the local socket for the fec tunnel (or any other type of tunnel, there was a dicussion about making it look like TCP http traffic the other day), so it's pretty much plug and play.
- UDPSpeeder usage
-
Show HN: Go-Nbd – A Pure Go NBD Server and Client
I just use nbd-server, nbd-client (kernel module nbd). While at home things are fine, when not at home things can get bad unless you use something like UDPspeeder <https://github.com/wangyu-/UDPspeeder> then you just need to deal with slower speeds.
I do backups with borg while connected through ethernet.
- Packet Replication / Duplication for Noisy Channels AKA Wan Smoothing
-
How to configure GSWave for the lowest internet speed?
The good news is you can implement some kind of ghetto error-correction at a higher level. Set up a tunnel to your pbx with a VPN which supports FEC -- something like UDPspeeder and configure it to send duplicates or triplicates of every packet. In this case, you're sacrificing bandwidth to improve reliability.
-
How to rewrite this C++ inheritance pattern in Rust?
All it needs is a bit of reed solomon encoding in the transport for additional reliability https://github.com/wangyu-/UDPspeeder
- Improve lossy link performance with Forward Error Connection
ParPar
- Getting "checksum mismatch" too often when creating pars with latest version of MultiPar
-
AVX-512 Performance Comparison: AMD Genoa vs. Intel Sapphire Rapids & Ice Lake Review
PAR2 creation (file-based error correction): the core routine here is GF(2^16) matrix multiplication. AVX512 has the GF2P8AFFINEQB instruction, which isn't present on any GPU that I know of, but massively accelerates GF multiplication. Without this instruction, you have to resort to emulating it via bitwise operations or lookup tables, which are much slower. I actually have an OpenCL implementation, but its performance is rather meh compared to CPU
-
Optimal par2 Switches for Mixed Data . .
Did you tried to use parpar for creating par2 files? Supposed to be much faster. https://github.com/animetosho/ParPar
-
AMD EPYC 9554 & EPYC 9654 Benchmarks
I've been developing a performance oriented PAR2 tool (used for generating file-based redundancy for error correction), but without access to a lot of hardware, I don't have that much ability to tune it to various microarchitectures. Currently there's no real benchmark setup defined/implemented (though it shouldn't be hard to come up with one), and it certainly isn't tuned for the number of cores on EPYC, but I've never really thought PAR2 benchmarks would interest that many people.
-
Analysing the Effectiveness of WinRAR's RAR5 Recovery Records
QuickPar is ancient at this stage, however the PAR2 format hasn't changed since, so the concepts are still the same. For a more modern client, I generally recommend MultiPar. I've also written a PAR2 client, ParPar (CLI, or experimental GUI frontend), but it only supports creating PAR2s, not verify/repair.
-
What is the best method for file integrity preservation?
Also this implementation of par is the fastest I've seen (for creation only thought) https://github.com/animetosho/ParPar
-
Fastest Parity creator on Linux
For PAR2, I did a benchmark comparison here of every tool, which you can use to make up your mind. par2j (Multipar) and phpar2 are Windows only, but work via Wine. ParPar only supports create, so you'll need to use a different client for verify/repair.
What are some alternatives?
udp2raw - A Tunnel which Turns UDP Traffic into Encrypted UDP/FakeTCP/ICMP Traffic by using Raw Socket,helps you Bypass UDP FireWalls(or Unstable UDP Environment)
dvdisaster - A tool providing additional ECC protection for optical media (unofficial version)
tinyfecVPN - A VPN Designed for Lossy Links, with Build-in Forward Error Correction(FEC) Support. Improves your Network Quality on a High-latency Lossy Link.
qr-asm - Generate a QR code from scratch with only ARM assembly.
Mosh - Mobile Shell
FastHamming - Fast implementation for truncateable extended (127,120) Hamming codes
Eternal Terminal - Re-Connectable secure remote shell
ParParGUI - GUI front-end to ParPar, a PAR2 creation tool
funnel-proxy - Transparent multiplexing proxy
rapidyenc - SIMD accelerated yEnc en/decode C library
psc - E2E encryption for multi-hop tty sessions or portshells + TCP/UDP port forward
MultiPar - Parchive tool