You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.5 KiB

9 years ago
9 years ago
8 years ago
7 years ago
  1. # youtube-dlG
  2. A cross platform front-end GUI of the popular [youtube-dl](http://rg3.github.io/youtube-dl/) media downloader, written in wxPython. [List of supported sites](https://rg3.github.io/youtube-dl/supportedsites.html).
  3. ## Screenshots
  4. **Main window**
  5. ![Youtube-dl-gui main window](http://i.imgur.com/I4oXPWs.png)
  6. **Options window**
  7. ![Options window](http://i.imgur.com/eShdoLD.png)
  8. ## Installation
  9. **Linux (from source):** `sudo python setup.py install`
  10. **Linux (Ubuntu PPA):** http://ppa.launchpad.net/nilarimogard/webupd8/ubuntu/pool/main/y/youtube-dlg/ (TODO: update)
  11. **Linux (Arch AUR):** https://aur.archlinux.org/packages/youtube-dl-gui-git/ (TODO: update)
  12. **Linux (Slackware SlackBuild):** https://slackbuilds.org/repository/14.2/network/youtube-dl-gui/
  13. **Windows:** TODO Package MSI/portable ZIP
  14. **Mac:** TODO Package app
  15. Then you can call youtube-dlg from the command line, using the `youtube-dl-gui` command, or by creating a desktop launcher (TODO)
  16. ## Contributing
  17. **Support for new language:** See [Localization HOWTO](locale_build/HOWTO.md).
  18. **Reporting bugs:** See [Issues](https://github.com/MrS0m30n3/youtube-dl-gui/issues).
  19. ## Requirements
  20. [Python](http://www.python.org) 2.7+, [wxPython](http://wxpython.org) 2.9.1+, [twodict](https://pypi.python.org/pypi/twodict/1.2), [FFMPEG & FFPROBE](http://www.ffmpeg.org) (optional, to convert video files to audio-only files).
  21. ## Authors
  22. See [AUTHORS](AUTHORS) file
  23. ## License
  24. The [Public Domain License](LICENSE)
  25. ## Thanks
  26. Thanks to youtube-dl authors for creating such an amazing tool.
  27. ## Frequently Asked Questions
  28. * **Post processing takes a long time**: There should be no post-processing if you leave the video format to default (which defaults to the best format) and did not check convert to audio or embed subtitles, otherwise the file will be re-encoded to the format you selected (which takes time/CPU resources).
  29. * **The website I'm trying to download from is not supported**: youtube-dl-gui uses [youtube-dl](https://github.com/rg3/youtube-dl) in the backend to download files. youtube-dl provides a list of [extractors](https://github.com/rg3/youtube-dl/tree/master/youtube_dl/extractor) to work with each particular site. If you'd like to request support for a new website, please submit it to youtube-dl's [issue tracker](https://github.com/rg3/youtube-dl/issues).
  30. * **How do I change the naming pattern for downloaded files?**: See [this comment](https://github.com/MrS0m30n3/youtube-dl-gui/issues/144#issuecomment-263195019)