Home
last modified time | relevance | path

Searched refs:is_movie (Results 1 – 21 of 21) sorted by relevance

/dports/net-p2p/bazarr/bazarr-1.0.2/libs/subliminal_patch/providers/
H A Dwizdom.py95 def _search_imdb_id(self, title, year, is_movie): argument
107 category = 'movie' if is_movie else 'tv'
119 category, tmdb_id, '' if is_movie else '/external_ids', self._tmdb_api_key))
130 is_movie = not (season and episode)
131 imdb_id = imdb_id or self._search_imdb_id(title, year, is_movie)
138 …page_link = 'http://{}/#/{}/{}'.format(self.server_url, 'movies' if is_movie else 'series', imdb_i…
150 if not is_movie:
H A Dktuvit.py194 def _search_imdb_id(self, title, year, is_movie): argument
210 category = "movie" if is_movie else "tv"
231 "" if is_movie else "/external_ids",
251 is_movie = not (season and episode)
252 imdb_id = imdb_id or self._search_imdb_id(title, year, is_movie)
274 if not is_movie:
314 if is_movie:
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/subliminal_patch/
H A Dscore.py59 is_movie = isinstance(video, Movie)
72 if is_movie or not video.is_special:
91 elif is_movie and 'imdb_id' in matches:
/dports/graphics/blender/blender-2.91.0/release/scripts/startup/bl_operators/
H A Dscreen_play_rendered_anim.py75 is_movie = rd.is_movie_format
83 if is_movie is False and preset in {'FRAMECYCLER', 'RV', 'MPLAYER'}:
153 if is_movie:
/dports/www/flexget/Flexget-3.2.18/flexget/components/trakt/
H A Dtrakt_lookup.py33 def is_movie(entry: entry.Entry) -> bool:
44 elif is_movie(entry):
83 elif is_movie(entry) and entry.get('trakt_movie_id', eval_lazy=True):
357 elif is_movie(entry):
/dports/multimedia/rage/rage-0.3.1/src/bin/
H A Dthumb.c13 static Eina_Bool is_movie = EINA_FALSE; variable
81 is_movie = EINA_TRUE; in _cb_loaded()
85 if (is_movie) in _cb_loaded()
/dports/graphics/libgphoto2/libgphoto2-2.5.26/camlibs/canon/
H A Dutil.h29 int is_movie (const char *name);
H A Dutil.c194 is_movie (const char *name) in is_movie() function
H A Dcanon.c494 if (!(is_movie (filename) || is_image (filename))) { in canon_int_filename2audioname()
556 if (!is_movie (filename) && !is_image (filename)) { in canon_int_filename2thumbname()
3377 && !is_movie (filename) in canon_int_list_directory()
3938 && !is_movie (filename) in canon_int_get_info_func()
H A Dlibrary.c2409 if (is_movie (filename)) in get_info_func()
/dports/www/coppermine/cpg1.6.x-1.6.12/
H A Dedit_one_pic.php129 if (is_movie($pic['filename'])) {
389 if (!is_movie($CURRENT_PIC['filename'])) {
H A Deditpics.php286 if (is_movie($pic['filename'])) {
390 if (!is_movie($CURRENT_PIC['filename'])) {
/dports/graphics/blender/blender-2.91.0/source/blender/editors/render/
H A Drender_opengl.c1031 const bool is_movie = BKE_imtype_is_movie(scene->r.im_format.imtype); in write_result_func() local
1054 if (is_movie) { in write_result_func()
1129 bool is_movie; in screen_opengl_render_anim_step() local
1141 is_movie = BKE_imtype_is_movie(scene->r.im_format.imtype); in screen_opengl_render_anim_step()
1143 if (!is_movie) { in screen_opengl_render_anim_step()
/dports/graphics/blender/blender-2.91.0/source/blender/render/intern/source/
H A Dpipeline.c2424 const bool is_movie = BKE_imtype_is_movie(rd.im_format.imtype); in RE_RenderAnim() local
2435 if (is_movie) { in RE_RenderAnim()
2518 if (is_movie == false) { in RE_RenderAnim()
2611 if (is_movie == false) { in RE_RenderAnim()
2651 if (is_movie) { in RE_RenderAnim()
/dports/www/mythplugin-mythweb/mythweb-31.0/modules/tv/classes/
H A DProgram.php63 public $is_movie; variable in Program
/dports/graphics/gimageview/gimageview-0.2.27/src/
H A Dgimv_image_view.c2085 gboolean is_movie = FALSE; in check_can_draw_image() local
2096 is_movie = TRUE; in check_can_draw_image()
2098 if (is_movie) return TRUE; in check_can_draw_image()
/dports/graphics/blender/blender-2.91.0/source/blender/imbuf/intern/
H A Dcolormanagement.c2551 bool is_movie = BKE_imtype_is_movie(image_format_data->imtype); in IMB_colormanagement_imbuf_for_write() local
2561 do_colormanagement = save_as_render && (is_movie || !requires_linear_float); in IMB_colormanagement_imbuf_for_write()
/dports/www/coppermine/cpg1.6.x-1.6.12/include/
H A Dthemes.inc.php4105 if (is_movie($row['filename'])) {
H A Dfunctions.inc.php5989 function is_movie(&$file) function
6011 return is_image($file) || is_movie($file) || is_audio($file) || is_document($file);
/dports/www/coppermine/cpg1.6.x-1.6.12/themes/sample/
H A Dtheme.php4103 if (is_movie($row['filename'])) {
/dports/graphics/py-imageio/imageio-2.9.0/imageio/plugins/
H A D_tifffile.py2597 def is_movie(self): member in TiffFile