Server Version#: 4.47.3
Player Version#: n/a
I have some martial arts videos in a Library of type ‘TV Shows’
I have several folders of them, one for each topic, such as Bo Training.
I give the episode files names like:
s09e01 - Workout - 15 Minute Bo Staff Workout - Cardio and Core Burn.mp4
s09e02 - Workout - 10 Minute Combat Bo HIIT Workout.mp4
So far so good. Since there are no metadata sources to populate the episode Title, I am doing it manually by editing each episode, typing in the title, selecting the lock icon and saving the episode.
So far so good again.
But if I add ANY new files to one of the folders, ALL of episodes for that folder/show/topic lose there episode titles after the library scan completes.
Sometimes the Title is still in the Sort Order field, sometimes not. The lock icons aren’t consistently set any longer afterward either.
This library is the only one this happens to.
The only thing I’m doing here that I don’t do anywhere else is using a javascript hack to add a Title field to the season editor, so I can name the seasons something other than ‘Season 1’, ‘Season 2’, etc.
For example, instead of Season 1, I’ll call it ‘Introductions’
I suspect that’s the cause, and was hoping one of you could confirm, or tell me how to fix it so I can continue renaming seasons.
For reference, the way I add the Title field is via a bookmarklet:
javascript:var ta = document.getElementById(“lockable-summary”);if(!ta){alert(“Can’t find submission form!”);exit;} var outer = document.createElement(“div”);var nameLabel=document.createElement(“div”);var nameOb=document.createElement(“input”);var attName = document.createAttribute(“name”);attName.value = “title”;nameOb.setAttributeNode(attName);nameLabel.innerHTML= “NAME:”;outer.appendChild(nameLabel);outer.appendChild(nameOb);ta.parentNode.appendChild(outer);exit;
I’d really love to be able to add new videos to an existing folder/‘show’ and NOT lost all of the metadata for all of those episodes.
Thanks in advance.