You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- You can remove any existing entries from the example file as they are purely instructional
190
190
- Upon startup it will check if the file is a valid YAML file. The most likely reason it's not is because you didn't put quotes around an anime title with special characters (e.g. ":") in it.
191
191
192
+
#### Duplicate Plex Titles
193
+
194
+
For Plex shows and movies with the same title, use the optional `guid` field in the mapping.
195
+
196
+
For example, both of these Rurouni Kenshin shows are shown as "Rurouni Kenshin" in Plex:
197
+
198
+
```yaml
199
+
- title: "Rurouni Kenshin"
200
+
guid: plex://show/5d9c07ece264b7001fc38094
201
+
seasons:
202
+
- season: 1
203
+
anilist-id: 45
204
+
- season: 2
205
+
anilist-id: 45
206
+
- season: 3
207
+
anilist-id: 45
208
+
209
+
- title: "Rurouni Kenshin (2023)"
210
+
guid: plex://show/6330a57e9705fab2b34f656d
211
+
seasons:
212
+
- season: 1
213
+
anilist-id: 142877
214
+
```
215
+
216
+
When the `guid` field is set, the `title` and `synonyms` fields are ignored. However, you should still use different titles for human readability.
217
+
218
+
To find the guid, perform the following steps:
219
+
1. Open this URL in an **incognito browser window**: https://app.plex.tv/desktop/#!/search?pivot=top&query=
220
+
2. Search for your series or movie and click on the correct entry
221
+
3. Copy everything after `metadata%2F`, so for https://app.plex.tv/desktop/#!/provider/tv.plex.provider.discover/details?key=%2Flibrary%2Fmetadata%2F6330a57e9705fab2b34f656d copy `6330a57e9705fab2b34f656d`
222
+
4. If it's a TV show, add `plex://show/` before that identifier, for movies use `plex://movie/`
223
+
192
224
#### Community mappings
193
225
194
226
There are some mappings provided by the Github community at https://github.com/RickDB/PlexAniSync-Custom-Mappings/. You can use them by specifying `remote-urls` like in the example mapping file.
0 commit comments