htpc-download-box icon indicating copy to clipboard operation
htpc-download-box copied to clipboard

Use Bazarr instead of Sub-Zero

Open johnpyp opened this issue 5 years ago • 11 comments

It seems that Sub-Zero is not going to receive any more feature updates and that the lead developer is now starting to contribute to Bazarr instead (60+ commits to bazarr since October).

Bazarr is a companion to Sonarr and Radarr that is exclusively for finding subtitles. It has more features than Sub-Zero, and it isn't tied to Plex.

johnpyp avatar Apr 05 '19 12:04 johnpyp

Interesting, I did not know about that one. I'm wondering how good it is compared to sub-zero for finding subtitles. Did you give it a try?

sebgl avatar Apr 05 '19 12:04 sebgl

I haven't tried it yet, I will today.

johnpyp avatar Apr 05 '19 14:04 johnpyp

I've been testing it a bit, and it seems fairly consistent, though there are offset problems as is to be expected of subtitle providers. I haven't tried sub-zero at all or compared against it, and I opted to rename all my files rather than keep the original file names so my experience probably isn't a good comparison anyways.

I imagine it is a logical step however, especially since the primary contributor of sub-zero is contributing now to this and stopping feature development on sub-zero.

I have a branch theoretically ready for merging (branched off the previous PR branch, static-docs), if you want to try it out: https://github.com/johnpyp/homemedia-docker/tree/feature-bazarr

johnpyp avatar Apr 08 '19 20:04 johnpyp

I recently tried Bazarr over sub-zero as sub-zero has been not so great (I also have sonarr and radarr rename files) and so far its been great! Its integrated into sonarr and radarr and uses the original filenames you downloaded so you don't have to leave your files with their original name. It was super easy to set up and I think its definitely the better option. Here is the section I used for my docker-compose if anyone is interested:

  bazarr:
    container_name: bazarr
    image: linuxserver/bazarr
    restart: unless-stopped
    network_mode: host
    environment:
      - PUID=${PUID} 
      - PGID=${PGID} 
      - TZ=${TV}
      - UMASK_SET=022 #optional
    volumes:
      - ${ROOT}/config/bazarr:/config
      - ${ROOT}/complete/movies:/movies
      - ${ROOT}/complete/tv:/tv
    ports:
      - 6767:6767

After starting it up you can reach it at port 6767 and here's a simple guide to get it set up: https://github.com/morpheus65535/bazarr/wiki/Wizard-General

All you really need is your sonarr and radarr API keys and any account information for the subtitle providers you want to use (I use addic7ed and open subtitles) and its set up!

csandman avatar Nov 24 '19 09:11 csandman

Looks pretty good! I'll give it a try :)

sebgl avatar Dec 06 '19 20:12 sebgl

After running it for a few weeks, it is indeed pretty good. I'll try to update the readme and docker-compose when I have some time. If anyone else feels like doing it, and open a PR, please do! (looking at you @csandman @jbusuttil83 :smile:)

sebgl avatar Mar 15 '20 12:03 sebgl

i did not try Bazarr, I am using Plex for subtitles but I can try it out when I have sometime.

jbusuttil83 avatar Mar 23 '20 17:03 jbusuttil83

@sebgl If I were to update the readme and dockerfile, would you want me to remove everything about sub-zero?

Also I could add it in right after the radarr section if that makes sense?

csandman avatar Apr 23 '20 00:04 csandman

@csandman yes that makes sense! It would be awesome, please do!

sebgl avatar Apr 23 '20 05:04 sebgl

@csandman what provider do you use with subzero?

jbusuttil83 avatar Apr 23 '20 06:04 jbusuttil83

@jbusuttil83 I've only ever used the 2 providers that @sebgl mentioned in his original guide, Addic7ed and Open Subtitles

csandman avatar May 04 '20 21:05 csandman