https://github.com/tuxxy/bandcampfs
BandcampFS is a proof of concept that allows people to backup files to bandcamp.com via WAV files.
https://github.com/tuxxy/bandcampfs
Last synced: about 1 month ago
JSON representation
BandcampFS is a proof of concept that allows people to backup files to bandcamp.com via WAV files.
- Host: GitHub
- URL: https://github.com/tuxxy/bandcampfs
- Owner: tuxxy
- License: gpl-3.0
- Created: 2017-07-18T07:49:56.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-23T03:45:40.000Z (about 6 years ago)
- Last Synced: 2025-04-02T23:41:33.700Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 18
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BandcampFS
BandcampFS is a proof of concept that allows people to backup files to bandcampBlog post on usage:
https://medium.com/@__Tux/using-bandcamp-as-a-backup-solution-3b6549d24579## Usage
### Encoding
Encoding a file to upload to bandcamp is simple:`./bandcampfs.py -e my_favorite_picture.jpg`
When it's done, you'll see:
`Data encoded to: my_favorite_picture.jpg.wav!`
Take the file generated here and upload it to a Bandcamp album.
### Decoding
Decoding is done the same way:`./bandcampfs.py -d my_favorite_picture.jpg.wav`
When it's done, you'll see:
`Data decoded to: my_favorite_picture.jpg!`
That's it!
## How does this work?
BandcampFS simply converts any file into a WAV file. Go ahead and give your resume a listen.## Best practices?
If you're going to do this, you should probably put all relevant files into one directory then tar gz them. Following that, you'll probably want to encrypt it. I would use gpg to do this. Then use BandcampFS to convert it to a WAV file and upload it.