Search the Community
Showing results for tags 'move'.
-
Hey, I would like to move individual libraries from volume 1 to volume 2. How do I get all metadata including the added date and seen status to be included? I found one or two posts, but they talk about reinstalling Emby. I don't want to move all libraries including Emby, just individual libraries. Greets Dicken
-
Metadata: move from /var/lib to each Movie or TV folder in Docker
plittlefield posted a topic in Linux
I am changing my home Emby server from an Ubuntu based .deb package installation to a Docker setup. I did not realise that you could keep all the metadata, images and subtitles in each Movie or TV Show folder. Is it possible to wave a magic wand and copy all the current metadata, images and subtitles (gathered over the years!) to each of the Movie or TV Show folders when I install Emby using Docker? I guess this is Docker independant and it would be best to do this operation before the change to Docker? /var/lib/emby/metadata/ --> /srv/storage/Emby/Movies/Movie Name (YEAR)/Movie Name (YEAR).nfo etc I await your magic wand. Paully -
For anyone like me who started off creating their library of media and and deciding at a later date that maybe they want to move the those movies into their own folders, but don't want to manually create thousands of folders, and then manually move the files, you can automate that process with PowerShell (on WIndows). Open up a PowerShell prompt and navigate to the directory with your movies being stored, in my case on a network share. cd \\unraid\media\movies Make sure this command will create a folder for every file in the directory you just navigated to. WARNING, I was lazy when I made this. This will technically create a folder for any object in the folder that has a period in the name. So, if for whatever reason, you already have folders with a period in the name, it will try to create a folder for it as well. If you already have a folder structure with periods, either don't use this or revise the command. Get-ChildItem | Where-Object {$_.Name -Like "*.*"} | Select BaseName | ForEach-Object {New-Item -Name $_.BaseName -ItemType "Directory"} This next command will actually move every item with a period in the name, into a folder of the same name, minus the file extension. So, if you have multiple copies of a movie, with multiple resolutions, or if you keep your metadata in NFO files, ALL of those files will be moved into the same folder. Get-ChildItem | Where-Object {$_.Name -Like "*.*"} | ForEach-Object {Move-Item $_.Name $_.BaseName}
- 10 replies
-
- 1
-
-
- powershell
- windows
- (and 9 more)
-
Just wondering if anybody would happen to know some css to move everything down please... i.e move picture, text, logo everything down apart from the back arrow, home etc across the top.
-
I recently had a scenario where I had my Media and the Emby Server (portable) on the same drive. I relocated the Emby Server (portable) to a new drive. It correctly targeted the new location for ProgramData (../ProgramData) without configuration. However, the existing libraries (Movies, TV Shows) still had their metadata configured for the old location. The only solution to fix this was to remove the libraries and recreate them. This takes a considerable amount of time and bandwidth. Please add the ability to relocate a library's metadata location, or detect that the ProgramData location has changed. I imagine this feature would be good for both the Portable and Standard server implementations. P.S. - Emby is a great product and I am a proud monthly supporter!
- 21 replies
-
- programdata
- metadata
-
(and 3 more)
Tagged with:
-
Emby Server - Preserve Watched Status of External-ID-less Files (such as Extras) When Moved
funwithmedia posted a topic in Feature Requests
Per another thread ( https://emby.media/community/index.php?/topic/38173-watched-status-resets-with-moves-between-library/&do=findComment&comment=484965 ) video files that do not have an external ID (eg, TheMovieDB, IMDB) associated with them in Emby will lose their Watched status if you ever move the files to another location. This is because currently the only way to determine the uniqueness of the file (if it does not have an external ID) is to use the full path to the file. Now, most items will have an external ID, but the big exception can be Movie Extras and TV Specials. Some TV Specials will have an external ID. And some Movie Extras do exist in the IMDB and TheMovieDB, but currently there is no metadata lookup available for Movie Extras ( https://emby.media/community/index.php?/topic/43845-emby-server-emby-theater-support-nfo-files-and-automatic-metadata-lookup-for-extras/ ). So if a Movie and it's associated Extras is ever moved, the Watched status for those extras will be lost. This feature request is for there to be some better method of identifying files such that those files which do not have external ID's can still be correctly identified (and thus Watched status preserved) even if they are moved. I am most interested in this for Movie Extras. I'm not sure what the best route for achieving this would be, but wanted to put the idea out here for consideration. Thanks! -
Not a big issue but since long way back I haven't been able to move/arrange my backdrop order. server-63622454400.txt
-
I have an existing Emby instance running on Windows 10 Professional. The machine has multiple hard drives with a basic structure replicated across them. For example: C:\ - OS D:\Movies D:\TV E:\Movies E:\TV I've now added an additional drive. Created the same folder structure and obviously added it to the Emby I would like to move some of the content from the other drives to the new one because they're filling up. I moved one TV show to test. When I moved it, it no longer showed that I had watched any of the episodes. The question is, is it possible to move content to a new drive with a different drive letter and have the server remember what has been watched? If not, it's not the end of the world, I'll only add new content to the new drive.