Browse Source

vlc-video: Allow URLs to be used with VLC video source

jp9000 9 years ago
parent
commit
f39f15325a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      plugins/vlc-video/vlc-video-source.c

+ 2 - 1
plugins/vlc-video/vlc-video-source.c

@@ -697,7 +697,8 @@ static obs_properties_t *vlcs_properties(void *data)
 	dstr_cat(&filter, ")");
 
 	obs_properties_add_editable_list(ppts, S_PLAYLIST, T_PLAYLIST,
-			OBS_EDITABLE_LIST_TYPE_FILES, filter.array, path.array);
+			OBS_EDITABLE_LIST_TYPE_FILES_AND_URLS,
+			filter.array, path.array);
 	dstr_free(&path);
 	dstr_free(&filter);
 	dstr_free(&exts);