Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/09/23 in Posts

  1. Since we can now detect end credits, or manually add them in other cases, it would be nice to see this, rather than an automatic percentage/time remaining, trigger the "next episode" popup and decide whether an episode is resumable or not. Even better if it could expand to movies for the latter point.
    1 point
  2. Maybe uPNP is turned off in your router. Good (It's a significant security weakness). If that is the case, you need to forward the Emby port by manual configuration. Paul
    1 point
  3. Isn't that the whole purpose of the function? or am i missing something? But yeah, i would really like to bring up the next episode accurately
    1 point
  4. Thanks for the kind words - you are very welcome! Regarding help - yes hopefully soon. The project is still on hold pending a beta test phase with a larger audience and I hope we'll get to it very soon.
    1 point
  5. @softworkzyou are doing some amazing work. If I can help in any way just let me know, I work free No matter what, I appreciate your friendship. Vic
    1 point
  6. Possibly video size alignment - i.e. width or height not being multiples of 16 or even 32, but in this case it's FHD and even though this doesn't fulfill the mentioned criteria, it's a size that every player should be able to handle. He could try different scalings - but: @Super957- Does this happen with all videos or just with those home-made intro videos?
    1 point
  7. @Junglejimyou taught me something new today. Thanks very much. Vic
    1 point
  8. Yeah just go to server/live tv/channels and un-tick the ones you don't need.
    1 point
  9. You need to enable video transcoding for these formats of subtitles.
    1 point
  10. This is fine here. Thanks.
    1 point
  11. How did you split the files? I would expect MKVToolNix to do it OK (but I don't have experience of that audio type). Paul
    1 point
  12. OK, I solve this problem by deleting this file 驯龙高手2 (2014) ! Ha, simple but uesful Thanks for everyone who helps me!!!!
    1 point
  13. I'm fully with you on the feature request - but if you have a particular item that is causing issues, then you can always add the provider id in square brackets as part of the folder name - and it should force the identification. ie Rabbit Hole (2023) [tvdbID=415584] Fast X (2023) [tmdbId=385687] You can also use imdbid https://emby.media/support/articles/Movie-Naming.html#id-tags-in-folder--file-names
    1 point
  14. You might find it far easier to switch to a different provider who can supply up to 5 connections on the same account. Carlo PS send me a PM if you need more info on this.
    1 point
  15. I'm afraid, there is no way to write programs to the database like this. The documentation text is not wrong, it is correct. Both request methods are doing the same in this case (POST and GET).
    1 point
  16. Thank you for you reply. I understand that this is definately not a top priority feature request. So I made a javascript script myself for that. You can add any custom link you want to any collection with it. I am basically changing my request:) Allow Emby to add any kind of custom link user wants to a collection... No need to bother with ids etc, just allowing to add custom http links for collections. The link could be a TMDB list, a user created Trakt list that updates regurally, an IMDB link, a TVDB list link (btw TVDB seems to be the only site that releases official lists of franchises) so user would be able to be informed from his links about new items he could add to his lists. I created a script for myself for that, but obviously I would prefer being able to do that directly to Emby without the need of scripts. This is my script, it includes custom links of DC Extended Universe and Marvel Cinematic Universe to TheMovieDb, Trakt and TheTVDB. The inventory variable can be edited and add any kind of collections and links user wants. I hope someday I want need this script and I would be able to do that directly in Emby:) Thank you again for your reply Luke. // ==UserScript== // @name Emby - Collection Custom Links // @version 1.0.0 // @namespace http://tampermonkey.net/ // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js // @require https://gist.github.com/raw/2625891/waitForKeyElements.js // @include *:8096/web/index.html* // @grant none // ==/UserScript== waitForKeyElements ("h1.itemName-primary", index); function index(jNode) { var inventory = [ { 'name': 'DC Extended Universe', 'TheMovieDb': 'https://www.themoviedb.org/list/3', 'Trakt': 'https://trakt.tv/users/mende666/lists/dc-extended-universe-regular-updates?sort=released,asc', 'TheTVDB': 'https://thetvdb.com/lists/dc-extended-universe' }, { 'name': 'Marvel Cinematic Universe', 'TheMovieDb': 'https://www.themoviedb.org/list/1', 'Trakt': 'https://trakt.tv/users/donxy/lists/marvel-cinematic-universe?sort=released,asc', 'TheTVDB': 'https://thetvdb.com/lists/marvel-cinematic-universe' }, ]; matchItemInfo(inventory); } async function matchItemInfo(inventory){ let CustomLinks = document.querySelectorAll("div[is='emby-scroller']:not(.hide) #embyCollectionCustomLink")[0]; if (CustomLinks) { return; } let itemInfo = await getItemInfo(); if (itemInfo === undefined || itemInfo === null) { return; } let itemType = itemInfo.Items[0].Type; if (itemType !== 'BoxSet') { return; } let itemName = itemInfo.Items[0].Name; if (itemName === undefined || itemName === null) { return; } let item = inventory.find(function findItem(item) {return item.name === itemName;}); if (item === undefined || item === null) { return; } var links = ''; for (var key in item) { if (item.hasOwnProperty(key)) { if (key !== 'name') { if (key !== '' && item[key] !== '') { links += '<a id="embyCollectionCustomLink" is="emby-linkbutton" class="raised item-tag-button nobackdropfilter emby-button" href="' + item[key] + '" target="_blank"><i class="md-icon button-icon button-icon-left">link</i>' + key + '</a>'; } } } } if (links === '') { return; } var linkName = document.querySelectorAll(".sectionTitle")[14]; if (linkName === undefined || linkName === null) { linkName = 'Links'; } else { linkName = linkName.textContent; } let linksSection = document.querySelectorAll("div[is='emby-scroller']:not(.hide) .linksSection")[0]; if (linksSection) { let html = '<h2 class="sectionTitle padded-left padded-right" style="margin-bottom:.4em;">' + linkName + '</h2><div class="itemLinks padded-left padded-right focusable" data-focusabletype="nearest">' + links + '</div>'; linksSection.insertAdjacentHTML('afterend', html); } } async function getItemInfo(){ let itemId = /\?id=(\d*)/.exec(window.location.hash)[1]; let accessToken = ApiClient.accessToken(); let serverAddress = ApiClient._serverAddress; let userId = ApiClient._serverInfo.UserId; if (accessToken === undefined || accessToken === null) { return; } if (serverAddress === undefined || serverAddress === null) { return; } if (itemId === undefined || itemId === null) { return; } let itemUrl = serverAddress + '/emby/Items?Ids=' + itemId + '&X-Emby-Token=' + accessToken let response = await fetch(itemUrl); if (response.ok) { return await response.json(); } else { return; } }
    1 point
  17. I think you're right but silently hoping LG would push new root CA files if possible as it's only 6 years old.
    1 point
  18. This is the problem. The app should be overriding the OS rotation-lock when playing a video only, but it doesn't seem to be working on iOS for whatever reason. As I said, we'll have to wait for @Luketo chime in for comment. Thanks all.
    1 point
  19. Why not just get a laptop? The N4020 is a horrible, HORRIBLE cpu and will struggle with the most basic of tasks. An i3-8130u laptop was my previous server. Here are the specs for the laptop I linked.
    1 point
  20. Further info....its not a Roku issue but normal function for Sony K85 TV's..... IF you have Dolby Vision on, 720x480 sources display in a weird 4x4 format. Designed so you can't have Dolby Vision on while playing DVD's apparently. (but buying new Blu Rays will work just fine....) So I'm up-converting files to 1280x720.....
    1 point
  21. Duplicate of another request, but not sure why this one would be so hard to implement since the code is probably almost already done as you can already detect other flags and use them. SDH is just another flag which ffprobe supports and it would be nice to be able to configure a userid to use SDH as their defaulted type. Also, the default flag is NOT a very good permanent solution for myself as I'm already using that flag for FULL subtitles. My wife is almost deaf and needs SDH. Myself I have a hard time picking out some words occasionally and prefer Full subtitles which is my default, but I don't need everything that's in SDH subtitles when the wife isn't watching with me. Then my son uses Forced when he visits. Why can't Emby fully support SDH subtitles like Kodi does? Kodi recognizes internal flagged SDH PGS subtitles and also external subtitles with .SDH in the filename. They have a setting for SDH subtitles too. OpenSubtitles even adds SDH or HI to their filenames so that would be automatic when downloading external subtitles. As you see it's been over 2 years and we still don't support people like my wife with disabilities a little more by allowing them to make SDH subtitles their default type without using another flag that may already be used for another type.
    1 point
  22. Yep that took care of it. Mass rename everything to go in order and cut out the folders. That mp3tag is a great tool thanks for suggesting it @Junglejim Thanks for the time @Luke
    1 point
  23. @mixXximI added the return button to the Emby Filter. I will upload a plugin update to the Emby Library later this week. Vic
    1 point
  24. Thanks, I tend to only keep up with official release versions as beta is ever changing and often find myself chasing my tail. I'll take a look properly over the next week or so.
    1 point
  25. With the latest Beta update is the list of the downloaded videos and uploaded empty. When you call the plugin settings it spins only but the lists are staying empty.
    1 point
  26. I won't be updating this thread. The latest version is available here: https://github.com/m-soltys/Emby.AccountSync/releases
    1 point
×
×
  • Create New...