Leaderboard
Popular Content
Showing content with the highest reputation on 10/15/23 in Posts
-
Well there are still some levels of degrees between expecting UHD quality and wanting to be able to distinguish whether it is Scarlett Johansson or Robert De Niro your currently seeing on screen I know that it isn't in the hand of the emby developers which quality is served by YouTube, but on the other hand they actively promote it as part of their premium subscription. And for me it is one major reason why I'm paying for it because I wanted to avoid investing the time to manually curate a trailer library.3 points
-
OK, it's a knowing issue for our editor build with Swiftkey, things will not change until next year when we upgrade the community forum and it will have new editor build as well.3 points
-
When I use search I'd rather see my previous search terms rather than Suggestions. What's the algorithm for suggestions? It seems completely random and I don't recall ever using it. Previous search terms would be much more useful.1 point
-
1 point
-
1 point
-
I'd be surprised - but do you have any custom CSS? Paul1 point
-
That seems to be consistent with my experience. I guess the issue appears whenever ffmpeg gets involved.1 point
-
I also hope identify will upgrade because currently there is no identify now there is only option that engine would read exact info which is not the point of the story, that's exactly whats unneeded and abandoned 10 years ago. I remember XBMC and how bad it was in those years it was one of the worst engines and this looks exactly bad like xbmc. Plex recognition was perfect you can watch in logs how it would slice and dice folder names and file names, first it would extract all dots in names that it would extract all know suffixes that were unneeded. Also there was option to put in the root of library ignored files list that you could put words like samples extras nfo, but it was not needed because their recognition engine was perfect. Also there was option to include file to exclude words and numbers from recognition scheme. Like in the above case OP stated he has folder and file with name 90.Day.Fiance.Uk.S01.1080p.NORDiC.DSCP.WEB-DL.AAC2.0.H.264 you could have in the ignore list words NORDiC DSCP WEB-DL AAC2.0 H.264 And literary recognition would be in just two steps in log instead of plex fighting with get nothing function which would slice and dice in several steps For example Plex Media Server[1211]: Got nothing for: Series Xxxx Dl Okko 7turza NORDiC Plex Media Server[1211]: Got nothing for: Series Dl Dd Dual Riper DSCP Plex Media Server[1211]: Got nothing for: Series Dl Dd 1 Plex Media Server[1211]: Got nothing for: Series Dl Dd WEB-DL Plex Media Server[1211]: Got nothing for: Series Dl Aac2 0 Hbo AAC2.0 Plex Media Server[1211]: Got nothing for: Series Xxxx Amzn Dl Ddp2 0 Flux Plex Media Server[1211]: Got nothing for: Series Xxxx S01 Amzn Dl Dd Cinefeel H.264 Plex Media Server[1211]: Got nothing for: Series D Absinth 1 Plex Media Server[1211]: Got nothing for: Series D Absinth Plex Media Server[1211]: Got nothing for: Series Dl Dd Tepes Plex Media Server[1211]: Got nothing for: Series Dl Dd Ntb Plex Media Server[1211]: Got nothing for: Series Dl Dd Ntb 1 I just made above example how would plex slice unneeded words from folders and files, but the basic one is excluding the dots. I get the emby team they are saying why would we need to slice and dice its up to user to adopt to us not the vice versa. I'm just saying I understand you, but that doesn't mean its not ancient retired 7 years ago. Also one thing that's bad for me is that when emby subtitle engine write external sub emby engine doesn't care about folder last modify date it just breaks it, by my opinion emby engine should record last modify date of the folder write the subtitles and re-modified date to the original. Thanks god emby doesn't change anything to media file, but changing folder last modify date is bad its maybe for someone little thing but there are lot people who depends on last modify date for the folder.1 point
-
What year/model TV do you have? You can always download the latest version and install from USB.1 point
-
my guide seems to be refreshing properly all weekend after doing all of that. the guide is matching up.1 point
-
Thank you Worth mentioning that the Kodi wiki have a good selection of test videos https://kodi.wiki/view/Samples1 point
-
OK, what you need to understand is that ADM does not connect to javlibrary at all, ADM *ONLY* connects to its own database, so that the plugin complies with Emby Terms of Use Inside the ADM tool you can request the backend server to add an entry to the database by supplying the link to the data (Javlibrary will only fetch /en/ links and not /cn/) like so: https://www.javlibrary.com/en/?v=javli7dr4i The backend server has a runner tool that fetches data to the server. It is amost always running. It will add your request to the joblist that runs at the top as a priority and *should* do it within the day (24hrs) or much less as requested I have manually added this title to the server anyway for you so it will now find it. Side note: I have noticed that my sever is not recognising alias names in javlibrary and adding them as seperate people Kawakami Yuu & Morino Shizukui is the same person in jav library the sepereate actors are seperated by the heart symbol, the names that appear together inbetween a heart are all the same person using different names in other titles. so Kawakami Yuu is also known as Morino Shizukui There are currently queued around 80,000 titles waiting for the backend server to add them, that list grows and shrinks as the runner finds new titles1 point
-
Emby Server version: 4.7.14.0 I've experienced the same issue with a Chromecast with Google TV 4K. This is casting directly from my android phone (Emby for Android 3.3.32) without the Emby for Android TV app installed on my Chromecast. Basically playback will start and continue without issue but any attempt to skip or fast-forward results in a frozen video image at the new timestamp, and the audio continuing to play. I haven't seen it mentioned in this thread but I did find a trigger for the issue. When I play the same files without CC, the skipping and scrubbing through works without issue. But when I turn it on, then I have playback issues again. All examples were using mkv files. I can upload logs but is there a way to send them to the devs as opposed to posting them in the forums1 point
-
Well, I fixed this myself. I got the idea to use the F12 devtools to see what was going on. I noticed that local ws worked, but on remote (https//mydomain.net) wss was getting a connection error on the console. I remember this was something I'd noticed long ago, and tried to fix, without luck. Everything worked (or so I thought) so I just gave up. I didn't KNOW if this was my problem, but darn it, I don't like errors in my webserver. After a few hours with Google, and the forum here as well, I finally got it working. And lo-and-behold.... Saving on the profile page is working now. I did a massive overhaul of my virtual host in apache. BTW: RewriteRule ^/?(.*)$ ws://localhost:8096/$1 [P,L] that is mentioned here in other forum posts, and on every WS/WSS page I could find, would NOT work for me. For whatever reasons. My working config: <VirtualHost *:443> SSLEngine On ServerAdmin admin@dddddd.xxx ServerName emby.dddddd.xxx DocumentRoot /var/www/html/ Protocols h2 h2c http/1.1 LogLevel warn ErrorLog ${APACHE_LOG_DIR}/emby.error.log CustomLog ${APACHE_LOG_DIR}/emby.access.log combined ServerSignature Off ProxyRequests off ProxyPreserveHost on SSLProxyEngine on RewriteEngine on RewriteCond ${HTTP:Connection} upgrade [NC] RewriteCond ${HTTP:Upgrade} websocket [NC] ProxyPass /embywebsocket ws://localhost:8096/ ProxyPassReverse /embywebsocket/ ws://localhost:8096/ ProxyPass / http://localhost:8096/ ProxyPassReverse / http://localhost:8096/ <IfModule mod_headers.c> Header always set Strict-Transport-Security "max-age=15768000; includeSubDomains; preload" </IfModule> Include /etc/letsencrypt/options-ssl-apache.conf SSLCertificateFile /etc/letsencrypt/live/dddddd.xxxt/fullchain.pem SSLCertificateKeyFile /etc/letsencrypt/live/dddddd.xxx/privkey.pem </VirtualHost> No more errors on WSS in the browser devtools, and I can edit uses just like on local.1 point
-
Yeah, seems so. Emby Devs are doing a really great job! Also the service here is superb! I switched over to a IPv4 server now, as stated. But sadly many files don`t get metadata, and i have no idea why, or where to find...1 point
-
Sadly you can't run Emby IPv6-only if you want everything to "just work", not because of the Emby devs (they've done a good job with it), it's third parties who use IPv4-only API endpoints for things like downloading art and subtitles.1 point
-
Alors, plusieurs choses : - Si tu as en effet désactivé le transcodage pour tes clients, ta tablette Android te dira qu'il n'y a pas de flux vidéo compatible puisqu'il faut que ta tablette embarque une carte vidéo prenant en charge le HEVC H.265. - Concernant le problème de couleur sur ton PC, cela est lié à plusieurs paramètres : Déjà, il te faut un lecteur vidéo qui embarque le Codec HEVC (comme VLC par exemple), ou avoir installer un pack de codec ou celui qui est sur le Store de Microsoft. Ce qui semble être le cas chez toi). A noter que la version d'Emby sur le Windows Store n'embarque pas de Codec HEVC Si ton écran de PC n'est pas un écran 4K HDR, attends toi à une moins bonne qualité. Dans ce cas, je te conseil de laisser ta carte vidéo Nvidia laisser régler les paramètres des couleurs vidéos et de choisir la plage dynamique complète (voir ci-dessous) Enfin, si ton problème persiste pour ton PC, réinstalle tes codecs. A noter toutefois que : - Regarder un film sur un écran de PC qui n'est pas 4K HDR ( et qui ne supporte pas le Dolby Vision) ne sert à rien. Un film encodé pour une résolution en 1080P sera de bien meilleure qualité. - Les cartes vidéos Nvidia n'embarque pas le Dobly Vison. Par contre, sur la Nvdia Shied, oui, mais c'est encore différent. - Si toutefois, tu veux regarder ton film 4K sur ton pc, alors je te conseil d'activer le transcodage et le mapping HDR pour une meilleure restitution des couleurs. Bon courage.1 point
-
This request is dumb AF. How often should you be notified, how you being notified? What if the schedule changes? This is exactly what the ARRs are for. What happens when emby uses one lets say tmdb for tracking dates, but the real date on tvdb isnt being reflected in emby cus they use a diff api? Far better things for time to be spent on.1 point
-
1 point
-
1 point
-
I always forget I use a non-default keyboard. I've also got swiftkey. If I switch back to Samsungs keyboard, I no longer see this problem in Chrome or DuckDuckGo. Oddly I've never seen this elsewhere though and I've only noticed it in the last month or two. I'm pretty much always on android when I'm here.1 point
-
Dans tes logs, c'est bien ta carte vidéo Intel qui décode. Extrait de ton fichier que tu as joint : 2023-10-14 10:14:05.051 Info VaapiCodecProvider: Adapter #0: 'GeminiLake UHD Graphics 600' Id:12677 (Driver: Intel iHD driver for Intel(R) Gen Graphics - 23.1.4 (12e141dc2), Vendor: Intel Corporation) 2023-10-14 10:14:05.198 Info QuickSyncCodecProvider: ProcessRun 'ffdetect_qsvencdec' Execute: /var/packages/EmbyServer/target/bin/ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 qsvencdec -print_format json 2023-10-14 10:14:05.398 Info QuickSyncCodecProvider: ProcessRun 'ffdetect_qsvencdec' Process exited with code 0 - Succeeded 2023-10-14 10:14:05.399 Info TaskManager: Check for plugin updates Completed after 0 minute(s) and 1 seconds 2023-10-14 10:14:05.459 Info QuickSyncCodecProvider: Adapter #0: 'GeminiLake UHD Graphics 600' Id:12677 (Driver: , Vendor: 32902, SDK Version: 1.35) 2023-10-14 10:14:05.514 Info NvidiaCodecProvider: ProcessRun 'ffdetect_nvencdec' Execute: /var/packages/EmbyServer/target/bin/ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 nvencdec -print_format json 2023-10-14 10:14:05.517 Info NvidiaCodecProvider: ProcessRun 'ffdetect_nvencdec' Process exited with code 1 - Failed On voit bien un plus bas, qu'il y a du transcoding aussi bien de la vidéo que du son : 2023-10-14 10:14:25.039 Info App: User policy for Xxxxxx. EnablePlaybackRemuxing: True EnableVideoPlaybackTranscoding: True EnableAudioPlaybackTranscoding: True 2023-10-14 10:14:25.n Info Server: http/2 Response 200 to host2. Time: 325ms. POST https://host1:8920/emby/Items/274160/PlaybackInfo?UserId=c327f45c168f4167a0ef51219eeed2d3&StartTimeTicks=0&IsPlayback=true&AutoOpenLiveStream=true&MaxStreamingBitrate=80000000&X-Emby-Client=Emby Web&X-Emby-Device-Name=Firefox Windows&X-Emby-Device-Id=2a8d3cbb-46b0-4275-beeb-d414586317b3&X-Emby-Client-Version=4.8.0.51&X-Emby-Token=x_secret1_x&X-Emby-Language=fr&reqformat=json Ce transcoding peut être lié au débit réseau qui est limité sur son client Emby. Par défaut, sur mon serveur, je laisse tout en automatique. Il en va de même pour le transcodage dont voici mes paramètres : De plus, on dirait que dans ta configuration (mais laquelle ?) tu actives l'accélération Vidéo NVIDIA (qui n'est pas supporté par une carte Vidéo Intel). Je suppose juste qu'il s'agit celle de ton NAS. Pour ma part, j'ai mon serveur Emby qui est hébergé dans le cloud. Ce sont mes clients (Tv, Pc, etc.) qui se débrouillent pour décoder la vidéo. Ma télé étant une 4K compatible Dobly Vision, je n'ai pas le problème de lecture que tu rencontres, que cela soit avec le lecteur natif d'Emby ou un lecteur Vidéo tiers. Il faut se souvenir d'une chose essentielle avec Emby. Dès qu'un flux vidéo ou son est transcodé (et ce, quelque soit la raison), c'est le serveur qui fait le travail. Pas ton client. Voici le rapport avec ton NAS. Voici pour ma part, la politique que j'ai mise en place (testée et éprouvée depuis longtemps) : Je regarde les films en 4K sur ma TV 4K. J'interdis à mes clients toute possibilité de transcoder une vidéo (Normal quand tu as un serveur sur le Cloud, c'est pas fait pour ça) Concernant mes navigateur Web, je regarde en 1080P (Il est possible de regarder des films en 4 K, mais il faut installer un plugin pour le navigateur). Sinon, tu as bien sur le client Emby ou VLC mais si ton PC n'a pas une carte vidéo compatible 4K et acceptant le Dobly Vision, c'est au mieux ton serveur qui fera le transcodage vidéo, au pire tu n'auras pas d'image, ou des problèmes de qualité vidéo.1 point
-
Thanks for the link Luke. It most certainly was a permissions issue. I knew what had to be changed, but wasn't confident enough to do it. I was afraid if I messed with the permissions, I may lose access to my media. Well, today I decided to make the permissions change to what I thought it should be and it resolved the issue. I'm still going to hold onto that PDF for future reference though. Thanks again, Chris1 point
-
1 point
-
Me too. Been like it for a long time. Always thought it was just the keyboard app I'm using (SwiftKey).1 point
-
My understanding of the position quite recently was that the quality was chosen automatically to suit the display position, so that for instance: <iframe style='width:100%; height:800px;' src='https://www.youtube.com/embed/xxxxxxxx'></iframe> would be sent a 720p if available. I don't know if there is any way for Emby to leverage that, though. Paul1 point
-
ability of emby to provide correct remote path is questionable even with CGNAT, for container setups or when emby are hosted inside NATed network but are reverse proxied by nginx or forwarded by DNAT. Ports and domains would newer match.1 point
-
Think trott90 tried to say why should we upgrade as long as you emby dosn't support it! Even though we WANT too1 point
-
Well I can tell you right now that your Pi4 will make a better emulation machine than it will an Emby Server. As @TMCswsays, it will struggle hard when it comes to any transcoding. I recently picked up a smashed screen i5-1235u for $130 to replace my i3-1115G4 as the motherboard on it shorted out due to a bad battery (in hindsight I should have disconnected it but a year for a $100 machine is not a bad bargain). This laptop is similar to my old server, that the i3-1115G4 was a replacement for. All it would need is a usb ethernet adapter, and it will use a little more power than your Pi, and will handle over 10 1080p transcodes for clients that can't direct play, or 3 4k to 1080 transcodes. If you're scared of buying damaged units, black friday/cyber monday is coming, and it would be a good chance to probably get an i3-1215u for about $200, if not cheaper. Used ones are currently $249 on ebay. This particular model can't have the ram upgraded though. Here is an i3-1115G4 for $209 with a 2 year warranty. According to the maintenance manual, it has 4 gigs soldered onboard, and has 1 empty slot (my 8130u is also a Lenovo with soldered ram). Throw in a 16 gig module, get a usb NIC and you're golden. Power usage. When I had my 8130u as a server, it sipped power. Single digits. When it had to transcode, it used a bit more, up to about 17 or so. When I switched to the i3-1115G4, it used even less power when idle, 3-5 watts, and it would boost up to 25 for a few seconds when it was doing something really heavy. My i5-1235u, I haven't had enough time to test it out yet as I've only had it running for 3 days, but it's faster than I can believe and I've seen quicksync speeds over 260fps for 1080p encodes to HEVC using staxxrip while encoding stuff across the network.1 point
-
Sorry to say, but the Pi4 isn't ENOUGH, better for transcoding over the Pi3 to make it worthwhile. Although they both direct-stream(along with DVR) reasonably well. As for a client I have found a good Fire Stick or (yuck)Roku to be much simpler, better and most-often cheaper. For a server It depends on you needs but perhaps a Intel NUC or cheap laptop (ether with UHD) would suit you better? maybe @RanmaCanadaHas some advice...1 point
-
When I researched Emby I found several comparisons that included Jellyfin. Most (all?) of the ones I read or watched seemed to conclude that Emby was more polished and more ready to go out of the box than Jellyfin. So I skipped trying JF altogether and just installed Emby. Frankly I wasn't expecting to be impressed with Emby. But (as my prior post in this forum attests) I am! Brian.1 point
-
Hi Luke If you need help for translation to french, feel free to ask1 point
-
We plan to revamp user settings in future updates to allow for more server side control. Thanks.1 point
-
i hope there is a big announcement about this and a warning that way i can delete this third part addont before updating for whenever this feature get built in1 point
-
1 point
-
@chef @Cheesegeezer 'Multi Language Metadata' I'd forgotten all about this script I wrote - it's such a simple concept - and works beautifully. The only flaw is keeping the STRM files up to date with deletions and new additions, running it again adds items, but deleted items keep the strm file. I know we are involved with many projects (lol) but do you think this could be put in a Plugin ? Looking at the number of downloads - it did have a fair amount of interest - but via a Catalogue plugin, it will probably get a lot more. It should be REALLY easy to do. (famous last words.. haha) With a plugin, the user would create the new Alternate language library - and then choose the 'source' and 'destination' libraries - and it would simply create and copy strm links from all the existing content to the new library. It could do this at a file level (as the script does) or do it by referencing the emby db file path. You just repeat if you want multiple alternate libraries - or you could add multiple destinations (as the script does) A 'watch' monitor checks for new or deleted items (as we have done on many plugins) and it removes the strm file. What do you think ? I probably should learn how to write Plugin's myself - this would be a nice easy one to start with I think ...1 point
