Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/15/26 in all areas

  1. I see there are several requests regarding searching thru the cast & crew list. In Movies and TV, a short list is shown horizontally with a link on the header to expand into a full listing. But there's no such option with Cast leaving us to hit the scroll right arrow 7, 8, 10 times. How about creating the same short horizontal view with a link to the expanded screen?
    2 points
  2. It's just meant as a slightly enhanced ChapterAPI that @GrimReapercame up with the idea for. Not dismissing your idea but i don't really feel like making it into more, as there are a lot of external programs for editing the metadata of the mkv them self.
    2 points
  3. Hi, we are looking into this. Thanks.
    2 points
  4. I'm afraid that's not what I'm seeing. When I go into Android 3.5.34, also running on Google Chromecast HD dongle, there is no subtitle offset adjustment for subrip subtitles:
    1 point
  5. @user24 I took your suggestion and rescanned the album with some minor tweaks to dBpoweramp and it seems to have worked. Now it shows just one album as it should be. Thanks.
    1 point
  6. Change 'Preferred TV show display" to "Always show season folders" under user Preferences>Display tab, you'll be able to add season to Collection from there.
    1 point
  7. About time this plugin gets it's own page instead just being mentioned in the EmbyCredits thread. This is a plugin for editing time marks metadata in Emby heavily inspired by ChapterAPI (with permission) and with idea from @GrimReaper While similar to ChapterAPI this plugin has some extra filters, a video preview with fint tuning option and other things to help editing time marks in videos. Download at: Releases ยท yocksers/TimeMarkEdit Please report any bugs you may find. As always, while i have tested and use the plugin my self it is USE AT YOUR OWN RISK!
    1 point
  8. ? It's a send only system, there's no need to receive email. Just like every other email based password reset system: User connects to Emby server at the login page. Clicks 'forgot password', types in their email. If that email is linked to a user on that server, the server sends an email to that address with a temporary time-limited link (something like my.domain/reset/<unique id>), where the user can enter a new password for their account. This is exactly what Ombi (a self-hosted media request interface) does, and it works great. If there's any sort of problem along the way, perhaps the email service is misconfigured or unreachable (or the user account is disabled); just present the current 'please contact your server administrator' to the user that's trying to get a reset link. If the server's not running, they can't reach the forgot password page to make the request, but they can't login either with no running server so that's irrelevant... ---- As far as QR based connections go (this is an entirely separate topic unrelated to email.): if the server isn't running, users can't connect to it, so they won't have a connected device they're already signed in with to scan that QR... = no further request to login.
    1 point
  9. First thing is to check the logs.
    1 point
  10. Question. In the section "Filename-based icons", is it possible to use a NOT CONTAINS in the "Keyword" section. Example. NOT EnglishOnly Thanks. Great plug-in by the way!
    1 point
  11. One question is coming to my mind. Why not simply undo changes and roll back to a version where this issue does not exist and start from there again? Or is this not possible because of database changes etc. that are not backwards compatible?
    1 point
  12. I would suggest posting in the Windows/General forum area. You will get much better help with your library issues there. When you post also include your log file.
    1 point
  13. Yes, been doing this for many years .. the consistency of chapters in MKV's has always been poor ..
    1 point
  14. When you lower the stream quality we automatically trim back to about 10 tracks maximum which is why this resolves. Doing it yourself avoids the need to drop the quality to resolve this. You can also try the playback correction option in the playback OSD menu which should do the same thing without dropping quality
    1 point
  15. Let's say I prefer English sound, and have two files for the same episode, one with German sound (episode name - de.mkv) and one with English (episode name - en.mkv). Lexicographically the "de" comes before "en", so Emby automatically chooses the first one to play, but it does not have any audio track with my preferred audio language, however another file does. I'd like for it to choose the preferred language first, then by lexicographical sorting. The problem is, that the English version does not contain the same content that the German one has, so it is impossible for me to merge one video with both audio at the same time.
    1 point
  16. One thing I do, is whenever Sonarr or Radarr imports media, I strip all chapters and make new ones every 5min. Here's the script it's pretty simple. you just go into those 2 apps and under settings -> Connect create a custom script to execute on file import and upgrade. After that I let Emby and it's plugins do the intro's, credits, etc markers. But this plugin so far is great for fine tuning certain things. But yes it would be nice if we could have an option to save directly to the mkv. (Note: this script was written for the binhex docker containers which run under arch linux.) #!/bin/bash # ========================================== # 1. Dependency Check # ========================================== # Check if mkvpropedit exists. If not, install the package. # This ensures it survives Docker container updates/rebuilds if ! command -v mkvpropedit &> /dev/null; then echo "mkvpropedit not found. Installing mkvtoolnix..." pacman -S mkvtoolnix-cli --noconfirm > /dev/null 2>&1 fi # ========================================== # 2. File Validation # ========================================== # Grab the file path from Sonarr/Radarr, OR fallback to $1 for manual testing FILE_PATH="${sonarr_episodefile_path:-${radarr_moviefile_path:-$1}}" # Check if the file exists and is an MKV if [[ ! -f "$FILE_PATH" || "$FILE_PATH" != *.mkv ]]; then echo "No valid MKV file found at: $FILE_PATH" exit 0 fi # ========================================== # 3. Chapter Generation & Injection # ========================================== # Get the total duration of the video in seconds using ffprobe DURATION=$(ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 "$FILE_PATH") # Round down duration to the nearest whole integer DURATION=${DURATION%.*} # If duration couldn't be extracted, safely exit if [[ -z "$DURATION" ]]; then echo "Could not determine video duration. Exiting." exit 1 fi # Create a temporary text file to hold the new OGM-formatted chapter data CHAPTER_FILE=$(mktemp) # Loop through the duration in 300-second (5 minute) intervals CURRENT_SEC=0 CHAPTER_NUM=1 while [ $CURRENT_SEC -lt $DURATION ]; do # Format current seconds into HH:MM:SS.000 HOURS=$(printf "%02d" $((CURRENT_SEC / 3600))) MINS=$(printf "%02d" $(((CURRENT_SEC % 3600) / 60))) SECS=$(printf "%02d" $((CURRENT_SEC % 60))) # Zero-pad the chapter ID (e.g., 01, 02, 03) CHAP_ID=$(printf "%02d" $CHAPTER_NUM) # Write the timestamps and names to the temporary file echo "CHAPTER${CHAP_ID}=${HOURS}:${MINS}:${SECS}.000" >> "$CHAPTER_FILE" echo "CHAPTER${CHAP_ID}NAME=Chapter ${CHAPTER_NUM}" >> "$CHAPTER_FILE" # Increment by 5 minutes (300 seconds) and increase chapter counter CURRENT_SEC=$((CURRENT_SEC + 300)) CHAPTER_NUM=$((CHAPTER_NUM + 1)) done # Inject the newly generated chapters into the MKV file # (NOTE: This automatically overwrites any existing chapters) mkvpropedit "$FILE_PATH" --chapters "$CHAPTER_FILE" # Clean up the temporary file so it doesn't leave trash around rm "$CHAPTER_FILE" echo "Successfully replaced chapters with 5-minute intervals for $FILE_PATH"
    1 point
  17. YOU DO NOT NEED TO HOST YOUR OWN EMAIL SERVCE. Outlook, Gmail, Proton, Hell [redacted] Icloud all allow you to send email via smtp. I have half a dozen services on my server that all use my gmail account to send email notifications to various users INCLUDING PASSWORD RESET for the ones that can be bothered to implement the [redacted] feature. Emby is also one of the services that's is already setup to send email notifications via my gmail account. But we still can't use it to send password reset emails. Because @Luke refuses to implement it.
    1 point
  18. It'd be great if server admins could generate a QR code for a user to scan with their app to connect to a server, without using EmbyConnect.
    1 point
  19. Five months later, LG users still can't enjoy content with subtitles. Will the update that fixes this at least be released in May? Not a word!
    1 point
  20. Windows just pushed an update and updated windows to the following version: Edition Windows 11 Home Version 25H2 OS build 26200.8457 Experience Windows Feature Experience Pack 1000.26100.304.0 Windows store also updated WinAppRuntime.Singleton to 8002.0.1.0 Emby Beta is now working again! So, it does appear that windows components are affecting Emby. Fingers crossed that Emby Beta keeps working. I will advise of any change to the situation.
    1 point
  21. Hi, It would be great to have a custom UI made for Emby when using CarPlay. Right now, it seems like we are just using the standard iOS template for it?
    1 point
  22. I've got all plugins up and running and it's all working great! However, as others have mentioned on this post, there seems to be a lot of themes in different languages. I'm finding that I have a lot in Spanish (not English). I assume there's no easy way to fix this apart from going through my libraries and manually replacing every theme I find in an incorrect language? Do we have any other options here? I assume we can't do much about it if the contributors are uploading dubbed videos, but it would be great if we could somehow choose a default theme language, so we're only uploading/downloading from that repository of themes. Otherwise, perhaps a way to report/flag an unsatisfactory theme items, then after so many reports from contributing users, it gets removed from the repository automatically? - Just throwing out some ideas to keep things tidy for everyone. Thanks for the work that's gone into this btw, it's a great feature to have!
    1 point
  23. I've also noticed if you don't opt into the Contributors network, the plugin kind of ignores that setting and downloads it anyways. And to be honest there's a bunch of new videos that are in other languages, just copies of a trailer, etc.. And some are just totally off.. South Park would be a good example. The contributor's network has become kind of a mess lately, and I can't seem to unselect it. (as it appears at least from my end that it's ignoring the setting)
    1 point
  24. Newbie question - I've got everything setup and running perfect - however when the Music & Theme downloads the media for Dune (2021) - it is actually music/theme from Dune (1984). I've checked the metadata for the movie - and all of the IDs are correct for the 2021 version of the movie. I'm assuming the source that the plugin is pulling from is incorrect - is there a way to get this corrected? I've been searching for the answer - but can't find one. Thank you!
    1 point
  25. Does that include a password reset process for local users on your server, so that those users can reset their own passwords?
    1 point
  26. @joshinilsdoes this answer your questions? More control over this is possible for future updates. Thanks.
    1 point
×
×
  • Create New...