about.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {% extends "base.html" %}
  2. {% block js %}
  3. {% endblock %}
  4. {% block main %}
  5. <h3>About</h3>
  6. <p>You can use this service if you want to have a video from your favourite MP3 and a single static photo.</p>
  7. <p>For any reason you might want that. Be it artistic, or you want to upload an MP3 to Youtube, Vimeo, or DailyMotion...</p>
  8. <p>Using it is free.</p>
  9. <h3>Usage</h3>
  10. <p>It's pretty simple:</p>
  11. <ul>
  12. <li>Go on a homepage and upload MP3 file and photo.</li>
  13. <li>We will make our robots create your video.</li>
  14. <li>You can stay on your page and wait for the video, or we will send you an email with link (we will not keep your email for any other reason).</li>
  15. <li>Download your video.</li>
  16. <li>Come back to us when you want to create new video!</li>
  17. </ul>
  18. <p>Note: if you don't pick up your video you should know that we will delete everything we have after one day.</p>
  19. <h3>Techonology</h3>
  20. <p>This service is powered by <a href="http://flask.pocoo.org/">Flask</a>, a Python micro-framework. <a href="http://www.celeryproject.org/">Celery</a> does all the heavy-lifting, using <a href="http://redis.io/">Redis</a> as a broker. <a href="http://supervisord.org/">Supervisor</a> takes care that everything is properly running. There are no social media buttons or tracking links or analytics JavaScript spyware.</p>
  21. <h3>Statistics</h3>
  22. <div class="row">
  23. <div class="col-xs-6 text-right">Videos created</div>
  24. <div class="col-xs-6">{{ stats['created'] }}</div>
  25. </div>
  26. <div class="row">
  27. <div class="col-xs-6 text-right">Videos downloaded</div>
  28. <div class="col-xs-6">{{ stats['downloaded'] }}</div>
  29. </div>
  30. <div class="row">
  31. <div class="col-xs-6 text-right">Currently active</div>
  32. <div class="col-xs-6">{{ stats['active'] }}</div>
  33. </div>
  34. <div class="row">
  35. <div class="col-xs-6 text-right">Data uploaded</div>
  36. <div class="col-xs-6">{{ stats['data_upload'] }}</div>
  37. </div>
  38. <p>&nbsp;</p>
  39. <p>These numbers are calculated every {{ config["PHOSIC_STAT_MINUTES"] }} minute(s).</p>
  40. {% endblock %}