Sound wave file transfer (SWFT) is a tool for transferring files over sound waves. It uses FSK at 300 baud to encode the data like a modem. The tool is written in c++ and intends to be cross-platform. The tool is currently in development and is not ready for use.
The tool is currently in development and is not ready for use. However you can try it out by compiling the source code and running it.
$ make $ ./swft -h Usage: swft [--help] [--version] [--file FILE] [--receive] [--verbose] Transfer files using sound waves. Optional arguments: -h, --help shows help message and exits -v, --version prints version information and exits --file FILE file to transmit -r, --receive receive a file --verbose Still in development.
clone the repository and compile the source code.
$ git clone $ cd swft $ mkdir build && cd build $ cmake .. $ make
- p-ranav/argparse: will be downloaded automatically by cmake
- doxygen: (optional) for generating documentation
- None