TVDB and OMDB not working
Posted: 09 Apr 2023, 09:03
Hi, I am creating .txt files and terminal output for shows and movies and a little while ago a lot of the information stopped working properly.
For example tv shows would either not get an omdb rating anymore or the TVDB rating would be way off.
Also not getting any taglines anymore and actors incomplete.
In Short, the outcome for txt file I am looking for might look as follows:
I would even prefer it like this: OMDb: Pedro Pascal - Carl Weathers - Giancarlo Esposito - Katee Sakhoff
When using the GUI I was able to "join" and remove some things, but as an automated commandline I was unable to find it.
FileBot 5.0.1 (r9665) / OpenJDK Runtime Environment 11.0.18
Linux Kubuntu 22.04.
For simplicity of TVDB Rating
or for the text file that I have pre input in a calc file and just add the name
TVDB gives a very weird rating now and omdb rating or tagline does not exist anymore, nor does it fetch the imdbid
TheMoviedb::tv gives a decent rating but also no plot or tagline and small amount of actors often.
similar in the GUI, it does no longer fetch many things and ratings it often leaves empty.
Also if you have a way to display and create these things in a much nicer way for many shows where I can just plug in the name in a table and it changes the code as I do it in calc, that would be nice.
I am not really good with coding and only learning about terminal use. You can see in my codings what I have been able to scrap together.
Sorry for the messy code and thank you for reading.
I have loved filebot for many years you created something beautiful!!
Thank you
For example tv shows would either not get an omdb rating anymore or the TVDB rating would be way off.
Also not getting any taglines anymore and actors incomplete.
In Short, the outcome for txt file I am looking for might look as follows:
In this line OMDb: [Pedro Pascal (Actor), Carl Weathers (Actor), Giancarlo Esposito (Actor)]The Mandalorian – 8.482 (TheTVDb)
The Mandalorian – 8.7 (OMDb)
[Sci-Fi & Fantasy, Action & Adventure, Drama] - 2019
2 Seasons - Startdate: 2019-11-12
Director - Dave Filoni
The travels of a lone bounty hunter in the outer reaches of the galaxy, far from the authority of the New Republic.
OMDb: [Pedro Pascal (Actor), Carl Weathers (Actor), Giancarlo Esposito (Actor)]
[Pedro Pascal, Katee Sackhoff, Jon Favreau]
The Mandalorian - S01E01 - Chapter 1 - The Mandalorian
The Mandalorian - S01E02 - Chapter 2 - The Child
and all other episodes
tv show
IMDb:tt8111088
I would even prefer it like this: OMDb: Pedro Pascal - Carl Weathers - Giancarlo Esposito - Katee Sakhoff
When using the GUI I was able to "join" and remove some things, but as an automated commandline I was unable to find it.
FileBot 5.0.1 (r9665) / OpenJDK Runtime Environment 11.0.18
Linux Kubuntu 22.04.
Code: Select all
filebot -list --q "The Mandalorian" --filter "absolute == 1" --format "{n} – {rating} (TheTVDb)" --log off ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --db thetvdb --format "{n} – {omdb.rating} (OMDb)" --log off ; echo ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --format "{genres} - {y}" --log off ; echo ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --format "Director - {director}" --log off; echo ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --db thetvdb --format "{omdb.tagline}" --log off ; echo ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --db thetvdb --format "OMDb":" {omdb.cast}" --log off ; echo ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --format "TheTVDb: {actors}" --log off ; echo ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --format "First Aired: {startdate}" --log off
Code: Select all
filebot -list --q "The Mandalorian" --filter "absolute == 1" --db themoviedb::tv --format "{n} – {rating} (TheMovieDB)" --log off ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --db themoviedb::tv --format "{n} – {omdb.rating} (OMDb)" --log off ; echo ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --format "{genres} - {y}" --log off ; echo ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --format "Director - {director}" --log off; echo ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --db themoviedb::tv --format "{omdb.tagline}" --log off ; echo ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --db themoviedb::tv --format "OMDb":" {omdb.cast}" --log off ; echo ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --format "Themoviedb::tv: {actors}" --log off ; echo ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --format "First Aired: {startdate}" --log off
Code: Select all
filebot -list --q "The Mandalorian" --filter "absolute == 1" --db thetvdb --format "{n} – {rating} (TheTVDb)" --log off ; filebot -list --q "The Mandalorian" --filter "absolute == 1" --db themoviedb::tv --format "{n} – {omdb.rating} (OMDb)" --log off
Code: Select all
filebot -list --q "" --filter "absolute == 1" --format "{n} – {rating} (TheTVDb)" --log off >>/media/"".txt ; filebot -list --q "" --filter "absolute == 1" --db thetvdb --format "{n} – {omdb.rating} (OMDb)" --log off >>/media/"".txt ; echo >>/media/"".txt ; filebot -list --q "" --filter "absolute == 1" --format "{genres} - {y}" --log off >>/media/"".txt ; echo >>/media/"".txt ; filebot -list --q "" --filter "absolute == 1" --format "{sc} Seasons - Startdate {startdate}" --log off >>/media/"".txt ; echo >>/media/"".txt ; filebot -list --q "" --filter "absolute == 1" --format "Director - {director}" --log off >>/media/"".txt ; echo >>/media/"".txt ; echo >>/media/"".txt ; filebot -list --q "" --filter "absolute == 1" --db thetvdb --format "{omdb.tagline}" --log off >>/media/"".txt; echo >>/media/"".txt ; filebot -list --q "" --filter "absolute == 1" --db thetvdb --format "OMDb":" {omdb.cast}" --log off >>/media/"".txt ; echo >>/media/"".txt ; filebot -list --q "" --filter "absolute == 1" --format "{actors}" --log off >>/media/"".txt ; echo >>/media/"".txt ; echo >>/media/"".txt ; filebot -list --q "" --format "{plex.name}" --log off >>/media/"".txt ; echo>>/media/"".txt ; echo >>/media/"".txt ; filebot -list --q "" --format "{n} - {s00e00} - ({absolute}) - {airdate}" --log off >>/media/"".txt ; echo >>/media/"".txt ; echo "tv show" >>/media/"".txt ; filebot -list --q "" --db thetvdb --filter "absolute == 1" --format "IMDb:{imdbid}" --log off >>/media/"".txt
TheMoviedb::tv gives a decent rating but also no plot or tagline and small amount of actors often.
similar in the GUI, it does no longer fetch many things and ratings it often leaves empty.
Also if you have a way to display and create these things in a much nicer way for many shows where I can just plug in the name in a table and it changes the code as I do it in calc, that would be nice.
I am not really good with coding and only learning about terminal use. You can see in my codings what I have been able to scrap together.
Sorry for the messy code and thank you for reading.
I have loved filebot for many years you created something beautiful!!
Thank you