Original file line numberDiff line numberDiff line change @@ -477,12 +477,10 @@ def __search_tmdb_web(self, file_media_name, mtype: MediaType): log.console(str(err)) return {} def get_tmdb_info(self, mtype: MediaType = None, title=None, year=None, tmdbid=None, language=None)...
获取特定类型的电影 - https://api.themoviedb.org/3/list/{GENRE_ID} 例如-https://api.themoviedb.org/3/list/27 因为27是恐怖片的类型 ID -Debarshi Bhattacharjee 0 尝试这个:https://api.themoviedb.org/3/search/movie?api_key=&language=en-US&query=horror&page=1&include_adult=false -Anubha...
Original file line numberDiff line numberDiff line change @@ -2296,8 +2296,9 @@ def get_custom_word_groups(self, gid=None, tmdbid=None, gtype=None): """ if gid: return self._db.query(CUSTOMWORDGROUPS).filter(CUSTOMWORDGROUPS.ID == int(gid)).all() if tmdbid: return self._db...
I'm using the TMDB api and they have each movie's genres displayed as number ids. How do i "translate" those numbers into their own name strings? the array with the id and names looks like this: { id: 18, name: "drama", }, { id: 12, name: "adventure", }...
movie: https://ply4.com/movie/?id=<TMDB/IMDB ID> tvshows/series: https://ply4.com/tv/?id=<TMDB/IMDB ID>-<session-number>-<episode-number> custom subtitle: just add param "&sub={your-subtitle-url}" ext: srt, vtt, ass. Auto Embed Code Generator Select TMDB/IMDB ID Subtitle ...
functiontvGetShowDetails(showId:number):Promise<TVShowDetailsBase>;//-- Base built hereexporttypeTVShowDetailsBase=BaseSinglePage<TVShowDetails>;//-- Which results in thistypeTVShowDetailsBase={data:TVShowDetails;apiCall:string;}; BothtvSearchByTitleandtvGetPopularreturn theBaseMultiPagegeneric: ...
New columns: - homepage - id - original_title - overview - popularity - production_companies - production_countries - release_date - spoken_languages - status - tagline - vote_average Lost columns: - actor_1_facebook_likes - actor_2_facebook_likes - actor_3_facebook_likes - aspect_ratio...
<artifactId>spring-boot-starter-aop</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> ...
(id)?api_key=\(apiKey)&append_to_response=videos,credits") else { handleError(errorHandler: errorHandler, error: MovieError.invalidEndpoint) return } urlSession.dataTask(with: url) { (data, response, error) in if error != nil { self.handleError(errorHandler: errorHandler, error: Movie...
get_by_type_tmdbid(db=self._db, mtype=mtype, tmdbid=tmdbid) def delete(self, historyid): """ 删除转移记录 8 changes: 4 additions & 4 deletions 8 app/plugins/dirmonitor/__init__.py Original file line numberDiff line numberDiff line change @@ -270,10 +270,10 @@ def event_...