--- video_filter.codecs.inc	2009-03-30 07:09:53.000000000 +1100
+++ new-video_filter.codecs.inc	2009-05-02 14:39:14.000000000 +1000
@@ -10,6 +10,14 @@ function video_filter_codec_info() {
     'regexp' => '/youtube\.com\/watch\?v=([a-z0-9\-_]+)/i',
     'ratio' => 425 / 355,
   );
+  $codecs['slideshare'] = array(
+    'name' => t('slideshare'),
+     'callback' => 'video_filter_slideshare',
+      //http://static.slideshare.net/swf/ssplayer2.swf?id=976386&doc=presentacion-mpinto-ii-seminario-alfin-vilanova-09-resumen-1233483316525653-1
+      // You must call the filter this way: [video:slideshare.net/?id=955099&doc=rebiunvilanova-1233004774301205-1]
+      'regexp' => '/slideshare\.net\/\?id=([a-z0-9]+).*doc=([a-z0-9-]+)/',
+      'ratio' => 500 / 410,
+  );
   $codecs['google'] = array(
     'name' => t('Google Video'),
     'callback' => 'video_filter_google',
@@ -104,6 +112,13 @@ function video_filter_youtube($video) {
   return video_filter_flash($video);
 }
 
+function video_filter_slideshare($video) {
+  $video['source'] = 'http://static.slideshare.net/swf/ssplayer2.swf?id='.$video['codec']['matches'][1].'&doc='.($video['codec']['matches'][2]);
+  //http://static.slideshare.net/swf/ssplayer2.swf?id=1015437&#038;doc=galiciaalfinred-1234335128131588-2
+  // You must call the filter this way: [video:slideshare.net/?id=955099&doc=rebiunvilanova-1233004774301205-1]
+  return video_filter_flash($video);
+}
+
 function video_filter_google($video) {
   $video['source'] = 'http://video.google.com/googleplayer.swf?docId='.$video['codec']['matches'][1];
 
