TMDbLib icon indicating copy to clipboard operation
TMDbLib copied to clipboard

C#.Net library for TheMovieDB

Results 34 TMDbLib issues
Sort by recently updated
recently updated
newest added

Actually [media_type](https://github.com/LordMike/TMDbLib/blob/master/TMDbLib/Objects/General/MediaType.cs) parser for Episodes value is `episode`. But it seems TMDB changes that value to `tv_episode` as could be seen here: _https://api.themoviedb.org/3/find/366211?api_key=YOUR_API_KEY&external_source=tvdb_id_ ```json { "movie_results": [], "person_results": [], "tv_results":...

From their API Documents: https://developers.themoviedb.org/3/movies/get-movie-videos `{ "id": 550, "results": [ { "iso_639_1": "en", "iso_3166_1": "US", "name": "Fight Club - Theatrical Trailer Remastered in HD", "key": "6JnN1DmbqoU", "site": "YouTube", "size": 1080,...

`https://api.themoviedb.org/3/trending/movie/Week?api_key=` will cause a request error `{"success":false,"status_code":5,"status_message":"Invalid parameters: Your request parameters are incorrect."}` `Week` should lower case to make api working

When adding TMDbLib nuget packet to an empty C# console application using .NET Framework 4.6.1, a System.StackOverflowException (HResult=0x800703E9) is thrown when the following line gets executed: https://github.com/LordMike/TMDbLib/blob/5b9e93e581c348fb0289929fd0469227df21239f/TMDbLib/Utilities/Serializer/TMDbJsonSerializer.cs#L14 The test application...

Replaced name with title Added runtime

Would love v4 list support, as you can add many movies to a list at a time. https://developers.themoviedb.org/4/list/update-items

Looks like "GetTvEpisodeTranslationsAsync" and "GetTvSeasonTranslationsAsync" is missing but supported by the TMDb API. I searched for a way to get the "Original Title" of an episode or season and the...

Is there a missing property of OriginalTitle on KnownForBase?

There is no need for `PersonListType.cs` and `PersonResult.cs`. Get popular people method renamed and language parameter added. Now it matches the get popular movies and get popular tv shows methods,...

This way it fits better to the API, and matches `Movie.cs`.