Jump to content

alturismo

Moderators
  • Posts

    7,453
  • Joined

  • Last visited

  • Days Won

    80

Everything posted by alturismo

  1. TVH Docker latest tagged (4.3) working fine here with hw transcoding h264 ... what i see here is u try to transcode to mpeg2 ? the alpha support can be dropped meanwhile, i needed that at beginning for my i7-8700, but since 6.6x or so it shouldnt be needed anymore. and i cant follow you what u mean with VM libreelec and transcoding ? u running tvheadend inside the libreelec vm or the seperate docker from here ? local it would be best to NOT transcode at all, either by tvheadend or by plex, only when u stream to a slower device (bad wlan or externally depending on your internet connection). Plex hw transcoding also working flawlessly here just as sidenote. and i dropped usb devices completey, never had them running bulletproof here on unraid. so may describe 1 issue you want to solve now, dvb device wich has continue errors ? there may the author of tvheadend can help ... has nothing to with this thread (just needed for drivers for unraid to make use of /dev/dvb ...) your transcode issue is the same, also take a look at tvheadend docker thread (when u use the docker and not the vm), i had some help there and in the end it needed an update cause i use newer hardware (coffee lake ...), and may point why u transcode cause its ...
  2. may to clarify, passthrough ? u mean u use the tvheadend docker and use the dvb devices like /dev/dvb/ in extra parameters ? or passthrough to an vm and use there ? with passthrough u shouldnt need the dvb edition, only when using the upper usage device=/dev/dvb
  3. about the /tmp files from xml sources ... https://forums.plex.tv/t/docker-image-size-balloon/323158/16 lets hope they get it sorted soon
  4. just as note, update from today seems working fine again, talking about lates build wich crashed after x minutes/hours ...
  5. g morning yes, that worked out now, drivers and cards are there and fast check are working thanks alot herefore
  6. I once tried to downgrade and it didnt worked ... I guess there are some conf changes ... Gesendet von meinem SM-G950F mit Tapatalk
  7. Not if you on 4.3... Gesendet von meinem SM-G950F mit Tapatalk
  8. Repository linuxserver/tvheadend:192 then we on the version from ~ 12 days ago wich is working, had the same issue as you.
  9. sadly here its not working, dvd drivers are found but no adapter drivers ... so no adapters, no fun here i replaced those 3 files as described (bzfirmware, bzimage, bzmodules), bzroot is not needed i assume cause its not included. reverted to 661 and all is good, was worth the try here. thanks anyway for the compiling and uploading
  10. if someone has issues like tvheadend crashing always since latest update, i use the tag 192 and its working. may cause i have schedule direct as epg source ... just in case someone else has the same issue
  11. i have all running here, tvheadend backend, kodi, plex and emby, all live tv assigned and working, but as daily usage i would only suggest kodi ... so also interested what is good in plex about watching live tv @home, i only use plex or emby outdoor for live
  12. may i ask for a privoxy/vpn docker only (without sonarr or deluge), my user case is vpn proxy only ... i dont use any torrents etc ... currently i use your deluge vpn container and its working perfectly, just thought about overacting for proxy usage only
  13. after some more reading i assume its not so easy for apps in golang behind a nginx reverse proxy, thanks for trying.
  14. thats something idk, just thought cause in the error i see .../data/... now, when i do setup like this (without the 2nd location server { listen 443 ssl; root /config/www; index index.html index.htm index.php; server_name web.*; ssl_certificate /config/keys/letsencrypt/fullchain.pem; ssl_certificate_key /config/keys/letsencrypt/privkey.pem; ssl_dhparam /config/nginx/dhparams.pem; ssl_ciphers 'ECDHE-RSA-AE..... ### <- cutted so paste is smaller ssl_prefer_server_ciphers on; client_max_body_size 0; location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; proxy_pass http://192.168.1.2:34400/web/; proxy_redirect off; proxy_buffering off; proxy_set_header Host $host; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_ssl_verify off; } } i get the following error in browser 400 Bad Request: too many Host headers from console
  15. thats what i already found at google but without any luck heres my last config as sample, may i interpret something wrong error from chrome console is WebSocket connection to 'wss://web.mydomain.de/data/?Token=undefined' failed: Error during WebSocket handshake: Unexpected response code: 400 server { listen 443 ssl; root /config/www; index index.html index.htm index.php; server_name web.*; ssl_certificate /config/keys/letsencrypt/fullchain.pem; ssl_certificate_key /config/keys/letsencrypt/privkey.pem; ssl_dhparam /config/nginx/dhparams.pem; ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA'; ssl_prefer_server_ciphers on; client_max_body_size 0; location / { # auth_basic off; # allow all; # Allow all to see content # auth_basic "Restricted"; # auth_basic_user_file /config/nginx/.htpasswd; include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; proxy_pass http://192.168.1.2:34400/web/; } location /data { ### location /wss { <-- same result include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; proxy_pass http://192.168.1.2:34400/web/; proxy_redirect off; proxy_buffering off; proxy_set_header Host $host; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_ssl_verify off; } } thanks again for trying to help
  16. Hi, may someone has a hint for me for a reverse setup, i get the following error in chrome dev view data.js:242 WebSocket connection to 'wss://web.mydomain/data/?Token=undefined' failed: Error during WebSocket handshake: Unexpected response code: 404 xTeVe @ data.js:242 toolbarContentscript.js:122 {message: "The message port closed before a response was received."} i tried all kinda several setups from google regarding websocket but im clueless ... may someone has a hint howto setup a reverse proxy here thanks ahead for a hint
  17. after some tests with disabling cache_dir plugin i can confirm its back to normal again. What i didnt test yet is a reboot without cache_dir plugin (uninstall, reboot, check ...), only disabled now ... as there where no changes still a myst what made this happen
  18. hi, may an idea about Filebot error, i guess since 664 (happened last nite, updated today to 665, same behavior) from log Use excludes: /config/amc-exclude-list.txt (1) Ignore hidden: /media/Temp/.keep # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x000014d6dad1aa72, pid=243, tid=0x000014d712366700 # # JRE version: Java(TM) SE Runtime Environment (8.0_161-b12) (build 1.8.0_161-b12) # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.161-b12 mixed mode linux-amd64 compressed oops) # Problematic frame: # C [libmediainfo.so.0+0x3c3a72] # # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again # # An error report file with more information is saved as: # /tmp/hs_err_pid243.log i attached the error log in case its useful, i use filebot without GUI as note (config GUI no) for an tip, thanks ahead hs_err_pid243.log
  19. the reboot was only once required after changing the "broken" script. since then i didnt had to reboot on changes etc ... i think you can follow this in logs, i started this plugin manually after update to 664 this morning, when u see all lines (not only the 1 line) you should be good, also here the disks spin down automatically after the timeout (here 15 mins) they spinned up by activating the plugin and then ... as it should be, perfect
  20. i also had alot of disk spinups since latest unraid releases, so i came to this plugin and now its perfect here. my settings are Nov 5 06:34:38 AlsServer cache_dirs: Stopping cache_dirs process 27693 Nov 5 06:34:39 AlsServer cache_dirs: cache_dirs service rc.cachedirs: Stopped Nov 5 06:34:39 AlsServer cache_dirs: Arguments=-i Daten -i Media -i Temp -X 300 -Y 120 -p 0 -u -U 0 -l off -D 9999 Nov 5 06:34:39 AlsServer cache_dirs: Max Scan Secs=10, Min Scan Secs=1 Nov 5 06:34:39 AlsServer cache_dirs: Scan Type=fixed Nov 5 06:34:39 AlsServer cache_dirs: Max Scan Depth=none Nov 5 06:34:39 AlsServer cache_dirs: Use Command='find -noleaf' Nov 5 06:34:39 AlsServer cache_dirs: ---------- Caching Directories --------------- Nov 5 06:34:39 AlsServer cache_dirs: Daten Nov 5 06:34:39 AlsServer cache_dirs: Media Nov 5 06:34:39 AlsServer cache_dirs: Temp Nov 5 06:34:39 AlsServer cache_dirs: ---------------------------------------------- Nov 5 06:34:39 AlsServer cache_dirs: Setting Included dirs: Daten,Media,Temp Nov 5 06:34:39 AlsServer cache_dirs: Setting Excluded dirs: Nov 5 06:34:39 AlsServer cache_dirs: min_disk_idle_before_restarting_scan_sec=60 Nov 5 06:34:39 AlsServer cache_dirs: scan_timeout_sec_idle=300 Nov 5 06:34:39 AlsServer cache_dirs: scan_timeout_sec_busy=120 Nov 5 06:34:39 AlsServer cache_dirs: scan_timeout_sec_stable=30 Nov 5 06:34:39 AlsServer cache_dirs: frequency_of_full_depth_scan_sec=604800 Nov 5 06:34:39 AlsServer cache_dirs: Including /mnt/user in scan Nov 5 06:34:39 AlsServer cache_dirs: cache_dirs service rc.cachedirs: Started: '/usr/local/emhttp/plugins/dynamix.cache.dirs/scripts/cache_dirs -i "Daten" -i "Media" -i "Temp" -X 300 -Y 120 -p 0 -u -U 0 -l off -D 9999 2>/dev/null' like this i have 0 spinups left ... may a try, specially cache pressre 0 helped ...
×
×
  • Create New...