Search the Community
Showing results for tags 'tool'.
-
Poster Overlay GUI A simple Windows Forms application that allows users to add 4K Ultra HD Banners to their movie posters. About: Firstly, I know that we have the coverart plugin but I prefer having a cleaner look with multiple options for my 4k library. I started making this app a few weeks ago with absolutely zero knowledge in coding, this entire project was built through using chatgpt to guide me into building, modifying and editing the code through lots of trial and error. I'm more than open to suggestions to improve and or add to the project (such as more banner options etc). Features: Choose from multiple overlay images (4k Ultra HD, with HDR, with DV, With HDR and IMAX and with DV and Imax) Preview the combined result Save the resulting image as a new file How to Use: Download and extract the PosterOverlay_v1.0.0.zip file from github. Run the PosterOverlay.exe file to launch the application. Click on the "Select Poster" button to choose the base image (poster). Use the dropdown box to select an overlay image. Preview the result in the main window. Click "Save Poster" to save the resulting image to your computer. Prerequisites: .NET 6.0 Runtime is required to run the application. Please download and install the appropriate version for your operating system. GitHub Link: https://github.com/pejamas/Poster-Overlay-GUI
-
Hey guys, Adding and creating playlists in Emby is a long and nerve-wrecking process, but with this tool you can add m3u8 playlists made with other media players (e.g. VLC) to Emby. I'm not a good coder and this tool is in an early state, if you could give me feedback, that would be great. To get the tool working, read the Readme and if it still doesn't work, you can ask me here and I try to answer. I hope someone will find a good usage in this. Playlist Maker.zip
-
Emby Video Content Browser - to find and delete dead content
tantchen posted a topic in Tools and Utilities
Hi All, over the years we added thousands of videos and series to our remote-server, but every disc becomes full. Then it is difficult to decide which content can be deleted. So i have create a little angular tool that collects the video items from the emby-api and shows it in a table. There you can filter and sort the items by several properties. Today i pushed the project to github.com because like to share it with the community. https://github.com/tantchen/emby-library-browser -
Your libraries of movies, TV, etc. almost certainly have lots and lots and lots of misidentified items, errors... 5%, perhaps more is possible... And 5% of a large collection, is a lot of items. Wrongly identified. Emby relies on the various databases on the internet, and between them, they inevitably make the odd mistake... That's fair enough. Many factors are involved, bad filenames, rare titles, foreign character, etc, etc... Some are just stupidly wrong. They're going to happen... BUT. We still don't have any tools to find them. You have no way of knowing how many errors are in your libraries. We have to rely on stumbling upon the error, or if you have an intimate knowledge of what titles you do have, you'll spot a few more of the errors perhaps. As attempted a couple of times, some of us have tried combining the grossly, needlessly inadequate 'Reports' feature (now a plugin), with data pulled from the database files with external tools. This has worked OK, but is a royal PITA, and not slick, not quick to do. But it does show you how many errors emby holds. Which might horrify/surprise you. If you want some fun, reinstall emby from scratch, rebuilding your libraries... You'll very quickly see some errors, with many more being there without you knowing. ALL WE WANT is the ability to, at least, list the path, filename, against the title and year from metadata downloaded... This simple feature, ability, would make finding these numerous errors possible, if a little bit slow to process (takes a lot of concentration to check 5,000 filenames, titles, years). Later, yeah, it would be sweet to have it highlight non-exact matches, that would speed up the process immensely. But we need the minimum now. These tools need to be in the core of emby... It's not good enough that this media database application doesn't have the most basic data analysis tool! Path, filename, title, year. Please.
-
What does it do? Screenshot grabber allows you to specify a video file and will dump images from the video based on the number of images you set and the frequency you choose. How do I do it? Press the "Select file" button and choose the video you want to use. Press the "Choose folder" button and choose the folder where you want the images to be saved. Select how many images you want to save. Choose how often you want images to be saved. Press start ???? Profit Can I stop before it reaches the end of the video? Yes just hit the stop button or close the app at any time.
-
Duplicate Clean Backdrops of mixed resolution and duplicates
ginjaninja posted a topic in Tools and Utilities
https://dl.dropboxusercontent.com/u/84611964/OrderBackdrops.cmd Requires mediainfo and imagemagick command line utilities Background I wanted to keep my backdrops clean of mixed resolution, non contiguous naming, and duplicate images, The script uses imagemagick to yield a comparison value to identify duplicates. Install Download mediainfo and imagemagick clis, Extract to folders of choice Download CMD file above and copy to shell:sendto edit CMD with paths to mediainfo and imagemagick and turn on/off log only Functions For each folder in path, re cursing subfolders) If low res images exist AND 1+ high res then delete low res images If duplicates exists delete duplicates rename backdrops into order - backdrop.jpg, backdrop1.jpg, backdrop2.jpg, etc creates a processed.txt in every processed folder, in case needs to be rerun...they can be easily deleted once happy Usage Test 1st before using on real folders Right click a folder eg. movie and send to the script, each separate folder is enumerated separately The threshold value should be increased/decreased if duplicates are not being detected/uniques being detected as duplicates. use imagemagick\compare -metric NCC backdrop1.jpg backdrop2.jpg null: manually from the command line to find a threshold value for comparison for use in your script Notes Backdrop order is not well respected, backdrop.jpg (the first one) shouldn't be deleted, unless it is a low res image amongst 1 or more high res images..Backdrop 11 will be ordered higher than Backdrop 2 due to batch order. As with all my scripts its very crude, im guessing as i go along. The Comparison function of image magic, could be improved upon, there may be quicker more appropriate functions and the use of a threshold could break out of comparison once its known to be different enough (for performance considerations) Temporary files could be used to compare different resolution images, but that would take even longer and would require more understanding of imag magick comparison than i have. if i could get the comparison value out of image magic without using a file, it would be more media browser change detection friendly. have tried to use identity function to compute a quick hash to weed out 100% identity quickly, however the duplicates in practise are too nuanced for this function to yield match. advice as always welcomed... The NCC comparison can deal with different jpg quality factors, but cant detect identity where there is a slight offset between the two images, or if one image is a subimage of another (would be too computationally intensive, besides the script is looking for more identical ness that that..eg same image on fanart and tmdb.. edit fixed crash when_result was not defined