diff --git a/video_filter.codecs.inc b/video_filter.codecs.inc
index 1554d2c..87f21b8 100644
--- a/video_filter.codecs.inc
+++ b/video_filter.codecs.inc
@@ -171,7 +171,14 @@ function video_filter_codec_info() {
     'regexp' => '/teachertube\.com\/viewVideo.php\?video_id\=([0-9]+)/i',
     'ratio' => 16 / 9,
   );
-
+  $codecs['foxnews'] = array(
+    'name' => t('FoxNews'),
+    'sample_url' => 'http://video.foxnews.com/v/123456/the-title/',
+    'callback' => 'video_filter_foxnews',
+    'regexp' => '/video\.foxnews\.com\/v\/([^"\&]+)/i',
+    'ratio' => 466 / 263,
+  );
+  
   return $codecs;
 }
 
@@ -387,3 +394,10 @@ function video_filter_teachertube($video) {
 
   return video_filter_flash($video, $params);
 }
+
+function video_filter_foxnews($video) {
+  $output = '<script type="text/javascript" src="http://video.foxnews.com/v/embed.js?id='.$video['codec']['matches'][1].'&w='.$video['width'].'&h='.$video['height'].'"></script>';
+  
+  return $output;
+}
+
