README 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. === ABOUT ===
  2. stov is a program which allows you to subscribe to channels, playlists and search results on youtube. (More platforms may be implemented later) You don't need a youtube account for the program to work since it uses read-only access to the youtube API or retrieves the needed data using youtube-dl. You can for example run it as a cron job to automatically download your favourite videos.
  3. === USAGE ===
  4. see ./stov --help
  5. === DEPENDENCIES ===
  6. stov depends on the following software to be installed:
  7. * Python 2.7 or higher (python 3.x should work but is not officially supported, this is a release goal for 1.0)
  8. * youtube-dl (get it from http://rg3.github.com/youtube-dl/ if you don't have it yet, it is needed to download videos and also for the "no API"-mode)
  9. === COPYING ===
  10. see LICENSE
  11. === CONFIGURATION ===
  12. By default, the configuration is defined in ~/stov/stov.json in the json format. A default config file is created for you when you run the program for the first time. The following parameters are currently available which you can alter manually:
  13. mailto: Recipient address used for notitifications
  14. mailfrom: Sender address used for notifications
  15. mailhost: Host name or ip address of the mail server which is used to send notifications
  16. auth_needed: Define if the smtp server need authentication (yes or no)
  17. user_name: User name to use for smtp authentication if defined
  18. password: Password to use for SMTP authentication
  19. youtube-dl: Path to the youtube-dl binary if not found automatically
  20. downloaddir: Path the downloaded videos are saved into
  21. database: File name to use for the database
  22. smtpport: Port used to connect to the mail server
  23. maxvideos: Maximum number of videos to retrieve from the youtube API for each subscription,
  24. default 25, maximum 50, reduce this parameter for better parsing performance
  25. notify: Define if you want to be notified via email about new episodes of your subscriptions,
  26. valid values: yes or no
  27. db_version: Database version (Do not change!)
  28. config_version: Configuration version (Do not change!)
  29. videocodec: Video codec used for downloaded videos (valid values: h264, webm or flv)
  30. maxresolution: Maximum resolution to use for downloaded videos, please note
  31. that not all codecs and resolutions might be available so a lower resolution
  32. or other codec might be used in these cases
  33. maxfails: Number of times the download of a video may fail until it is marked as failed
  34. and won't be tried again
  35. check_title: Define if stov should check the title of each video in a search or channel
  36. with search string subscription. This works around some deficits of the youtube
  37. API which sometimes also returns video completely unrelated to your search.
  38. Videos whose titles don't match the search string will be entirely ignored.
  39. valid values: yes or no
  40. use_api: Define if you want to use the Youtube Data API v2. If this is set to false,
  41. a fallback mode using youtube-dl will be used. This is generally much slower,
  42. so using the API is recommended. However Google will cease offering the API
  43. without authentication in the foreseable future, so using the fallback mode
  44. will be the only option then.
  45. === KNOWN ISSUES ===
  46. Currently none, contact me if you find any.
  47. === INSTALLATION ===
  48. You can just run the main file "stov" directly from this directory by calling
  49. it from the shell or with the python interpreter ("./stov" or "python stov").
  50. Furthermore, stov uses python distutils as default installation method. Just
  51. run "python setup.py install" to install it into your system. For further
  52. information an options run "python setup.py --help".