Jump to content

DZMM

Members
  • Posts

    2,801
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by DZMM

  1. Thanks @meep. I had a bit of time on my hands this week, so I've tidied up my setup: Latest Kodi V18 builds on each STB running off a central mysql database and I've put the sources.xml, favourites.xml and playlists on a network share so they are all synced. I'm loving the leanback integration on Android TV Added trakt.tv plugin to sync to trakt, which then syncs history to Plex and vice versa Plex setup for all my mobile clients with the history synced with Kodi I know I could add the Plex or Emby plugin to Kodi, but I don't like the idea of clicking an addon to watch my stuff rather than within native Kodi. Also, I don't think leanback, search etc will work from my Android TV STBs
  2. Yes you can specify import languages
  3. Phew - thanks, I'd done the same. Spent 30 mins trying to work out what I was doing wrong. For other users (and there will be more). The TLDR solution to the docker not working is: 1. Forward port 80 in your router to the docker if your docker has a unique IP via 6.4, if not forward another port e.g. 81 to unraid and then change use the same port in the http setting in the docker 2. click on 'show more settings' and change HTTPVAL to true - do not add a new variable HTTPVAL like I did, as it's already there in the new docker
  4. Any idea what's gone wrong? I've been using this successfully for a while, but after upgrading from RC21 to 6.4 it's stopped working. I've tried a fresh install, but it still won't work: DH parameters successfully created - 2048 bits SUBDOMAINS entered, processing Sub-domains processed are: -d REDACTED EXTRA_DOMAINS entered, processing Extra domains processed are: REDACTED E-mail address entered: REDACTED Generating new certificate Saving debug log to /var/log/letsencrypt/letsencrypt.log Plugins selected: Authenticator standalone, Installer None Obtaining a new certificate Performing the following challenges: Client with the currently selected authenticator does not support any combination of challenges that will satisfy the CA. Client with the currently selected authenticator does not support any combination of challenges that will satisfy the CA. IMPORTANT NOTES: - Your account credentials have been saved in your Certbot configuration directory at /etc/letsencrypt. You should make a secure backup of this folder now. This configuration directory will also contain certificates and private keys obtained by Certbot so making regular backups of this folder is ideal. ERROR: Cert does not exist! Please see the validation error above. The issue may be due to incorrect dns or port forwarding settings. Please fix your settings and recreate the container
  5. I used an tp-link c8 successfully with unraid when I had similar problems. In my experience (UK) I've never come across a Powerline solution that matches 802.11ac performance.
  6. sounds like you changed the defaults in the config.yaml file for paths: paths: default: $albumartist/$album%aunique{}/$track - $title singleton: Non-Album/$artist - $title comp: Compilations/$album%aunique{}/$track - $title albumtype_soundtrack: Soundtracks/$album/$track $title
  7. the webgui is limited to running commands like stats to get info about your library - you can't tag there. http://beets.readthedocs.io/en/v1.4.6/plugins/web.html
  8. docker exec -it beets /bin/bash -c 'beet import /music_unfiled' -it not -i -t
  9. My experience was about the same, give or take a GB....
  10. I had this problem - the docker didn't follow the max log size I had specified in the main docker settings. To fix, I had to manually add to the lidarr docker in Extra Parameters: --log-opt max-size=50m --log-opt max-file=1 Unfortunately you have to delete your docker image and reinstall each docker (you don't lose app data) afterwards.
  11. set md_write_method Turns it off. I binned this script as I didn't know how to control turning it off automatically once mover had finished and I decided I was happy with mover running and going slowly as it's background activity i.e. I'm not sitting at the keyboard waiting for it to finish.
  12. have you tried running the original custom mover script first without my mod? From memory, my mod did work but I just use the normal script now
  13. this is probably one for the Lidarr team
  14. I did a couple of times and nothing came through. I just tried again and the update was available - all working fine so far. Thanks
  15. sorry, I think I asked the wrong question. Will it be in this Friday's docker update?
  16. Brilliant - will it be pushed out on Friday or earlier?
  17. Posted my problem on the beets forum and the latest version of beets needs BeautifulSoup https://discourse.beets.io/t/crashing-on-resuming-import-help-please/257/2?u=dzmm This isn't available in nerdpack - is it possible to add to the docker? Or do I just run the following command at array start? pip install beautifulsoup4
  18. I'm getting an error - any ideas how to fix? Traceback (most recent call last): File "/usr/bin/beet", line 11, in <module> load_entry_point('beets==1.4.6', 'console_scripts', 'beet')() File "/usr/lib/python2.7/site-packages/beets/ui/__init__.py", line 1256, in main _raw_main(args) File "/usr/lib/python2.7/site-packages/beets/ui/__init__.py", line 1243, in _raw_main subcommand.func(lib, suboptions, subargs) File "/usr/lib/python2.7/site-packages/beets/ui/commands.py", line 937, in import_func import_files(lib, paths, query) File "/usr/lib/python2.7/site-packages/beets/ui/commands.py", line 914, in import_files session.run() File "/usr/lib/python2.7/site-packages/beets/importer.py", line 327, in run pl.run_parallel(QUEUE_SIZE) File "/usr/lib/python2.7/site-packages/beets/util/pipeline.py", line 445, in run_parallel six.reraise(exc_info[0], exc_info[1], exc_info[2]) File "/usr/lib/python2.7/site-packages/beets/util/pipeline.py", line 312, in run out = self.coro.send(msg) File "/usr/lib/python2.7/site-packages/beets/util/pipeline.py", line 194, in coro func(*(args + (task,))) File "/usr/lib/python2.7/site-packages/beets/importer.py", line 1506, in plugin_stage func(session, task) File "/usr/lib/python2.7/site-packages/beets/plugins.py", line 124, in wrapper return func(*args, **kwargs) File "/usr/lib/python2.7/site-packages/beetsplug/lyrics.py", line 805, in imported False, self.config['force']) File "/usr/lib/python2.7/site-packages/beetsplug/lyrics.py", line 818, in fetch_item_lyrics lyrics = [self.get_lyrics(artist, title) for title in titles] File "/usr/lib/python2.7/site-packages/beetsplug/lyrics.py", line 851, in get_lyrics lyrics = backend.fetch(artist, title) File "/usr/lib/python2.7/site-packages/beetsplug/lyrics.py", line 388, in fetch return self.lyrics_from_song_api_path(song_api_path) File "/usr/lib/python2.7/site-packages/beetsplug/lyrics.py", line 363, in lyrics_from_song_api_path html = BeautifulSoup(page.text, "html.parser") NameError: global name 'BeautifulSoup' is not defined
  19. what does everyone have set as their default profile? I get stuttering for the first 30 seconds or so on pass, and then it works ok after that.
  20. I've just tried tvhproxy again and it's working perfectly for me now - I think switching to a pfsense VM allowed me to fix any networking issues. Brilliant - just in time for the xmas holidays and it also solves my problem of not being able to watch my tv tuners remotely.
×
×
  • Create New...