mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-19 17:32:38 +01:00
Add single command to extract imdb ids from plex database
parent
d3f25099a1
commit
cf4528d3ac
@ -24,6 +24,16 @@ You'll need to extract this somewhere to use with your DB IDE or open it straigh
|
||||
### Using your Plex database
|
||||
The goal here is to obtain all of your IMDB IDs. These are stored as bulky strings in GUID metadata for all movies in the Plex database. An example: `com.plexapp.agents.imdb://tt0000000?lang=en`
|
||||
|
||||
#### Linux/OSX one-liner
|
||||
|
||||
Update the database location to suit
|
||||
|
||||
```bash
|
||||
sqlite3 com.plexapp.plugins.library.db "select guid from metadata_items where guid like 'com.plexapp.agents.imdb%';" | grep -P 'tt\d+' -o > movies.txt
|
||||
```
|
||||
|
||||
#### Or: Step by step
|
||||
|
||||
The query I used to get all of my movies:
|
||||
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user