Jellyfin-Migrator icon indicating copy to clipboard operation
Jellyfin-Migrator copied to clipboard

Script to migrate an entire Jellyfin database.

Results 14 Jellyfin-Migrator issues
Sort by recently updated
recently updated
newest added

I have used this script for my Jellyfin 10.9.2 on Windows. I encountered a problem with the date containing 'Z', identical to https://github.com/MMMZZZZ/Jellyfin-Migrator/issues/5. I used Python 3.11.9 to execute the...

I have been going back and forth with multiple chats with ChatGPT to try and figure out what this script is actually attempting to do vs what is happening, but...

`Starting Jellyfin Database Migration Current job from todo_list: C:\ProgramData\Jellyfin\Server\data\library.db Traceback (most recent call last): File "jellyfin_migrator.py", line 1283, in path_replacements=path_replacements, File "jellyfin_migrator.py", line 1005, in process_files no_log=job["no_log"], File "jellyfin_migrator.py", line...

Just a note so you can change in your readme that part: > Note: This script has been tested for migrations from Windows to Docker only. In theory it should...

[Lines 526 and 527 of of `jellyfin_migrator.py`](https://github.com/MMMZZZZ/Jellyfin-Migrator/blob/bc9df4195a687e9f46db18a7ed3a5494176bc45a/jellyfin_migrator.py#L526C1-L527C56) are trying to determine if the `Path` object (`d`) starts with a fixed prefix. ``` Traceback (most recent call last): File "jellyfin_migrator.py", line...

Good evening, I've been using Jellyfin for a few years and recently lost everything because I tried backing up the /etc/jellyfin and the /var/lib/jellyfin/data folder as suggested by a few...

Hello, I was running your script, and towards the end of the execution, I encountered an issue. I'm attaching the log file, the error returned in the console, and my...

Most of the XML files start with encoding details like: ```xml ``` But after they've been processed, the encoding is removed, leaving just (in the example given): ```xml ``` This...

On [line 836](https://github.com/MMMZZZZ/Jellyfin-Migrator/blob/bc9df4195a687e9f46db18a7ed3a5494176bc45a/jellyfin_migrator.py#L836) the post-transformed target path is prepended with the `target_root` only if the `target` isn't already absolute. There doesn't seem to be any valid case where the `path_replacements`...

Hi, I'm learning how to use the script. In order to better follow the code I made some changes that make it easier to reason about: 1. I change the...