First off, what a great mod

Getting facebook video embedded was easy, but I'm having trouble getting the Extract destination data config to work.
I created a new display definition for facebook using the following regular expression for media definition code:
Code:
[http://]*[a-z]*?[\.]?facebook\.[a-z]*?/video/video.php\?v=([A-Z0-9._%-]*)[&\w;=\+_\-]*
And the following replacement HTML:
HTML Code:
<object width="$ameinfo[width]" height="$ameinfo[height]"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://www.facebook.com/v/$p1" /><embed src="http://www.facebook.com/v/$p1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="$ameinfo[width]" height="$ameinfo[height]"></embed></object>
This works fine with the default container template, but by itself doesn't extract the video name or any details. If I try and mimic the extract information validation based on the youtube example, giving this:
Code:
value="http://www\.facebook\.com/v/([\w\-]*)?&
Then it just gives me an incompatible browser message and the raw link when I try to embed, and I'm not sure about how to go about working out what the expected syntax for this is. Any thoughts??