README 659 B

12345678910111213141516171819202122
  1. konvert will convert your media files
  2. REQUIREMENTS
  3. ------------
  4. * py3k
  5. * tornadoweb
  6. USAGE
  7. -----
  8. Run server.py and upload files with curl or something else with PUT:
  9. $ curl -T myfile.ogg http://localhost:8888
  10. The response will be a URL of the uploaded file. A Location: header is also
  11. included along with a redirect status code, should you want to interpret that.
  12. Converting is done with GET on a URL that specifies the conversion template. A
  13. list of all templates can be accessed from http://localhost:8888/help/convert
  14. The URLs contain sha512 hashes for uniqueness and the convert URL is accessed
  15. by simply appending /convert/$template afterwards.