Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. Hello same issue i guess. I hope it will solve soon. Apparently lastest beta did not, so i am afraid there is no solution yet
  3. crusher11

    Intros Backup Support Thread

    It no longer functions, because it hasn't been updated in years. A cursory glance at the last couple of pages would have made that very clear.
  4. GrimReaper

    Nächste Episode bei Serien

    Nein, aber falls Sie Fragen haben, können Sie diese im Plugin-Thread stellen.
  5. Micha75

    Nächste Episode bei Serien

    Dann wrde ich mich mal einlesen. Hast du es denn auch in Benutzung?
  6. Today
  7. darkassassin07

    Disable webaccess to emby server?

    Alright, this is getting silly, so lets provide a solution here. I still don't think this is necessary, but to each their own. The easiest way I can think of to effectively disable the web app without disrupting anything else is to replace the index.html file served at both /web/index.html and /emby/web/index.html (the former being the one primarily used). Without this, the browser doesn't know how to load the rest of the app and is stuck displaying whatever you put in that file. I already replace some files using the following method, so I'm just going to list how I do that. It uses nginx to check a folder for files to replace, if a replacement file exists that is what gets served, if not nginx proxies to emby as usual serving whatever emby server responds with. I'm sure you could do the same with other proxies, but nginx is what I'm familiar with so that's what I'll list. I primarily use this to replace a few images like the favicon and some of the emby badging with my own server name, but it works just fine for this too. (I did test this solution before posting) First is the nginx config. I'm just listing the relevant parts, you''ll still need your ssl configs, headers, log files, etc. Checkout the nginx thread pinned in general for further instruction there. server { server_name example.domain.com; listen 443 ssl; root /etc/nginx/html/emby; #look in this folder for replacment files location / { try_files $uri @proxy; # check for files to replace, if none exist proxy instead } location @proxy { proxy_pass http://172.18.0.94:8096; #address of emby server to proxy } } Then inside the folder /etc/nginx/html/emby/web/ and inside /etc/nginx/html/emby/emby/web/ you'll create a file called index.html with whatever contents you want displayed instead of the web app. Here's an example: <!DOCTYPE html> <html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Unavailable</title> </head> <body> <h1 align="center">Unavailable</h1> <h2 align="center">The web app is disabled, please use Emby for Android/IOS.</h2> <h2 align="center"></h2> </body></html> Again: All this does is prevent regular users, ALL regular users, from being able to use the web app. It does not improve security. I also have not tested this with Emby Connect as I do not use that feature. I think Emby Connect loads the app from emby.media, so this would not prevent that loading in a browser AFAIK.
  8. GrimReaper

    Nächste Episode bei Serien

    Das gibt es (obwohl es ein wenig Bastelarbeit erfordert).
  9. GrimReaper

    Topwievs in library homescreen broken thumbs

    Just open Edit Images dialog on each library and delete existing (broken) image, they'll be recreated automatically after next scheduled scan. Nope, that setting relates only to library Folders view (tab), if your library consists of multiple folder paths.
  10. Micha75

    Nächste Episode bei Serien

    Guten Morgen, bei mir ist es so, das ich kurz vor Ende der Episode, das der Butten "Nächste Episode" erscheint. Nun gibt es leider viele Serien wo der Abspann leider 10Minuten oder mehr dauern. Somit kommt der Button natürlich nicht rechtzeitig (glaube erst bei 45 sekunden Restzeit) Gibt es ein Tool wo man, ähnlich wie beim Intro-Scan, das der Abspann erkannt wird und dann direkt weiter drücken kann? LG Micha
  11. @jw2804All members are expected to respect Forum rules. Kindly adhere to those.
  12. Lenders57

    Projet Mediakeeper

    Arf dommage, j'ai du mal à blairer Python, je t'aurais aidé avec plaisir si tu faisais en php Après si t'as un problème (t'arrives pas à debug des API ou autre) n'hésite pas quand même (je suis dev)
  13. C.S.

    Disable webaccess to emby server?

    So to really make use of that feature, I would need to add every single device for every user individually. Each time anyone gets a new phone, TV, tablet - they would need to call me so I can temporarily enable access for them from all devices, wait for them to log in* on the new device, then (remember to) go back and lock them down again. That's a nightmare. Does anyone actually do this? Does my suggestion sound more complex than the above scenario? All I'm saying is I might like to ban LG given their security issues, or browsers because unreliable playback, or something else because something else. There are a million reasons anyone might want to ban anything. None of them are anyone else's business any more than it is why you could be - not saying you are, just saying you could be - restricting grandma to the TV in the basement. *I skipped the part where I reset their password because of course they don't know their password because I gave them a good password.
  14. Informing you that you're violating the product's terms of service and will not be getting assistance from staff is not “not nice.” Clearly my error is that I was too polite.
  15. Hi! I changed my server to new C:/ after a harddrive update and everything worked great but with one issue. After scanning the whole library the image in each library now has a broken thunb insted of showing differentg folders, it did at first, now its gone. To my knowledhe its related to the option to show multiple covers in top wiev, and that setting hasnt changed so im out of ideas as to what could be the cause of this, attach pic:s to show the issue, thanx!
  16. GrimReaper

    Hide Playlists from Included In section?

    Updated version. playlist_row.js
  17. @crusher11 Sorry [redacted], as you can see i'm a noob around here and this was my very first post, I didn't realise it was a "the first rule about fight club is we don`t talk about fight club" situations however your point is taken. Next time you see a noob posting their first comment - as our parent tell us when we are kids "if you don't have anything nice to say don't say anything at all". JW [redacted]
  18. Hey Vispro, that's a really good idea. I didn't consider that option, the more I think about it the more I like it. I recon with the help of chatgtp I could create such a script. Thanks for your suggestion. JW
  19. GrimReaper

    Hide Playlists from Included In section?

    As you've already surmised, it can't be done by CSS alone, you'd need to do it via js script (though it shouldn't take more than a few minutes to set that up). Note that you'd have to repeat that on each server update (not that often/tedious either, I have several scripts of my own, for different purposes). Edit: If you wanna play with it, place the script in your server's \system\dashboard-ui folder; in the same folder, edit index.html and add a line at the very bottom: script src="hide_playlists.js"></script> Hard-refresh browser (Ctrl+F5) or restart server.
  20. Aaronelder

    subtitles not working

    Hi Luke, any luck finding the issue?
  21. Hi! Did you find any susceptibility in this log, or will you need more from my side? Please let me know!
  22. danergo

    Items disappear after coming back from player

    Did you manage reproducing this or do you maybe need some more insights from my side?
  23. Hello I created these visuals for my own use, but anyone who wants a different look can use them as well. The visuals are designed for the “My Media” categories on the Emby Home page. Some elements may require a Canva Pro subscription for editing. Canva Link
  24. Hi, I'm seeing my subtitles just cutting out maybe 5 minutes before the end of the stream. Works fine on my non-LG devices. Not sure if it's the same root cause as the issues listed in this thread, since the subs do work for most of the episode. But they are embedded subs having issues. Or should I make a fresh thread with logs?
  25. Hello, I created this visual package for my own use, but if you’d like, I’m sharing the Canva link so you can use it too. You can customize the visuals as you like and enhance your Emby Genres section. All visuals are free to use and fully customizable. https://www.canva.com/design/DAHEoddLDkE/IyG179kpjegG0nc46D5OsA/view?utm_content=DAHEoddLDkE&utm_campaign=designshare&utm_medium=link&utm_source=publishsharelink&mode=preview
  26. pünktchen

    Disable webaccess to emby server?

    It adds a third layer of security: user + password + device id. It also prevents your friends and family to share their accounts with other friends or to use their credentials with devices in hotels and similar public areas where they maybe forget to logout after use. It also gives you some kind of control over your premiere device limit.
  27. KeeperD

    Projet Mediakeeper

    Salut @Lenders57, Python et Vue/JS, j'utilise l'API d'Emby et TMDB
  1. Load more activity
×
×
  • Create New...