Basically it saved the full IMDB url in the URL field.
I now moved from Plex to Emby (about time) and emby required the .nfo to contain something like this:
Code: Select all
<imdbid>ttxxxxxxx</imdbid>
Code: Select all
FormatedData := FormatedData +' <imdbid>'+GetField(fieldUrl)+'</imdbid>'+#13#10;
Code: Select all
<imdbid>https://www.imdb.com/title/tt0085400</imdbid>
The sources can be either called e.g.:
https://www.imdb.com/title/tt0085400/?ref_=fn_al_tt_2
or
https://www.imdb.com/title/tt0085400
(two type of URL format are saved as far as I can tell)
Thanks!!!