File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,10 @@ def _parse_source_options(
4646) -> list [SourceOption ]:
4747 parsed_options : list [SourceOption ] = []
4848
49- for s in geotag_source :
50- parsed_options .extend (parse_source_option (s ))
49+ if video_geotag_source and geotag_source :
50+ LOG .warning (
51+ "Video source options will be processed BEFORE the generic source options"
52+ )
5153
5254 for s in video_geotag_source :
5355 for video_option in parse_source_option (s ):
@@ -56,6 +58,9 @@ def _parse_source_options(
5658 )
5759 parsed_options .append (video_option )
5860
61+ for s in geotag_source :
62+ parsed_options .extend (parse_source_option (s ))
63+
5964 if geotag_source_path is not None :
6065 for parsed_option in parsed_options :
6166 if parsed_option .source_path is None :
You can’t perform that action at this time.
0 commit comments