Go to file
Louis Vézina 9cb64f103f
test
2017-10-28 22:26:38 -04:00
data Test 2017-10-20 09:16:34 -04:00
screenshot test 2017-10-28 22:26:38 -04:00
static Revert change 2017-10-27 11:55:18 -04:00
views Test 2017-10-27 21:52:41 -04:00
.gitignore Use absolute path 2017-10-20 08:59:21 -04:00
Dockerfile Test 2017-10-21 23:21:40 -04:00
README.md Update README.md 2017-10-26 17:25:54 -04:00
bazarr.py Test 2017-10-27 22:41:53 -04:00
check_update.py Test 2017-10-27 22:22:04 -04:00
create_db.sql Test 2017-10-27 21:41:24 -04:00
get_episodes.py Use absolute path 2017-10-20 08:59:21 -04:00
get_general_settings.py Test 2017-10-27 22:18:16 -04:00
get_languages.py Use absolute path 2017-10-20 08:59:21 -04:00
get_providers.py Use absolute path 2017-10-20 08:59:21 -04:00
get_series.py Use absolute path 2017-10-20 08:59:21 -04:00
get_sonarr_settings.py Use absolute path 2017-10-20 08:59:21 -04:00
get_subtitle.py Adding scheduler 2017-10-22 23:00:11 -04:00
init_db.py Test 2017-10-21 23:01:24 -04:00
list_subtitles.py Use absolute path 2017-10-20 08:59:21 -04:00
requirements.txt Test 2017-10-27 22:18:16 -04:00
scheduler.py Ajusting scheduler 2017-10-22 23:33:23 -04:00
update.py Adding screenshot 2017-10-28 21:44:01 -04:00
utils.py Use absolute path 2017-10-20 08:59:21 -04:00

README.md

bazarr

Bazarr is a companion application to Sonarr. It manage and download subtitles based on your requirements. You defined your preferences by TV show and Bazarr take care of everything for you.

Major Features Include:

  • Support for major platforms: Windows, Linux, macOS, Raspberry Pi, etc.
  • Automatically add new series and episodes from Sonarr
  • Series based configuration for subtitles languages
  • Scan your existing library for internal and external subtitles and download any missing
  • Keep history of what was downloaded from where and when
  • Manual search so you can download subtitles on demand
  • Ability to delete external subtitles from disk
  • Currently support 184 subtitles languages
  • And a beautiful UI based on Sonarr

Supported subtitles providers:

  • addic7ed
  • legendastv
  • opensubtitles
  • podnapisi
  • shooter
  • subscenter
  • thesubdb
  • tvsubtitles

Running from Source

bazarr require Python 2.7 and can be run from source. This will use git as updater, so make sure that is installed.

Windows:

  • Install GIT
  • Install Python 2.7
  • Open up CMD and go to the folder you want to install bazarr. Something like Program Files.
  • Run git clone https://github.com/morpheus65535/bazarr.git.
  • Run pip install -r requirements.txt to install dependencies.
  • You can now start bazarr via bazarr.py to start bazarr.
  • Open your browser and go to http://localhost:6767/

OS X:

  • Install GIT
  • Open up Terminal
  • Go to your App folder cd /Applications
  • Run git clone https://github.com/morpheus65535/bazarr.git
  • Run pip install -r requirements.txt to install dependencies.
  • You can now start bazarr via bazarr.py to start bazarr.
  • Open your browser and go to http://localhost:6767/

Linux:

  • (Ubuntu / Debian) Install GIT with apt-get install git-core
  • (Fedora / CentOS) Install GIT with yum install git
  • 'cd' to the folder of your choosing.
  • Run git clone https://github.com/morpheus65535/bazarr.git
  • Run pip install -r requirements.txt to install dependencies.
  • You can now start bazarr via bazarr.py to start bazarr.
  • Open your browser and go to http://localhost:6767/

Docker:

  • You can use this image to quickly build your own isolated app container. It's based on the Linux instructions above. For more info about Docker check out the official website.

License