Closed GoogleCodeExporter closed 8 years ago
UDP was an unsupported streaming protocol.. you can pull SVN of
gecko-mediaplayer and gnome-mplayer or apply this patch to your version
svn diff -c 439
Index: plugin_setup.cpp
===================================================================
--- plugin_setup.cpp (revision 438)
+++ plugin_setup.cpp (revision 439)
@@ -593,6 +593,9 @@
if (g_ascii_strncasecmp(url, "dvd://", 6) == 0)
ret = TRUE;
+
+ if (g_ascii_strncasecmp(url, "udp://", 6) == 0)
+ ret = TRUE;
if (g_strrstr(url, ".m3u") != NULL)
ret = TRUE;
Original comment by kdeko...@gmail.com
on 19 May 2011 at 5:34
Thanks, that's done the job.
Original comment by stevenda...@googlemail.com
on 20 May 2011 at 11:21
Original issue reported on code.google.com by
stevenda...@googlemail.com
on 19 May 2011 at 2:43Attachments: