Index: contrib/emvideo/providers/ustream.inc
===================================================================
--- contrib/emvideo/providers/ustream.inc	(révision 4519)
+++ contrib/emvideo/providers/ustream.inc	(copie de travail)
@@ -96,9 +96,11 @@
  */
 function emvideo_ustream_extract($embed = '') {
   // http://www.ustream.tv/recorded/570233
-  return array(
-    '@ustream\.tv/recorded/([^"\&\?]+)@i',
-  );
+  preg_match("'vid=([0-9a-zA-Z]+)'", $embed, $matches);
+  return $matches[1];
+  // return array(
+  //   '@ustream\.tv/recorded/([^"\&\?]+)@i',
+  // );
 }
 
 /**
Index: contrib/emvideo/providers/ustreamlive.inc
===================================================================
--- contrib/emvideo/providers/ustreamlive.inc	(révision 4519)
+++ contrib/emvideo/providers/ustreamlive.inc	(copie de travail)
@@ -96,10 +96,12 @@
  */
 function emvideo_ustreamlive_extract($embed = '') {
   // <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="320" id="utv654382"><param name="flashvars" value="viewcount=false&amp;autoplay=false&amp;brand=embed"/><param name="allowfullscreen" value="true"/><param name="allowscriptaccess" value="always"/><param name="movie" value="http://www.ustream.tv/flash/live/240437"/><embed flashvars="viewcount=false&amp;autoplay=false&amp;brand=embed" width="400" height="320" allowfullscreen="true" allowscriptaccess="always" id="utv654382" name="utv_n_741085" src="http://www.ustream.tv/flash/live/240437" type="application/x-shockwave-flash" /></object><a href="http://www.ustream.tv/" style="padding:2px 0px 4px;width:400px;background:#FFFFFF;display:block;color:#000000;font-weight:normal;font-size:10px;text-decoration:underline;text-align:center;" target="_blank">Stream videos at Ustream</a>
-  return array(
-    '@ustream\.tv/flash/live/([^"\&\?]+)@i',
-//     '@ustreamlive\.tv/recorded/([^"\&\?]+)@i',
-  );
+  preg_match("'cid=([0-9a-zA-Z]+)'", $embed, $matches);
+  return $matches[1];
+ // return array(
+ //   '@ustream\.tv/flash/live/([^"\&\?]+)@i',
+ //    '@ustreamlive\.tv/recorded/([^"\&\?]+)@i',
+ // );
 }
 
 /**
