Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. DiggityDan

    Emby 4.6.4 no longer creating NFO files for new movies

    Tried updating to 4.7.14 via Synology Package Center, but didn't resolve the problem.
  3. mickle026

    New Plugin: My Own Api Provider - JSON Metadata

    5) Yes exactly! 6) For this quantity database MySQL/MariaDB should be selected. 550,000 are movies also in Emby database? 1, YES you can add PrimaryImageThumb or I can forget the PrimaryImage (no s) altogether and just take the first image from PrimaryImages, ie Url = ReturnedItem.PrimaryImages[0], that is already there and has the thumbnail You CANNOT control this from the Plugin You have to set priority or dissable image fetching in Emby core library settings You can move Image fetching down after TMDB whilst have metadata fetching before TMDB This is the same as unchecking get Posters config option, if you edit the url or untick, its the same thing, or you can dissable Image fetcher in emby core library settings Core Config disables everything Plugin config doesn't dissable backdrops but same as Image "Fetecher Settings" 4, Yes you can, but you cannot use non alphanumeric in the id (the Id: is put by emby core i cannot remove that). This is for disply , it doesnt alter your JSON, that can stay the same . and it the Links it shows like this 6, Everything is in my TEST server emby database. I use emby to manage it. I can install MySQL or MariaDB, but have no clue how to use it. I tried a long time ago to use MySQL with PhpMyAdmin and was successful but i dont remember how to use that either and dont have that now. My server is TrueNas Core, only 1 Jail with PHP8.2 and Apache24. It took a while but i managed to get that working.
  4. Like from subtitles that are already in the movie or tv show ? If not it is ok. May as well ask.
  5. Dreakon13

    Prevent Subtitle Burn-In Transcoding?

    Alrighty, guess I'll give that Diagnostic plugin a go then. Appreciate the input all
  6. I'm not sure what happened, but when I upload a new movie to my Synology server Emby install (4.6.4) it all the sudden won't create NFO files. I've looked through the log file and it appears there is an error associated with an API transaction not working with tmdb. I've deleted the past several movies I've loaded into Emby to see if one of them was incorrectly formatted and messing up the parser, but it didn't work. embyserver (11).txt
  7. Today
  8. hrohh

    New Plugin: My Own Api Provider - JSON Metadata

    Sorry for my english. Can I add array thumb also in PosterImage and BackdropImage ( without char S )? We have PosterImages and BackdropImages. EDIT: I change API in PosterImage and BackdropImage keys, please look. Also I added "alt" key. If you can add text below image in web dialog / also size would be usefull (now there are width 0 and height 0, but I can add real numbers ). Thank you! If I disable checkbox Poster image, it dont show images in web dialog, which is not what I want. What I want is situation, when I add a new movie to Emby (or it find new folder), it will skip PosterImage from json API (and download Poster from others metadata scrapers), but If I open web dialog for images, I can choose Poster from json API. If it is not possible, can you add Emby event parameter? I mean ?name=Potter&event=getmetadata I can do some tweak via cache, for example, if second request is getimageresponse and getmetadata call was below 10s, it will skip PosterImage, PosterImages array. Another increase speed solution would be event=getsearchresults. In JSON there wouldnt be BackdropImage, BackdropImages, which is superslow. Next call would be getmetadata (if I choose movie) and JSON will be again wihout PosterImage, PosterImages array. 4) Hmm So it cannot be "CSFD.cz" instead "csfdid"? 5) Yes exactly! 6) For this quantity database MySQL/MariaDB should be selected. 550,000 are movies also in Emby database?
  9. mickle026

    New Plugin: My Own Api Provider - JSON Metadata

    Yes, I have been coding it in a way that it can be compiled with different config pages and a different emby registration guid. I am stuck at the moment though because it wants to embed everything into both versions, but i will figure it out.
  10. Yesterday
  11. rhodges

    New Plugin: Smart Playlists 2.0

    While you're in the code making changes, I'd love to see IMDB, TVDBID, etc as rule options
  12. I believe that is under the exclusive control of Windows. I do not think Emby has any control or any reasonable way of knowing that a restart is pending. I handle that by manually restarting my computer at the very first chance after Windows puts the notification in my queue. I think there is a way to restrict restarts but that is controlled by Windows and nothing else. BTW: I think "idle" is defined by Windows as no screen activity. That is a stupid definition but Microsoft has never been accused of great real world intelligence. I have had my system restart right in the middle of a database modification (Not for Emby) and that required a lot of work to fix and that is also why I started my policy of manual restarts. It works better than just letting it happen. Plus I am male and we really like being in control of everything. Lastly I have never seen a reboot where that "pending restart" message was not around for at least 36 hours before the restart happened and it "might" be longer. I also think somewhere in the system there is a setting where you can adjust how long it waits before restarting and I think it is even possible to move it out to a week or so.
  13. Hi, there is currently no way to do this.
  14. mickle026

    New Plugin: My Own Api Provider - JSON Metadata

    1, I am already loading thumbs for backdrops in web dialog "BackdropImages":[{"thumb":{"src":"https:\/\/image.pmgstatic.com\/cache\/resized\/w663\/files\/images\/film\/photos\/159\/922\/159922046_660c9f.jpg","width":"663","height":"432"},"hires":{"src":"https:\/\/image.pmgstatic.com\/files\/images\/film\/photos\/159\/922\/159922046_660c9f.jpg","width":0,"height":0}} 2, I am aware and already fixed, it will default to "ON" anyway if not saved if not checked public bool EnableLogging { get; set; } = true; 3, Yes Sure - I can add checkboxes I dont understand what is being asked here??: However, GetMetadata and GetImages are seperate Tasks they do not communicate with each other. and your plugin dont detect previous event "GetMetadata", it shows all image in modal ( GetImages ) , but if I add new movie to folder, this settings skip downloading poster from json. If it is not possible some easy, don't waste your time! I can do via GET parameter, in URL - return wihout PosterImage in json. Like that, it can work (I think :) ). 4, The Emby team removed support for full web links, currently they are built via provider keys , where {0} is the Provider key "csfdid" Key "csfd", value "1002404" would build : ie https://www.csfd.cz/film/1002404 but you cannot do: Key "csfd", value "1002404,-chudacci/prehled/" becausae emby removes everything at the first "/", and it does not support {0} {1} etc for CSV values in the id https://www.csfd.cz/film/{0} 5, Not sure what this means, do you want "Name=" as "name=" ? 6, I dont have webpage source currently for movies - only for people (XXX Actors), PHP for that is a simple drive listing and if Person Name appears in folderName retrieve datafile - then return the XML as JSON My Actors are in one directory and only about 20,000 folder, its fast. Actors\ActorName\Datafile My ADM plugin is different, it calculates a direct link to my data file via the Movie Name from a MovieList it downloads. However, My movies data is in nearly 550,000 folders but also in subfolders for drive access speed. Its already on NVME. In one folder its super slow The 3 subfolders below are MD5 letters from the MovieName , so theres no more than 400 movie data folders in any subfolder Movies\A\1\4\MovieName\Datafile I would prefer php driven than Plugin driven. Plugin driven is ok, but the load is on emby rather than the webserver OK, Fixed the Log file checkbox and added option to retrive images hrohh-28032024-3.zip
  15. sabayon

    Unterordner im Ordner "Serien" verstecken

    You were right, the file was already there (invisible because hidden). However, it still had the .rtf format. Changed it and ran the scan, now it works. Thank you very much for your help!
  16. bungee91

    What happened to the Time Shift buffer for Live TV

    There are two apps, and most wouldn't call the Android (mobile) app an upgrade. Anyhow... I'd recommend continuing to use the Android Tv (ATV) app until the Android (mobile) app has figured out how the improved Tv/buffering features will be implemented into it. Many (myself included) plan to continue using the ATV app until things like this are resolved.
  17. When logging in ? Is it possible ? This is in the iPad Emby app I am talking about. Unless I have to use a web browser instead to do it? Server is on Windows though.
  18. "Info App: Automatically restarting the system because it is idle and a restart is required." the system isn't idle, it's doing a library scan, which was aborted because Emby restarted I've twice now tried to kick off a huge scan of a lot of newly added videos which will take hours to complete, leaving it running while I'm out all day, only to come back to it 10 hours later and find it restarted half an hour after I left it. it's annoying! let me complete my library scans before restarting please
  19. hrohh

    New Plugin: My Own Api Provider - JSON Metadata

    Do you have plan release your plugin as more universal? I think it is not "hrohh" plugin, but more universal for php scrappers like me :)) I can give you PHP scripts. JSON should be standardized.
  20. Luke

    Adding

    In a home videos library, those numbers in the file name are not used. They are just part of the title as text. You may want to check the sort title values in the metadata editor for these videos.
  21. Luke

    Emby ist ein tolles Program aaaaber.....

    Doesn't Instant Mix do exactly that?
  22. Luke

    Pago de membresia

    Hi, you will receive a response. Thanks.
  23. Luke

    Issue with one TV show

    Over a month ago but if there are direct playing then it’s up to the LG player and how it handles it. If anything a tv software update could have caused a problem.
  24. hrohh

    New Plugin: My Own Api Provider - JSON Metadata

    Im testing all functions right now. Backdrops are awesome, trully! :)) I have a few observations 1) in PosterImage and BackdropImage -> What about , If I add thumb array for better performance? 2) In Configuration of plugin, Enable Logging checkbox not saved 3) Please, can you add checkboxes for Backdrop and Poster image also? Sometimes on CSFD.cz poster is garbage (watermark text on poster). So if it is possible, if I uncheck Poster or Backdrop and your plugin dont detect previous event "GetMetadata", it shows all image in modal ( GetImages ) , but if I add new movie to folder, this settings skip downloading poster from json. If it is not possible some easy, don't waste your time! I can do via GET parameter, in URL - return wihout PosterImage in json. Like that, it can work (I think ). 4) On movie screen, there is link "csfdid". What about, if I add key to json "Links" : { "title": "www.something.com", "another title" : ""www.something2.com" }. Like that, you can defining your own! 5) Last thing, it is not standard, but better is lowercase all GET parameters in URL. I can do via PHP with redirect 302, but somehow emby dont download json - in logs shows timeout error. So I disabled redirecting in php scripts and now works ok. 6) I can do scripting for you. What is your webpage source? If you want, I can send you my API, it is not secret
  25. Hello! I have a use case where my IPTV provider has some channels that do not have guide data but will show events at specified times (e.g. a group of channels for a specific sports league). Currently to record events on these channels I must schedule each one manually in the Emby UI, however if there were an API method for scheduling recordings as is possible in the UI, I could automate this with a script to always record the games for my favorite sports team. I checked the API reference and didn't see any method for it, but perhaps it exists already and just isn't documented? If not, I think adding it could benefit anyone attempting to set up something like this.
  26. lorac

    Issue with one TV show

    Not a bitrate issue as these are only 720P and much higher quality can play. They used to play though... Was there a recent update to the LG app?
  27. Saulflores1994

    Pago de membresia

    Hola ya mande mensaje desde que realice la compra pero no tengo respuesta
  1. Load more activity
×
×
  • Create New...