1 | <?php |
---|
2 | /** |
---|
3 | * This file is part of AutoEmbed. |
---|
4 | * http://autoembed.com |
---|
5 | * |
---|
6 | * $Id: stubs.php 227 2010-07-29 14:52:36Z phpuser $ |
---|
7 | * |
---|
8 | * Some regular expressions found in this file were borrowed |
---|
9 | * from Karl Benson & Rene-Gilles Deberdt. |
---|
10 | * |
---|
11 | * AutoEmbed is free software: you can redistribute it and/or modify |
---|
12 | * it under the terms of the GNU Lesser General Public License as published by |
---|
13 | * the Free Software Foundation, either version 3 of the License, or |
---|
14 | * (at your option) any later version. |
---|
15 | * |
---|
16 | * AutoEmbed is distributed in the hope that it will be useful, |
---|
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
19 | * GNU Lesser General Public License for more details. |
---|
20 | * |
---|
21 | * You should have received a copy of the GNU Lesser General Public License |
---|
22 | * along with AutoEmbed. If not, see <http://www.gnu.org/licenses/>. |
---|
23 | */ |
---|
24 | /** |
---|
25 | Example: |
---|
26 | array( |
---|
27 | 'title' => Source the embeded media comes from |
---|
28 | 'website' => URI of the media source |
---|
29 | 'url-match' => Regexp for matching the submitted url to a stub |
---|
30 | 'embed-src' => The source of the media to embed. Replace $2, $3, etc with matches from the url-match or fetch-match regexp ($1 is the entire matched url) |
---|
31 | 'embed-width' => The default width of the embeded object |
---|
32 | 'embed-height' => The default width of the embeded object |
---|
33 | 'fetch-match' => (optional) if set, html will be fetched and this regexp will be used to pull the media id or the source of the video |
---|
34 | 'flashvars' => (optional) if set, will be passed in the embed tag. Replace $2, $3, etc with matches from url-match or fetch-match |
---|
35 | ), |
---|
36 | */ |
---|
37 | $AutoEmbed_stubs = array( |
---|
38 | array( |
---|
39 | 'title' => 'YouTube', |
---|
40 | 'website' => 'http://www.youtube.com', |
---|
41 | 'url-match' => 'http://(?:video\.google\.(?:com|com\.au|co\.uk|de|es|fr|it|nl|pl|ca|cn)/(?:[^"]*?))?(?:(?:www|au|br|ca|es|fr|de|hk|ie|in|il|it|jp|kr|mx|nl|nz|pl|ru|tw|uk)\.)?youtube\.com(?:[^"]*?)?(?:&|&|/|\?|;|\%3F|\%2F)(?:video_id=|v(?:/|=|\%3D|\%2F))([0-9a-z-_]{11})', |
---|
42 | 'embed-src' => 'http://www.youtube.com/v/$2&rel=0&fs=1&hd=1', |
---|
43 | 'embed-width' => '480', |
---|
44 | 'embed-height' => '295', |
---|
45 | 'image-src' => 'http://img.youtube.com/vi/$2/0.jpg', |
---|
46 | 'iframe-player' => 'http://www.youtube.com/embed/$2?rel=0&autoplay=1', |
---|
47 | ), |
---|
48 | array( |
---|
49 | 'title' => 'YouTube (Playlists)', |
---|
50 | 'website' => 'http://www.youtube.com', |
---|
51 | 'url-match' => 'http://(?:(?:www|au|br|ca|es|fr|de|hk|ie|in|il|it|jp|kr|mx|nl|nz|pl|ru|tw|uk)\.)?youtube\.com(?:[^"]*?)?(?:&|&|/|\?|;)(?:id=|p=|p/)([0-9a-f]{16})', |
---|
52 | 'embed-src' => 'http://www.youtube.com/p/$2&rel=0&fs=1', |
---|
53 | 'embed-width' => '480', |
---|
54 | 'embed-height' => '385', |
---|
55 | ), |
---|
56 | array( |
---|
57 | 'title' => 'Dailymotion', |
---|
58 | 'website' => 'http://www.dailymotion.com', |
---|
59 | 'url-match' => 'http://(?:www\.)?dailymotion\.(?:com|alice\.it)/(?:(?:[^"]*?)?video|swf)/([a-z0-9]{1,18})', |
---|
60 | 'embed-src' => 'http://www.dailymotion.com/swf/$2&related=0', |
---|
61 | 'embed-width' => '420', |
---|
62 | 'embed-height' => '339', |
---|
63 | // 'image-src' => 'http://www.dailymotion.com/thumbnail/160x120/video/$2', |
---|
64 | ), |
---|
65 | array( |
---|
66 | 'title' => 'Google Video', |
---|
67 | 'website' => 'http://video.google.com', |
---|
68 | 'url-match' => 'http://video\.google\.(com|com\.au|co\.uk|de|es|fr|it|nl|pl|ca|cn)/(?:videoplay|url|googleplayer\.swf)\?(?:[^"]*?)?docid=([0-9a-z-_]{1,20})', |
---|
69 | 'embed-src' => 'http://video.google.$2/googleplayer.swf?docId=$3', |
---|
70 | 'embed-width' => '400', |
---|
71 | 'embed-height' => '326', |
---|
72 | ), |
---|
73 | array( |
---|
74 | 'title' => 'MegaVideo', |
---|
75 | 'website' => 'http://www.megavideo.com', |
---|
76 | 'url-match' => 'http://(?:www\.)?megavideo\.com/(?:\?(?:[^"]*?)?v=|v/)([0-9a-z]{8})', |
---|
77 | 'embed-src' => 'http://www.megavideo.com/v/$2.0.0', |
---|
78 | 'embed-width' => '440', |
---|
79 | 'embed-height' => '359', |
---|
80 | ), |
---|
81 | array( |
---|
82 | 'title' => 'MetaCafe', |
---|
83 | 'website' => 'http://www.metacafe.com', |
---|
84 | 'url-match' => 'http://(?:www\.)?metacafe\.com/(?:watch|fplayer)/(\w{1,10})/', |
---|
85 | 'embed-src' => 'http://www.metacafe.com/fplayer/$2/metacafe.swf', |
---|
86 | 'embed-width' => '400', |
---|
87 | 'embed-height' => '345', |
---|
88 | ), |
---|
89 | array( |
---|
90 | 'title' => 'Revver', |
---|
91 | 'website' => 'http://www.revver.com', |
---|
92 | 'url-match' => 'http://(?:one\.|www\.)?revver\.com/(?:watch|video)/([0-9]{1,8})', |
---|
93 | 'embed-src' => 'http://flash.revver.com/player/1.0/player.swf?mediaId=$2', |
---|
94 | 'embed-width' => '480', |
---|
95 | 'embed-height' => '392', |
---|
96 | ), |
---|
97 | array( |
---|
98 | 'title' => 'Vimeo', |
---|
99 | 'website' => 'http://www.vimeo.com', |
---|
100 | 'url-match' => 'http://(?:www\.)?vimeo\.com/([0-9]{1,12})', |
---|
101 | 'embed-src' => 'http://vimeo.com/moogaloop.swf?clip_id=$2&server=vimeo.com&fullscreen=1&show_title=1&show_byline=1&show_portrait=0&color=01AAEA', |
---|
102 | 'embed-width' => '400', |
---|
103 | 'embed-height' => '302', |
---|
104 | 'iframe-player' => 'http://player.vimeo.com/video/$2', |
---|
105 | ), |
---|
106 | array( |
---|
107 | 'title' => '123video', |
---|
108 | 'website' => 'http://www.123video.nl', |
---|
109 | 'url-match' => 'http://(?:www\.)?123video\.nl/(?:playvideos\.asp\?(?:[^"]*?)?MovieID=|123video_share\.swf\?mediaSrc=)([0-9]{1,8})', |
---|
110 | 'embed-src' => 'http://www.123video.nl/123video_share.swf?mediaSrc=$2', |
---|
111 | 'embed-width' => '420', |
---|
112 | 'embed-height' => '339', |
---|
113 | ), |
---|
114 | array( |
---|
115 | 'title' => '5min Life Videopedia', |
---|
116 | 'website' => 'http://www.5min.com', |
---|
117 | 'url-match' => 'http://(?:www\.)?5min\.com/(?:Embeded/|Video/(?:[0-9a-z_-]*?)?-)([0-9]{8})', |
---|
118 | 'embed-src' => 'http://www.5min.com/Embeded/$2/', |
---|
119 | 'embed-width' => '425', |
---|
120 | 'embed-height' => '355', |
---|
121 | ), |
---|
122 | array( |
---|
123 | 'title' => 'AdultSwim', |
---|
124 | 'website' => 'http://www.adultswim.com', |
---|
125 | 'url-match' => 'http://www\.adultswim\.com/video/(?:vplayer/index\.html\?id=|\?episodeID=|ASVPlayer\.swf\?id=)([0-9a-f]{32})', |
---|
126 | 'embed-src' => 'http://www.adultswim.com/video/vplayer/index.html?id=$2', |
---|
127 | 'embed-width' => '425', |
---|
128 | 'embed-height' => '355', |
---|
129 | ), |
---|
130 | array( |
---|
131 | 'title' => 'AniBoom', |
---|
132 | 'website' => 'http://www.aniboom.com', |
---|
133 | 'url-match' => 'http://(?:www\.|api\.)?aniboom\.com/(?:Player.aspx\?(?:[^"]*?)?v=|video/|e/)([0-9]{1,10})', |
---|
134 | 'embed-src' => 'http://api.aniboom.com/e/$2', |
---|
135 | 'embed-width' => '425', |
---|
136 | 'embed-height' => '355', |
---|
137 | ), |
---|
138 | array( |
---|
139 | 'title' => 'AOL Video (Old)', |
---|
140 | 'website' => 'http://video.aol.com', |
---|
141 | 'url-match' => 'http://video\.aol\.com/partner/([a-z0-9-_]+)/([a-z0-9-_]+)/([a-z0-9:\.]+)', |
---|
142 | 'embed-src' => 'http://media.mtvnservices.com/$4', |
---|
143 | 'embed-width' => '415', |
---|
144 | 'embed-height' => '347', |
---|
145 | ), |
---|
146 | array( |
---|
147 | 'title' => 'Archive.org', |
---|
148 | 'website' => 'http://www.archive.org', |
---|
149 | 'url-match' => 'http://(?:www\.)?archive\.org/download/((?:[0-9a-z_-]*?)/(?:[0-9a-z_-]*?)\.flv)', |
---|
150 | 'embed-src' => 'http://www.archive.org/flow/FlowPlayerLight.swf?config=%7Bembedded%3Atrue%2CshowFullScreenButton%3Atrue%2CshowMuteVolumeButton%3Atrue%2CshowMenu%3Atrue%2CautoBuffering%3Afalse%2CautoPlay%3Afalse%2CinitialScale%3A%27fit%27%2CmenuItems%3A%5Bfalse%2Cfalse%2Cfalse%2Cfalse%2Ctrue%2Ctrue%2Cfalse%5D%2CusePlayOverlay%3Afalse%2CshowPlayListButtons%3Atrue%2CplayList%3A%5B%7Burl%3A%27$2%27%7D%5D%2CcontrolBarGloss%3A%27high%27%2CshowVolumeSlider%3Atrue%2CbaseURL%3A%27http%3A%2F%2Fwww%2Earchive%2Eorg%2Fdownload%2F%27%2Cloop%3Afalse%2CcontrolBarBackgroundColor%3A%270x000000%27%7D', |
---|
151 | 'embed-width' => '480', |
---|
152 | 'embed-height' => '360', |
---|
153 | ), |
---|
154 | array( |
---|
155 | 'title' => 'Atom', |
---|
156 | 'website' => 'http://www.atom.com', |
---|
157 | 'url-match' => 'http://(?:www\.)?atom\.com/funny_videos/([A-z0-9-_]*)/', |
---|
158 | 'fetch-match' => '<embed src="([A-z:/\.0-9-_=]*)"', |
---|
159 | 'embed-src' => '$2', |
---|
160 | 'embed-width' => '425', |
---|
161 | 'embed-height' => '354', |
---|
162 | ), |
---|
163 | array( |
---|
164 | 'title' => 'Grooveshark', |
---|
165 | 'website' => 'http://www.grooveshark.com', |
---|
166 | 'url-match' => 'http://(www\.)?grooveshark\.com(.*)', |
---|
167 | 'fetch-match' => 'http://grooveshark\.com\/facebookWidget\.swf\?songID\=([0-9]*)\"', |
---|
168 | 'embed-width' => '250', |
---|
169 | 'embed-height' => '40', |
---|
170 | 'embed-src' => 'http://grooveshark.com/songWidget.swf?songID=$2', |
---|
171 | ), |
---|
172 | |
---|
173 | array( |
---|
174 | 'title' => 'Island Tickle Video', |
---|
175 | 'website' => 'http://www.islandticklevideo.com', |
---|
176 | 'url-match' => 'http://(?:www\.)?islandticklevideo\.com/mediashare/video/(.*)', |
---|
177 | 'fetch-match' => 'http://www\.islandticklevideo\.com/mediashare/modules/vPlayer/vPlayercfg\.php\?id=([a-z0-9]{10,25})', |
---|
178 | 'embed-src' => 'http://www.islandticklevideo.com/mediashare/modules/vPlayer/vPlayer.swf?f=http://www.islandticklevideo.com/mediashare/modules/vPlayer/vPlayercfg.php?id=$2', |
---|
179 | 'embed-width' => '480', |
---|
180 | 'embed-height' => '385', |
---|
181 | ), |
---|
182 | array( |
---|
183 | 'title' => 'Bebo', |
---|
184 | 'website' => 'http://www.bebo.com', |
---|
185 | 'url-match' => '(http://bebo\.(?:[0-9]{1,4})\.download\.videoegg\.com(?:(?:/(?:[0-9a-z]*)){5}))', |
---|
186 | 'embed-src' => 'http://static.videoegg.com/videoegg/loader.swf?file=$2', |
---|
187 | 'embed-width' => '425', |
---|
188 | 'embed-height' => '350', |
---|
189 | ), |
---|
190 | array( |
---|
191 | 'title' => 'Blastro', |
---|
192 | 'website' => 'http://www.blastro.com', |
---|
193 | 'url-match' => 'http://(?:www\.)?blastro\.com/player/([a-z0-9-_]*)\.html', |
---|
194 | 'embed-src' => 'http://images.blastro.com/images/flashplayer/flvPlayer.swf?site=www.blastro.com&filename=$2', |
---|
195 | 'embed-width' => '512', |
---|
196 | 'embed-height' => '408', |
---|
197 | ), |
---|
198 | array( |
---|
199 | 'title' => 'Blip.tv', |
---|
200 | 'website' => 'http://www.blip.tv', |
---|
201 | 'url-match' => 'http://blip\.tv/(play|file)/([0-9]*)', |
---|
202 | 'fetch-match' => '<link rel="video_src" href="([A-z:/\.0-9-_=]*)', |
---|
203 | 'embed-src' => '$2', |
---|
204 | 'embed-width' => '500', |
---|
205 | 'embed-height' => '315', |
---|
206 | ), |
---|
207 | array( |
---|
208 | 'title' => 'BoFunk', |
---|
209 | 'website' => 'http://www.bofunk.com', |
---|
210 | 'url-match' => 'http://(?:www\.)?bofunk\.com/video/[0-9]{2,7}/', |
---|
211 | 'fetch-match' => '<embed src="/[a-z]/([a-z:/\.0-9-_=?%]*)"', |
---|
212 | 'embed-src' => 'http://www.bofunk.com/e/$2', |
---|
213 | 'embed-width' => '446', |
---|
214 | 'embed-height' => '370', |
---|
215 | ), |
---|
216 | array( |
---|
217 | 'title' => 'Break', |
---|
218 | 'website' => 'http://www.break.com/', |
---|
219 | 'url-match' => 'http://(?:www\.)?break\.com/(?:index|usercontent)/', |
---|
220 | 'fetch-match' => 'http://embed\.break\.com/([0-9a-z]{1,8})', |
---|
221 | 'embed-src' => '$1', |
---|
222 | 'embed-width' => '464', |
---|
223 | 'embed-height' => '383', |
---|
224 | ), |
---|
225 | array( |
---|
226 | 'title' => 'Brightcove.com', |
---|
227 | 'website' => 'http://link.brightcove.com', |
---|
228 | 'url-match' => 'http://link\.brightcove\.com/services/link/bcpid([0-9]+)/bctid([0-9]+)', |
---|
229 | 'embed-src' => 'http://services.brightcove.com/services/viewer/federated_f8/$2?videoId=$3&playerId=$2&viewerSecureGatewayURL=https://console.brightcove.com/services/amfgateway&servicesURL=http://services.brightcove.com/services&cdnURL=http://admin.brightcove.com&domain=embed&autoStart=false&', |
---|
230 | 'embed-width' => '486', |
---|
231 | 'embed-height' => '412', |
---|
232 | ), |
---|
233 | array( |
---|
234 | 'title' => 'CBS News', |
---|
235 | 'website' => 'http://www.cbsnews.com/video', |
---|
236 | 'url-match' => 'http://(?:www\.)?cbsnews\.com/video/watch/', |
---|
237 | 'fetch-match' => 'CBSVideo\.setVideoId\(.([a-z0-9-_]{1,32}).\)', |
---|
238 | 'embed-src' => 'http://cnettv.cnet.com/av/video/cbsnews/atlantis2/player-dest.swf', |
---|
239 | 'embed-width' => '425', |
---|
240 | 'embed-height' => '324', |
---|
241 | 'flashvars' => 'tag=contentBody;housing&releaseURL=http://cnettv.cnet.com/av/video/cbsnews/atlantis2/player-dest.swf&videoId=$2&partner=news&vert=News&autoPlayVid=false&name=cbsPlayer&allowScriptAccess=always&wmode=transparent&embedded=y&scale=noscale&rv=n&salign=tl' |
---|
242 | ), |
---|
243 | array( |
---|
244 | 'title' => 'Cellfish', |
---|
245 | 'website' => 'http://www.cellfish.com', |
---|
246 | 'url-match' => 'http://(cellfish\.|www\.)?cellfish\.com/(?:video|ringtone|multimedia)/([0-9]{1,10})/', |
---|
247 | 'embed-src' => 'http://$2cellfish.com/static/swf/player8.swf?Id=$3', |
---|
248 | 'embed-width' => '420', |
---|
249 | 'embed-height' => '315', |
---|
250 | ), |
---|
251 | array( |
---|
252 | 'title' => 'Clarin', |
---|
253 | 'website' => 'http://www.videos.clarin.com', |
---|
254 | 'url-match' => 'http://(?:www\.)videos\.clarin\.com/index\.html\?id=([0-9]{1,12})', |
---|
255 | 'embed-src' => 'http://www.clarin.com/shared/v9/swf/clarinvideos/player.swf', |
---|
256 | 'embed-width' => '533', |
---|
257 | 'embed-height' => '438', |
---|
258 | 'flashvars' => 'autoplay=false&SEARCH=http://www.videos.clarin.com/decoder/buscador_getMtmYRelacionados/$2|CLARIN_VIDEOS|VIDEO|EMBEDDED|10|1|10|null.xml&RUTAS=http://www.clarin.com/shared/v9/swf/clarinvideos/rutas.xml', |
---|
259 | ), |
---|
260 | array( |
---|
261 | 'title' => 'Clip.vn', |
---|
262 | 'website' => 'http://www.clip.vn', |
---|
263 | 'url-match' => 'http://(?:www\.)?clip\.vn/w(?:atch/(?:[a-z0-9-_]*?))?/([a-z0-9_-]{1,5}),vn', |
---|
264 | 'embed-src' => 'http://www.clip.vn/w/$2,vn,0,,hq', |
---|
265 | 'embed-width' => '448', |
---|
266 | 'embed-height' => '361', |
---|
267 | ), |
---|
268 | array( |
---|
269 | 'title' => 'ClipFish (Old)', |
---|
270 | 'website' => 'http://www.clipfish.de', |
---|
271 | 'url-match' => 'http://(?:www\.)?clipfish\.de/(?:(?:player\.php|videoplayer\.swf)\?(?:[^"]*?)?vid=|video/)([0-9]{1,20})', |
---|
272 | 'embed-src' => 'http://www.clipfish.de/videoplayer.swf?as=0&vid=$2&r=1', |
---|
273 | 'embed-width' => '464', |
---|
274 | 'embed-height' => '380', |
---|
275 | ), |
---|
276 | array( |
---|
277 | 'title' => 'ClipFish (New)', |
---|
278 | 'website' => 'http://www.clipfish.de', |
---|
279 | 'url-match' => 'http://(?:www\.)?clipfish\.de/(?:video)?player\.(?:swf|php)(?:[^"]*?)videoid=((?:[a-z0-9]{18})(?:==)?|(?:[a-z0-9]{6})(?:==)?)', |
---|
280 | 'embed-src' => 'http://www.clipfish.de/videoplayer.swf?as=0&videoid=$2%3D%3D&r=1', |
---|
281 | 'embed-width' => '464', |
---|
282 | 'embed-height' => '380', |
---|
283 | ), |
---|
284 | array( |
---|
285 | 'title' => 'ClipJunkie', |
---|
286 | 'website' => 'http://www.clipjunkie.com', |
---|
287 | 'url-match' => 'http://(?:www\.)?clipjunkie\.com/((?:[^"]*?)-vid(?:[0-9]{1,10}))\.html', |
---|
288 | 'embed-src' => 'http://www.clipjunkie.com/flvplayer/flvplayer.swf?flv=http://videos.clipjunkie.com/videos/$2.flv&themes=http://www.clipjunkie.com/flvplayer/themes.xml&playList=http://www.clipjunkie.com/playlist.php&config=http://www.clipjunkie.com/skin/config.xml', |
---|
289 | 'embed-width' => '460', |
---|
290 | 'embed-height' => '357', |
---|
291 | ), |
---|
292 | array( |
---|
293 | 'title' => 'ClipMoon', |
---|
294 | 'website' => 'http://www.clipmoon.com', |
---|
295 | 'url-match' => 'http://(?:www\.)?clipmoon\.com/(?:videos/|(?:[^"]*?)viewkey=)([0-9a-z]{1,10})', |
---|
296 | 'embed-src' => 'http://www.clipmoon.com/flvplayer.swf?config=http://www.clipmoon.com/flvplayer.php?viewkey=$2&external=yes', |
---|
297 | 'embed-width' => '460', |
---|
298 | 'embed-height' => '357', |
---|
299 | ), |
---|
300 | array( |
---|
301 | 'title' => 'Clipser', |
---|
302 | 'website' => 'http://www.clipser.com', |
---|
303 | 'url-match' => 'http://(?:www\.)?clipser\.com/(?:Play\?vid=|watch_video/)([0-9]{4,10})', |
---|
304 | 'embed-src' => 'http://www.clipser.com/Play?vid=$2', |
---|
305 | 'embed-width' => '425', |
---|
306 | 'embed-height' => '355', |
---|
307 | ), |
---|
308 | array( |
---|
309 | 'title' => 'ClipShack', |
---|
310 | 'website' => 'http://www.clipshack.com', |
---|
311 | 'url-match' => 'http://(?:www\.)?clipshack\.com/Clip\.aspx\?key=([0-9a-f]{16})', |
---|
312 | 'embed-src' => 'http://www.clipshack.com/player.swf?key=$2', |
---|
313 | 'embed-width' => '430', |
---|
314 | 'embed-height' => '370', |
---|
315 | ), |
---|
316 | array( |
---|
317 | 'title' => 'CNetTV', |
---|
318 | 'website' => 'http://cnettv.cnet.com', |
---|
319 | 'url-match' => 'http://cnettv\.cnet\.com/[a-z0-9\-]*\/[0-9]{4}-[0-9]_[0-9]{2}-([0-9]{5,9})\.html', |
---|
320 | 'embed-src' => 'http://www.cnet.com/av/video/flv/universalPlayer/universalSmall.swf', |
---|
321 | 'embed-width' => '364', |
---|
322 | 'embed-height' => '280', |
---|
323 | 'flashvars' => 'playerType=embedded&type=id&value=$2', |
---|
324 | ), |
---|
325 | array( |
---|
326 | 'title' => 'CollegeHumor', |
---|
327 | 'website' => 'http://www.collegehumour.com', |
---|
328 | 'title' => 'CollegeHumor', |
---|
329 | 'url-match' => 'http://(?:www\.)?collegehumor\.com/video:([0-9]{1,12})', |
---|
330 | 'embed-src' => 'http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=$2', |
---|
331 | 'embed-width' => '480', |
---|
332 | 'embed-height' => '360', |
---|
333 | ), |
---|
334 | array( |
---|
335 | 'title' => 'TheDailyShow', |
---|
336 | 'website' => 'http://www.thedailyshow.com', |
---|
337 | 'url-match' => 'http://(?:www\.)?thedailyshow\.com/(?:watch|full\-episodes)', |
---|
338 | 'fetch-match' => 'swfo.embedSWF\(.*(http://media.mtvnservices.com/mgid:cms:(video|fullepisode):thedailyshow\.com:[0-9]{1,10})', |
---|
339 | 'embed-src' => '$2', |
---|
340 | 'embed-width' => '360', |
---|
341 | 'embed-height' => '205', |
---|
342 | ), |
---|
343 | array( |
---|
344 | 'title' => 'ColbertNation', |
---|
345 | 'website' => 'http://www.colbertnation.com', |
---|
346 | 'url-match' => 'http:\/\/(?:www\.)?colbertnation\.com\/the-colbert-report-videos\/([0-9]*)\/', |
---|
347 | 'embed-src' => 'http://media.mtvnservices.com/mgid:cms:item:comedycentral.com:$2', |
---|
348 | 'embed-width' => '360', |
---|
349 | 'embed-height' => '270', |
---|
350 | ), |
---|
351 | array( |
---|
352 | 'title' => 'Crackle', |
---|
353 | 'website' => 'http://www.crackle.com', |
---|
354 | 'url-match' => 'http://(?:www\.)?crackle\.com/c/([a-z0-9_]*?)/([a-z0-9_]*?)/([0-9]{1,10})', |
---|
355 | 'embed-src' => 'http://www.crackle.com/p/$2/$3.swf?id=$4', |
---|
356 | 'embed-width' => '400', |
---|
357 | 'embed-height' => '328', |
---|
358 | ), |
---|
359 | array( |
---|
360 | 'title' => 'CrunchyRoll', |
---|
361 | 'website' => 'http://www.crunchyroll.com', |
---|
362 | 'url-match' => 'http://(?:www\.)?crunchyroll\.com/getitem\?ih=([0-9a-z]{19})&(?:amp;)?videoid=([0-9]{1,12})&(?:amp;)?mediaid=([0-9]{1,12})&(?:amp;)?hash=([0-9a-z]{19})', |
---|
363 | 'embed-src' => ' http://www.crunchyroll.com/flash/20080910153703.043ec803b06cc356a1e15c1184831a24/oldplayer2.swf?file=http%3A%2F%2Fwww.crunchyroll.com%2Fgetitem%3Fih%3D$2%26videoid%3D$3%26mediaid%3D$4%26hash%3D$5&autostart=false', |
---|
364 | 'embed-width' => '576', |
---|
365 | 'embed-height' => '325', |
---|
366 | ), |
---|
367 | array( |
---|
368 | 'title' => 'Current', |
---|
369 | 'website' => 'http://www.current.com', |
---|
370 | 'url-match' => 'http://(?:www\.)?current\.com/items/([0-9]{8})', |
---|
371 | 'embed-src' => 'http://current.com/e/$2/en_US', |
---|
372 | 'embed-width' => '400', |
---|
373 | 'embed-height' => '400', |
---|
374 | ), |
---|
375 | array( |
---|
376 | 'title' => 'Dailyhaha', |
---|
377 | 'website' => 'http://www.dailyhaha.com', |
---|
378 | 'url-match' => 'http://(?:www\.)?dailyhaha\.com/_vids/(?:Whohah\.swf\?Vid=)?([a-z0-9_-]*?)\.(?:htm|flv)', |
---|
379 | 'embed-src' => 'http://www.dailyhaha.com/_vids/Whohah.swf?Vid=$2.flv', |
---|
380 | 'embed-width' => '425', |
---|
381 | 'embed-height' => '350', |
---|
382 | ), |
---|
383 | array( |
---|
384 | 'title' => 'Dave.tv', |
---|
385 | 'website' => 'http://www.dave.tv', |
---|
386 | 'url-match' => 'http://(?:www\.)?dave\.tv/MediaPlayer.aspx\?(?:[^"]*?)?contentItemId=([0-9]{1,10})', |
---|
387 | 'embed-src' => 'http://dave.tv/dbox/dbox_small.swf?configURI=http://dave.tv/dbox/config.ashx&volume=50&channelContentId=$2', |
---|
388 | 'embed-width' => '300', |
---|
389 | 'embed-height' => '260', |
---|
390 | ), |
---|
391 | array( |
---|
392 | 'title' => 'DotSub (w/o Captions)', |
---|
393 | 'website' => 'http://www.dotsub.com', |
---|
394 | 'url-match' => 'http://(?:www\.)?dotsub\.com/(?:media/|view/)((?:[0-9a-z]{8})(?:(?:-(?:[0-9a-z]{4})){3})-(?:[0-9a-z]{12}))', |
---|
395 | 'embed-src' => 'http://dotsub.com/static/players/embed8l.swf?mediauri=http://dotsub.com/media/$2/em/flv/en', |
---|
396 | 'embed-width' => '480', |
---|
397 | 'embed-height' => '392', |
---|
398 | ), |
---|
399 | array( |
---|
400 | 'title' => 'DoubleViking', |
---|
401 | 'website' => 'http://www.doubleviking.com', |
---|
402 | 'url-match' => 'http://(?:www\.)?doubleviking\.com/videos/page[0-9]\.html/[a-z\-]*[0-9]{1,8}\.html', |
---|
403 | 'embed-src' => 'http://www.doubleviking.com/mediaplayer.swf?file=$2', |
---|
404 | 'embed-width' => '400', |
---|
405 | 'embed-height' => '340', |
---|
406 | ), |
---|
407 | array( |
---|
408 | 'title' => 'Dropshots', |
---|
409 | 'website' => 'http://www.dropshots.com', |
---|
410 | 'title' => 'dropshots.com', |
---|
411 | 'url-match' => '(http://media(?:[0-9]{0,2})\.dropshots\.com/photos(?:(?:/(?:[0-9]{1,10})){1,3})\.flv)', |
---|
412 | 'embed-src' => 'http://www.dropshots.com/dropshotsplayer.swf?url=$2', |
---|
413 | 'embed-width' => '480', |
---|
414 | 'embed-height' => '385', |
---|
415 | ), |
---|
416 | array( |
---|
417 | 'title' => 'Dv.ouou', |
---|
418 | 'website' => 'http://dv.ouou.com', |
---|
419 | 'url-match' => 'http://dv\.ouou\.com/(?:play/v_|v/)([a-f0-9]{14})', |
---|
420 | 'embed-src' => 'http://dv.ouou.com/v/$2', |
---|
421 | 'embed-width' => '480', |
---|
422 | 'embed-height' => '385', |
---|
423 | ), |
---|
424 | array( |
---|
425 | 'title' => 'Divshare', |
---|
426 | 'website' => 'http://www.divshare.com', |
---|
427 | 'url-match' => 'http://www\.divshare\.com/download/([^"]*)', |
---|
428 | 'embed-src' => 'http://www.divshare.com/flash/playlist?myId=$2', |
---|
429 | 'embed-width' => '335', |
---|
430 | 'embed-height' => '28', |
---|
431 | ), |
---|
432 | array( |
---|
433 | 'title' => 'EASportsWorld', |
---|
434 | 'website' => 'http://www.easportsworld.com', |
---|
435 | 'url-match' => '(http://videocdn\.easw\.easports\.com/easportsworld/media/(?:[0-9]{1,12})/(?:[0-9a-z-_]*?)\.flv)', |
---|
436 | 'embed-src' => 'http://ll-999.ea.com/sonet-easw/2.2.4.0/flash/sw/videos/mediaplayer.swf?file=$2&image=http://ll-999.ea.com/sonet-easw/2.2.4.0/images/sw/videos/preview.jpg&backcolor=0x000000&frontcolor=0x006BCC&lightcolor=0x006BCC', |
---|
437 | 'embed-width' => '566', |
---|
438 | 'embed-height' => '355', |
---|
439 | ), |
---|
440 | array( |
---|
441 | 'title' => 'EbaumsWorld', |
---|
442 | 'website' => 'http://www.ebaumsworld.com', |
---|
443 | 'url-match' => 'http://www\.ebaumsworld\.com/(?:video|audio)/(?:watch|play)', |
---|
444 | 'fetch-match' => 'id="embed".*flashvars="(.*)"\ wmode', |
---|
445 | 'embed-src' => 'http://www.ebaumsworld.com/mediaplayer.swf', |
---|
446 | 'embed-width' => '425', |
---|
447 | 'embed-height' => '345', |
---|
448 | 'flashvars' => '$2', |
---|
449 | ), |
---|
450 | array( |
---|
451 | 'title' => 'ESPN', |
---|
452 | 'website' => 'http://www.espn.com', |
---|
453 | 'url-match' => 'http:\/\/espn\.go\.com\/video\/clip\?id=([0-9a-z]*)', |
---|
454 | 'embed-src' => 'http://espn.go.com/videohub/player/embed.swf', |
---|
455 | 'embed-width' => '384', |
---|
456 | 'embed-height' => '216', |
---|
457 | 'flashvars' => 'id=$2', |
---|
458 | ), |
---|
459 | array( |
---|
460 | 'title' => 'Fandome', |
---|
461 | 'website' => 'http://www.fandome.com', |
---|
462 | 'url-match' => 'http://[a-z]*\.fandome\.com/video/([0-9]{3,6})/[a-z0-9\-_]*/', |
---|
463 | 'embed-src' => 'http://www.kaltura.com/index.php/kwidget/wid/_35168/uiconf_id/1070752', |
---|
464 | 'embed-width' => '480', |
---|
465 | 'embed-height' => '380', |
---|
466 | 'flashvars' => 'entryId=http://s3.amazonaws.com/lazyjock/$2.flv&autoplay=false', |
---|
467 | ), |
---|
468 | array( |
---|
469 | 'title' => 'Flickr', |
---|
470 | 'website' => 'http://www.flickr.com', |
---|
471 | 'url-match' => 'http://(?:www\.|www2\.)?flickr\.com/photos/[a-z0-9-_]*/([0-9]{8,12})', |
---|
472 | 'fetch-match' => 'id="stewart_swf([0-9]{8,12})_div"', |
---|
473 | 'embed-src' => 'http://www.flickr.com/apps/video/stewart.swf', |
---|
474 | 'embed-width' => '400', |
---|
475 | 'embed-height' => '300', |
---|
476 | 'flashvars' => 'intl_lang=en-us&photo_id=$2', |
---|
477 | ), |
---|
478 | array( |
---|
479 | 'title' => 'FunnyOrDie', |
---|
480 | 'website' => 'http://www.funnyordie.com', |
---|
481 | 'url-match' => 'http://(?:www\.|www2\.)?funnyordie\.com/(?:videos/|public/flash/fodplayer\.swf\?key=)([0-9a-z]{8,12})', |
---|
482 | 'embed-src' => 'http://player.ordienetworks.com/flash/fodplayer.swf', |
---|
483 | 'embed-width' => '464', |
---|
484 | 'embed-height' => '388', |
---|
485 | 'flashvars' => 'key=$2', |
---|
486 | ), |
---|
487 | array( |
---|
488 | 'title' => 'FunMansion', |
---|
489 | 'website' => 'http://www.funmansion.com', |
---|
490 | 'url-match' => 'http://www\.funmansion\.com/videos/[a-z0-9-_]*\.html', |
---|
491 | 'fetch-match' => '<iframe src="http://media\.funmansion\.com/funmansion/player/player\.php\?url=([a-z0-9:/\.-_]*\.flv)', |
---|
492 | 'embed-src' => 'http://media.funmansion.com/funmansion/player/flvplayer.swf?flv=$2', |
---|
493 | 'embed-width' => '446', |
---|
494 | 'embed-height' => '350', |
---|
495 | ), |
---|
496 | array( |
---|
497 | 'title' => 'G4TV', |
---|
498 | 'website' => 'http://www.g4tv.com', |
---|
499 | 'url-match' => 'http://(?:www\.)?g4tv\.com/(?:xplay/videos/|lv3/|sv3/)([0-9]{1,10})', |
---|
500 | 'embed-src' => 'http://www.g4tv.com/lv3/$2', |
---|
501 | 'embed-width' => '480', |
---|
502 | 'embed-height' => '418', |
---|
503 | ), |
---|
504 | array( |
---|
505 | 'title' => 'GameKyo', |
---|
506 | 'website' => 'http://www.gamekyo.com', |
---|
507 | 'url-match' => 'http://(?:www\.)?gamekyo\.com/(?:video|flash/flvplayer\.swf\?videoid=)[a-z]{2}([0-9]{1,7})', |
---|
508 | 'embed-src' => 'http://www.gamekyo.com/flash/flvplayer.swf?videoid=$2', |
---|
509 | 'embed-width' => '512', |
---|
510 | 'embed-height' => '307', |
---|
511 | ), |
---|
512 | array( |
---|
513 | 'title' => 'GameSpot', |
---|
514 | 'website' => 'http://www.gamespot.com', |
---|
515 | 'url-match' => 'http://(?:(?:[a-z]*?)\.)?gamespot\.com/(?:[^"]*?)video/(?:(?:[0-9]{1,12})/)?([0-9]{1,12})', |
---|
516 | 'embed-src' => 'http://image.com.com/gamespot/images/cne_flash/production/media_player/proteus/one/proteus2.swf', |
---|
517 | 'embed-width' => '432', |
---|
518 | 'embed-height' => '362', |
---|
519 | 'flashvars' => 'skin=http://image.com.com/gamespot/images/cne_flash/production/media_player/proteus/one/skins/gamespot.png¶msURI=http%3A%2F%2Fwww.gamespot.com%2Fpages%2Fvideo_player%2Fxml.php%3Fid%3D$2%26mode%3Dembedded%26width%3D432%26height%3D362%2F', |
---|
520 | ), |
---|
521 | array( |
---|
522 | 'title' => 'GameTrailers (Inc. User Movies)', |
---|
523 | 'website' => 'http://www.gametrailers.com', |
---|
524 | 'url-match' => 'http://(?:www\.)?gametrailers\.com/(?:player/(u)?(?:sermovies/)?|remote_wrap\.php\?(u)?mid=)([0-9]{1,10})', |
---|
525 | 'embed-src' => 'http://www.gametrailers.com/remote_wrap.php?$2$3mid=$4', //Either $2 or $3 will be empty |
---|
526 | 'embed-width' => '480', |
---|
527 | 'embed-height' => '392', |
---|
528 | ), |
---|
529 | array( |
---|
530 | 'title' => 'GameTube', |
---|
531 | 'website' => 'http://www.gametube.org', |
---|
532 | 'title' => 'Gametube.org', |
---|
533 | 'url-match' => 'http://(?:www\.)?gametube\.org/(?:\#/video/|htmlVideo\.jsp\?id=|miniPlayer\.swf\?vidId=)([A-z0-9=_-]{28})', |
---|
534 | 'embed-src' => 'http://www.gametube.org/miniPlayer.swf?vidId=$2', |
---|
535 | 'embed-width' => '425', |
---|
536 | 'embed-height' => '335', |
---|
537 | ), |
---|
538 | array( |
---|
539 | 'title' => 'GameVideos.1up', |
---|
540 | 'website' => 'http://www.gamevideos.1up.com', |
---|
541 | 'url-match' => 'http://(?:www\.)?gamevideos(?:\.1up)?\.com/(?:video/id/|video/embed\?(?:[^"]*?)?video=)([0-9]{1,8})', |
---|
542 | 'embed-src' => 'http://gamevideos.1up.com/swf/gamevideos11.swf?embedded=1&fullscreen=1&autoplay=0&src=http://gamevideos.1up.com/video/videoListXML%3Fid%3D$2%26adPlay%3Dfalse', |
---|
543 | 'embed-width' => '500', |
---|
544 | 'embed-height' => '319', |
---|
545 | ), |
---|
546 | array( |
---|
547 | 'title' => 'GarageTv', |
---|
548 | 'website' => 'http://www.garagetv.be', |
---|
549 | 'url-match' => '(http://www\.garagetv\.be/v/(?:[0-9a-z-\!_]*?)/v\.aspx)', |
---|
550 | 'embed-src' => '$2', |
---|
551 | 'embed-width' => '430', |
---|
552 | 'embed-height' => '369', |
---|
553 | ), |
---|
554 | array( |
---|
555 | 'title' => 'Gloria', |
---|
556 | 'website' => 'http://www.gloria.tv', |
---|
557 | 'url-match' => 'http://(?:www\.)?gloria\.tv/\?video=([a-z0-9]{20})', |
---|
558 | 'embed-src' => 'http://www.gloria.tv/flvplayer.swf?file=http%3A%2F%2Fwww.gloria.tv%2F%3Fembed%26video%3D$2%26width%3D512%26height%3D288&type=flv&image=http%3A%2F%2Fwww.gloria.tv%2F%3Fembed%26image%3D$2%26width%3D512%26height%3D288&autostart=false&showdigits=true&usefullscreen=false&logo=http%3A%2F%2Fwww.gloria.tv%2Fimage%2Flogo_embed.png&link=http%3A%2F%2Fwww.gloria.tv%2F%3Fvideo%3Dddexrl6eelym3gaabxmz%26amp%3Bview%3Dflash&linktarget=_blank&volume=100&backcolor=0xe0e0e0&frontcolor=0x000000&lightcolor=0xf00000', |
---|
559 | 'embed-width' => '512', |
---|
560 | 'embed-height' => '404', |
---|
561 | ), |
---|
562 | array( |
---|
563 | 'title' => 'GoEar', |
---|
564 | 'website' => 'http://www.goear.com', |
---|
565 | 'url-match' => 'http://(?:www\.)?goear\.com/listen\.php\?v=([a-z0-9]{7})', |
---|
566 | 'embed-src' => 'http://www.goear.com/files/external.swf?file=$2', |
---|
567 | 'embed-width' => '353', |
---|
568 | 'embed-height' => '132', |
---|
569 | ), |
---|
570 | array( |
---|
571 | 'title' => 'Good.IS', |
---|
572 | 'website' => 'http://www.good.is', |
---|
573 | 'url-match' => 'http://www\.good\.is/\?p=([0-9]{3,7})', |
---|
574 | 'fetch-match' => '(http:\/\/s3\.amazonaws\.com\/.*Url=http:\/\/www\.good\.is\/\?p=[0-9]{3,7})"\/><embed src=&', |
---|
575 | 'embed-src' => '$2', |
---|
576 | 'embed-width' => '416', |
---|
577 | 'embed-height' => '264', |
---|
578 | 'flashvars' => '$2', |
---|
579 | ), |
---|
580 | |
---|
581 | array( |
---|
582 | 'title' => 'Glumbert', |
---|
583 | 'website' => 'http://www.glumbert.com', |
---|
584 | 'url-match' => 'http://(?:www\.)?glumbert\.com/(?:embed|media)/([a-z0-9_-]{1,30})', |
---|
585 | 'embed-src' => 'http://www.glumbert.com/embed/$2', |
---|
586 | 'embed-width' => '425', |
---|
587 | 'embed-height' => '335', |
---|
588 | ), |
---|
589 | array( |
---|
590 | 'title' => 'GodTube', |
---|
591 | 'website' => 'http://www.godtube.com', |
---|
592 | 'url-match' => 'http://(?:www\.)?godtube\.com/view_video\.php\?(?:[^"]*?)?viewkey=([0-9a-f]{20})', |
---|
593 | 'embed-src' => 'http://godtube.com/flvplayer.swf?viewkey=$2', |
---|
594 | 'embed-width' => '330', |
---|
595 | 'embed-height' => '270', |
---|
596 | ), |
---|
597 | array( |
---|
598 | 'title' => 'GrindTv', |
---|
599 | 'website' => 'http://www.grindtv.com', |
---|
600 | 'url-match' => '(http://(?:www\.)?grindtv\.com/video/(.*)/(?:[^"]*?)i=(?:[0-9]{1,12}))', |
---|
601 | 'embed-src' => 'http://images.grindtv.com/1.0.2/swf/video.swf?sa=1&si=1&i=$3&sct=$2', |
---|
602 | 'embed-width' => '640', |
---|
603 | 'embed-height' => '480', |
---|
604 | ), |
---|
605 | array( |
---|
606 | 'title' => 'Guzer', |
---|
607 | 'website' => 'http://www.guzer.com', |
---|
608 | 'url-match' => 'http://(?:www\.)?guzer\.com/videos/(.*).php', |
---|
609 | 'embed-src' => 'http://www.guzer.com/player/mediaplayer.swf', |
---|
610 | 'embed-width' => '486', |
---|
611 | 'embed-height' => '382', |
---|
612 | 'flashvars' => 'height=382&width=486&file=http://media.guzer.com/videos/$2.flv&image=http://www.guzer.com/videos/s$2.jpg' |
---|
613 | ), |
---|
614 | array( |
---|
615 | 'title' => 'TheHub', |
---|
616 | 'website' => 'http://hub.witness.org', |
---|
617 | 'url-match' => 'http://hub\.witness\.org/(?:en|fr|es)/node/([0-9]{1,10})', |
---|
618 | 'embed-src' => 'http://hub.witness.org/sites/hub.witness.org/modules/contrib-5/flvmediaplayer/mediaplayer.swf?file=http://hub.witness.org/xspf/node/$2&overstretch=fit&repeat=false&logo=http://hub.witness.org/sites/hub.witness.org/themes/witness/images/hub_wm.png', |
---|
619 | 'embed-width' => '320', |
---|
620 | 'embed-height' => '260', |
---|
621 | ), |
---|
622 | array( |
---|
623 | 'title' => 'Howcast', |
---|
624 | 'website' => 'http://www.howcast.com', |
---|
625 | 'url-match' => 'http://(?:www\.)?howcast\.com/videos/([0-9]{1,8})', |
---|
626 | 'embed-src' => 'http://www.howcast.com/flash/howcast_player.swf?file=$2&theme=black', |
---|
627 | 'embed-width' => '432', |
---|
628 | 'embed-height' => '276', |
---|
629 | ), |
---|
630 | array( |
---|
631 | 'title' => 'Hulu (Usa Only)', |
---|
632 | 'website' => 'http://www.hulu.com', |
---|
633 | 'url-match' => 'http://(?:www\.)?hulu\.com/watch/(?:[0-9]{1,8})/', |
---|
634 | 'fetch-match' => '<link rel="video_src" href="([A-z:/\.0-9-_=?]*)', |
---|
635 | 'embed-src' => '$2', |
---|
636 | 'embed-width' => '512', |
---|
637 | 'embed-height' => '296', |
---|
638 | ), |
---|
639 | array( |
---|
640 | 'title' => 'Humour', |
---|
641 | 'website' => 'http://www.humour.com', |
---|
642 | 'url-match' => 'http://(?:video|www)\.humour\.com/videos-comiques/videos.asp\?[A-z]*\=([1-9]{1,8})', |
---|
643 | 'embed-src' => '/videos-comiques/player/mediaplayer.swf', |
---|
644 | 'embed-width' => '425', |
---|
645 | 'embed-height' => '355', |
---|
646 | ), |
---|
647 | array( |
---|
648 | 'title' => 'Video.i.ua', |
---|
649 | 'website' => 'http://video.i.ua', |
---|
650 | 'url-match' => '(http://i1\.i\.ua/video/vp3\.swf\?9&(?:amp;)?userID=(?:[0-9]{1,20})&(?:amp;)?videoID=(?:[0-9]{1,20})&(?:amp;)?playTime=(?:[0-9]{1,20})&(?:amp;)?repeat=0&(?:amp;)?autostart=0&(?:amp;)?videoSize=(?:[0-9]{1,20})&(?:amp;)?userStatus=(?:[0-9]{1,2})&(?:amp;)?notPreview=(?:[0-9]{1,2})&(?:amp;)?mID=m?(?:[0-9]{1,2}))', |
---|
651 | 'embed-src' => '$2', |
---|
652 | 'embed-width' => '450', |
---|
653 | 'embed-height' => '349', |
---|
654 | ), |
---|
655 | array( |
---|
656 | 'title' => 'IGN', |
---|
657 | 'website' => 'http://www.ign.com', |
---|
658 | 'url-match' => 'http://(?:(?:(?:[a-z0-9]*?)\.){0,3})ign\.com/(?:[a-z0-9-_]*?)?/objects/([0-9]{1,10})/(?:(?:[a-z0-9-_]*?)/)?videos/', |
---|
659 | 'embed-src' => 'http://videomedia.ign.com/ev/ev.swf?object_ID=$2', |
---|
660 | 'embed-width' => '433', |
---|
661 | 'embed-height' => '360', |
---|
662 | ), |
---|
663 | array( |
---|
664 | 'title' => 'iJigg', |
---|
665 | 'website' => 'http://www.ijigg.com', |
---|
666 | 'url-match' => 'http://(?:www\.)?ijigg\.com/(?:jiggPlayer\.swf\?songID=|songs/|trackback/)([0-9A-Z]{9,12})', |
---|
667 | 'embed-src' => 'http://www.ijigg.com/jiggPlayer.swf?songID=$2&Autoplay=0', |
---|
668 | 'embed-width' => '315', |
---|
669 | 'embed-height' => '80', |
---|
670 | ), |
---|
671 | array( |
---|
672 | 'title' => 'IMDB', |
---|
673 | 'website' => 'http://www.imdb.com', |
---|
674 | 'url-match' => 'http://(?:www\.)?totaleclips\.com/Player/Bounce\.aspx\?eclipid=([0-9a-z]{1,12})&(?:amp;)?bitrateid=([0-9]{1,10})&(?:amp;)?vendorid=([0-9]{1,10})&(?:amp;)?type=\.flv', |
---|
675 | 'embed-src' => 'http://www.imdb.com/images/js/app/video/mediaplayer.swf?file=http%3A%2F%2Fwww.totaleclips.com%2FPlayer%2FBounce.aspx%3Feclipid%3D$2%26bitrateid%3D$3%26vendorid%3D$4%26type%3D.flv&backcolor=0x000000&frontcolor=0xCCCCCC&lightcolor=0xFFFFCC&shuffle=false&autostart=false', |
---|
676 | 'embed-width' => '480', |
---|
677 | 'embed-height' => '380', |
---|
678 | ), |
---|
679 | array( |
---|
680 | 'title' => 'ImageShack', |
---|
681 | 'website' => 'http://www.imageshack.us', |
---|
682 | 'url-match' => 'http://img([0-9]{1,5})\.imageshack\.us/img[0-9]{1,5}/[0-9]{1,7}/([a-z0-9-_]{1,28})\.(?:flv|swf)', |
---|
683 | 'embed-src' => 'http://img$2.imageshack.us/flvplayer.swf?f=T$3&autostart=false', |
---|
684 | 'embed-width' => '424', |
---|
685 | 'embed-height' => '338', |
---|
686 | ), |
---|
687 | array( |
---|
688 | 'title' => 'IndyaRocks', |
---|
689 | 'website' => 'http://www.indyarocks.com', |
---|
690 | 'url-match' => 'http://(?:www\.)?indyarocks\.com/videos/(?:(?:(?:(?:[^-"]*?)-){1,10})|embed-)([0-9]{1,8})', |
---|
691 | 'embed-src' => 'http://www.indyarocks.com/videos/embed-$2', |
---|
692 | 'embed-width' => '425', |
---|
693 | 'embed-height' => '350', |
---|
694 | ), |
---|
695 | array( |
---|
696 | 'title' => 'iReport', |
---|
697 | 'website' => 'http://www.ireport.com', |
---|
698 | 'url-match' => 'http://www\.ireport\.com/docs/DOC-([0-9]{4,8})', |
---|
699 | 'embed-src' => 'http://www.ireport.com/themes/custom/resources/cvplayer/ireport_embed.swf?player=embed&configPath=http://www.ireport.com&playlistId=$2&contentId=$2/0&', |
---|
700 | 'embed-width' => '400', |
---|
701 | 'embed-height' => '300', |
---|
702 | ), |
---|
703 | array( |
---|
704 | 'title' => 'Izlesene', |
---|
705 | 'website' => 'http://www.izlesene.com', |
---|
706 | 'url-match' => 'http://(?:www\.)?izlesene\.com/(?:player2\.swf\?video=|video/(?:[a-z0-9-_]*?)/)([0-9]{1,10})', |
---|
707 | 'embed-src' => 'http://www.izlesene.com/player2.swf?video=$2', |
---|
708 | 'embed-width' => '425', |
---|
709 | 'embed-height' => '355', |
---|
710 | ), |
---|
711 | array( |
---|
712 | 'title' => 'Jamendo', |
---|
713 | 'website' => 'http://www.jamendo.com', |
---|
714 | 'url-match' => 'http://(?:www\.|widgets\.)?jamendo\.com/(?:[a-z0-9]*?)/album/(?:\?album_id=)?([0-9]{1,10})', |
---|
715 | 'embed-src' => 'http://widgets.jamendo.com/en/album/?album_id=$2&playertype=2008', |
---|
716 | 'embed-width' => '200', |
---|
717 | 'embed-height' => '300', |
---|
718 | ), |
---|
719 | array( |
---|
720 | 'title' => 'Jamendo', |
---|
721 | 'website' => 'http://www.jamendo.com', |
---|
722 | 'url-match' => 'http://(?:www\.|widgets\.)?jamendo\.com/(?:[a-z0-9]*?)/track/(?:\?album_id=)?([0-9]{1,10})', |
---|
723 | 'embed-src' => 'http://widgets.jamendo.com/fr/track/?playertype=2008&track_id=$2', |
---|
724 | 'embed-width' => '200', |
---|
725 | 'embed-height' => '300', |
---|
726 | ), |
---|
727 | array( |
---|
728 | 'title' => 'Jokeroo', |
---|
729 | 'website' => 'http://www.jokeroo.com', |
---|
730 | 'url-match' => 'http://(?:www\.)?jokeroo\.com/(auto|educational|financial|health|howto|lawyers|politics|travel|extremesports|funnyvideos)/((?:(?:[0-9a-z]*?)/){0,3})?([0-9a-z_]*?)\.htm', |
---|
731 | 'embed-src' => 'http://www.jokeroo.com/promotional_player2.swf?channel&vid=http://uploads.filecabin.com/flash/$4.flv&vid_url=http://www.jokeroo.com/$2/$3$4.html&adv_url', |
---|
732 | 'embed-width' => '490', |
---|
733 | 'embed-height' => '425', |
---|
734 | ), |
---|
735 | array( |
---|
736 | 'title' => 'JujuNation Video', |
---|
737 | 'website' => 'http://www.jujunation.com', |
---|
738 | 'url-match' => 'http://(?:www\.)?jujunation.com/viewVideo\.php\?video_id=([0-9]{1,10})', |
---|
739 | 'embed-src' => 'http://www.jujunation.com/flvplayer.swf?config=http://www.jujunation.com/videoConfigXmlCode.php?pg=video_$2_no_0', |
---|
740 | 'embed-width' => '450', |
---|
741 | 'embed-height' => '370', |
---|
742 | ), |
---|
743 | array( |
---|
744 | 'title' => 'JujuNation Audio', |
---|
745 | 'website' => 'http://www.jujunation.com', |
---|
746 | 'url-match' => 'http://(?:www\.)?jujunation.com/music\.php\?music_id=([0-9]{1,10})', |
---|
747 | 'embed-src' => 'http://www.jujunation.com/player.swf?configXmlPath=http://www.jujunation.com/musicConfigXmlCode.php?pg=music_$2&playListXmlPath=http://www.jujunation.com/musicPlaylistXmlCode.php?pg=music_$2', |
---|
748 | 'embed-width' => '220', |
---|
749 | 'embed-height' => '66', |
---|
750 | ), |
---|
751 | array( |
---|
752 | 'title' => 'JustinTV', |
---|
753 | 'website' => 'http://www.justin.tv', |
---|
754 | 'url-match' => 'http://(?:\w{0,3}\.)?justin\.tv/(\w*)', |
---|
755 | 'embed-src' => 'http://www.justin.tv/widgets/jtv_player.swf?channel=$2&auto_play=false', |
---|
756 | 'embed-width' => '353', |
---|
757 | 'embed-height' => '295', |
---|
758 | ), |
---|
759 | array( |
---|
760 | 'title' => 'Kewego', |
---|
761 | 'website' => 'http://www.kewego.co.uk', |
---|
762 | 'url-match' => 'http://(?:www\.)?kewego(?:\.co\.uk|\.com)/video/([0-9a-z]*)\.html', |
---|
763 | 'embed-src' => 'http://www.kewego.com/swf/p3/epix.swf', |
---|
764 | 'embed-width' => '400', |
---|
765 | 'embed-height' => '300', |
---|
766 | 'flashvars' => 'language_code=en&playerKey=$2&skinKey=71703ed5cea1&sig=iLyROoaftv7I&autostart=false' |
---|
767 | ), |
---|
768 | array( |
---|
769 | 'title' => 'Koreus', |
---|
770 | 'website' => 'http://www.koreus.com', |
---|
771 | 'url-match' => 'http://(?:www\.)?koreus\.com/video/([0-9a-z-]{1,50})(?:\.html)?', |
---|
772 | 'embed-src' => 'http://www.koreus.com/video/$2', |
---|
773 | 'embed-width' => '400', |
---|
774 | 'embed-height' => '320', |
---|
775 | ), |
---|
776 | array( |
---|
777 | 'title' => 'Last.fm (Audio)', |
---|
778 | 'website' => 'http://www.last.fm', |
---|
779 | 'url-match' => 'http://(?:www\.)?last\.fm/music/([0-9a-z%\+_-]*?)/_/([0-9\+a-z_-]*)', |
---|
780 | 'embed-src' => 'http://cdn.last.fm/webclient/s12n/s/53/lfmPlayer.swf', |
---|
781 | 'embed-width' => '300', |
---|
782 | 'embed-height' => '221', |
---|
783 | 'flashvars' => 'lang=en&lfmMode=playlist&FOD=true&resname=$3&restype=track&artist=$2', |
---|
784 | ), |
---|
785 | /* |
---|
786 | array( |
---|
787 | 'title' => 'Last.fm (Audio)', |
---|
788 | 'website' => 'http://www.last.fm', |
---|
789 | 'url-match' => 'http://(?:www\.)?last\.fm/music/([0-9a-z%\+_-]*?)/_/([0-9\+a-z_-]*)', |
---|
790 | 'embed-src' => 'http://cdn.last.fm/webclient/s12n/s/53/lfmPlayer.swf', |
---|
791 | 'embed-width' => '300', |
---|
792 | 'embed-height' => '221', |
---|
793 | 'flashvars' => 'lang=en&lfmMode=playlist&FOD=true&resname=$3&restype=track&artist=$2', |
---|
794 | ), |
---|
795 | array( |
---|
796 | 'title' => 'Last.fm (Video)', |
---|
797 | 'website' => 'http://www.last.fm', |
---|
798 | 'url-match' => 'http://(?:www\.)?last\.fm/music/([0-9a-zA-Z%\+_-]*?)/\+videos/([0-9\+a-z_-]{2,20})', |
---|
799 | 'embed-src' => 'http://cdn.last.fm/videoplayer/l/17/VideoPlayer.swf', |
---|
800 | 'embed-width' => '340', |
---|
801 | 'embed-height' => '289', |
---|
802 | 'flashvars' => 'uniqueName=$3&FSSupport=true&' |
---|
803 | ), |
---|
804 | */ |
---|
805 | array( |
---|
806 | 'title' => 'Libero', |
---|
807 | 'website' => 'http://www.libero.it', |
---|
808 | 'url-match' => 'http://video\.libero\.it/app/play(?:/index.html)?\?(?:[^"]*?)?id=([a-f0-9]{32})', |
---|
809 | 'embed-src' => 'http://video.libero.it/static/swf/eltvplayer.swf?id=$2.flv&ap=0', |
---|
810 | 'embed-width' => '400', |
---|
811 | 'embed-height' => '333', |
---|
812 | ), |
---|
813 | array( |
---|
814 | 'title' => 'LiveLeak', |
---|
815 | 'website' => 'http://www.liveleak.com', |
---|
816 | 'url-match' => 'http://(?:www\.)?liveleak\.com/(?:player.swf?autostart=false&(?:amp;)?token=|view\?(?:[^"]*?)?i=|e/)((?:[0-9a-z]{3})_(?:[a-z0-9]{10}))', |
---|
817 | 'embed-src' => 'http://www.liveleak.com/e/$2', |
---|
818 | 'embed-width' => '450', |
---|
819 | 'embed-height' => '370', |
---|
820 | ), |
---|
821 | array( |
---|
822 | 'title' => 'LiveVideo', |
---|
823 | 'website' => 'http://www.livevideo.com', |
---|
824 | 'url-match' => 'http://(?:www\.)?livevideo\.com/(?:flvplayer/embed/|video/(?:view/)?(?:(?:[^"]*?)?/)?)([0-9a-f]{32})', |
---|
825 | 'embed-src' => 'http://www.livevideo.com/flvplayer/embed/$2', |
---|
826 | 'embed-width' => '445', |
---|
827 | 'embed-height' => '369', |
---|
828 | ), |
---|
829 | array( |
---|
830 | 'title' => 'Machinima (Old)', |
---|
831 | 'website' => 'http://www.machinima.com', |
---|
832 | 'url-match' => 'http://(?:www\.)?machinima\.com/(?:film/view&(?:amp;)?id=|#details_)([0-9]{1,8})(?:_contents)?', |
---|
833 | 'embed-src' => 'http://www.machinima.com/_flash_media_player/mediaplayer.swf?file=http://machinima.com/p/$2', |
---|
834 | 'embed-width' => '400', |
---|
835 | 'embed-height' => '300', |
---|
836 | ), |
---|
837 | array( |
---|
838 | 'title' => 'Machinima (New)', |
---|
839 | 'website' => 'http://www.machinima.com', |
---|
840 | 'url-match' => 'http://(?:www\.)?machinima\.com:80/f/([0-9a-f]{32})', |
---|
841 | 'embed-src' => 'http://machinima.com:80/_flash_media_player/mediaplayer.swf?file=http://machinima.com:80/f/$2', |
---|
842 | 'embed-width' => '400', |
---|
843 | 'embed-height' => '300', |
---|
844 | ), |
---|
845 | array( |
---|
846 | 'title' => 'MSNBC', |
---|
847 | 'website' => 'http://www.msnbc.msn.com/', |
---|
848 | 'url-match' => 'http://www\.msnbc\.msn\.com/id/(?:[0-9]{1,9})/vp/([0-9]{1,9})', |
---|
849 | 'embed-src' => 'http://msnbcmedia.msn.com/i/MSNBC/Components/Video/_Player/swfs/embedPlayer/EmbeddedPlayer_I4.swf?domain=www.msnbc.msn.com&settings=22425448&useProxy=true&wbDomain=www.msnbc.msn.com&launch=$2&sw=1920&sh=1200&EID=oVPEFC&playerid=22425001', |
---|
850 | 'embed-width' => '425', |
---|
851 | 'embed-height' => '339', |
---|
852 | ), |
---|
853 | array( |
---|
854 | 'title' => 'Video.mail.ru', |
---|
855 | 'website' => 'http://video.mail.ru', |
---|
856 | 'url-match' => 'http://video\.mail\.ru/mail/([0-9a-z_-]*?)/([0-9]{1,4})/([0-9]{1,4})\.html', |
---|
857 | 'embed-src' => 'http://img.mail.ru/r/video2/player_v2.swf?par=http://content.video.mail.ru/mail/$2/$3/\$$4&page=1&username=$2&albumid=$3&id=$4', |
---|
858 | 'embed-width' => '452', |
---|
859 | 'embed-height' => '385', |
---|
860 | ), |
---|
861 | array( |
---|
862 | 'title' => 'MadnessVideo', |
---|
863 | 'website' => 'http://www.madnessvideo.net', |
---|
864 | 'url-match' => 'http://(?:www\.)?madnessvideo\.net/(.*)', |
---|
865 | 'embed-src' => 'http://www.madnessvideo.net/emb.aspx/$2', |
---|
866 | 'embed-width' => '400', |
---|
867 | 'embed-height' => '320', |
---|
868 | ), |
---|
869 | array( |
---|
870 | 'title' => 'MotionBox', |
---|
871 | 'website' => 'http://www.motionbox.com', |
---|
872 | 'url-match' => 'http://(?:www\.)?motionbox\.com/videos/([0-9a-f]{14})', |
---|
873 | 'embed-src' => 'http://www.motionbox.com/external/hd_player/type%3Dsd%2Cvideo_uid%3D$2', |
---|
874 | 'embed-width' => '416', |
---|
875 | 'embed-height' => '312', |
---|
876 | ), |
---|
877 | array( |
---|
878 | 'title' => 'Mpora', |
---|
879 | 'website' => 'http://video.mpora.com', |
---|
880 | 'url-match' => 'http://video\.mpora\.com/watch/(\w{9})', |
---|
881 | 'embed-src' => 'http://video.mpora.com/ep/$2/', |
---|
882 | 'embed-width' => '425', |
---|
883 | 'embed-height' => '350', |
---|
884 | ), |
---|
885 | /* |
---|
886 | array( |
---|
887 | 'title' => 'Mp3tube', |
---|
888 | 'website' => 'http://www.mp3tube.net', |
---|
889 | 'url-match' => '(http://(?:www\.)?mp3tube\.net\/play\.swf\?id=(?:[0-9a-f]{32}))', |
---|
890 | 'embed-src' => '$2', |
---|
891 | 'embed-width' => '260', |
---|
892 | 'embed-height' => '60', |
---|
893 | ), |
---|
894 | */ |
---|
895 | array( |
---|
896 | 'title' => 'MtvU (Usa Only)', |
---|
897 | 'website' => 'http://www.mtvu.com', |
---|
898 | 'url-match' => 'http://(?:www\.)?mtvu\.com/video/\?id=([0-9]{1,9})(?:[^"]*?)vid=([0-9]{1,9})', |
---|
899 | 'embed-src' => 'http://media.mtvu.com/player/embed/AS3/site/', |
---|
900 | 'embed-width' => '423', |
---|
901 | 'embed-height' => '318', |
---|
902 | 'flashvars' => 'CONFIG_URL=http://media.mtvu.com/player/embed/AS3/site/configuration.jhtml%3fid%3D$2%26vid%3D$3%26autoPlay%3Dfalse&allowFullScreen=true' |
---|
903 | ), |
---|
904 | array( |
---|
905 | 'title' => 'MP3 Audio', |
---|
906 | 'website' => '', |
---|
907 | 'url-match' => '(http://[^"\'\`\<\>\@\*\$]*?\.mp3)$', |
---|
908 | 'embed-src' => 'http://www.google.com/reader/ui/3523697345-audio-player.swf', |
---|
909 | 'embed-width' => '400', |
---|
910 | 'embed-height' => '27', |
---|
911 | 'flashvars' => 'audioUrl=$2' |
---|
912 | ), |
---|
913 | array( |
---|
914 | 'title' => 'MyNet', |
---|
915 | 'website' => 'http://video.eksenim.mynet.com/', |
---|
916 | 'url-match' => 'http://video\.eksenim\.mynet\.com/(?:[0-9a-z_-]*?)/(?:[0-9a-z_-]*?)/([0-9]{1,12})/', |
---|
917 | 'embed-src' => 'http://video.eksenim.mynet.com/flvplayers/vplayer9.swf?videolist=http://video.eksenim.mynet.com/batch/video_xml_embed.php?video_id=$2', |
---|
918 | 'embed-width' => '400', |
---|
919 | 'embed-height' => '334', |
---|
920 | ), |
---|
921 | array( |
---|
922 | 'title' => 'MyShows.cn/SeeHaha.com', |
---|
923 | 'website' => 'http://www.myshows.cn', |
---|
924 | 'url-match' => '(http://www\.seehaha\.com/flash/player\.swf\?vidFileName=(?:[0-9]*?)\.flv)', |
---|
925 | 'embed-src' => '$2', |
---|
926 | 'embed-width' => '425', |
---|
927 | 'embed-height' => '350', |
---|
928 | ), |
---|
929 | array( |
---|
930 | 'title' => 'MySpaceTv', |
---|
931 | 'website' => 'http://www.myspacetv.com', |
---|
932 | 'url-match' => 'http://(?:vids\.myspace|myspacetv)\.com/index\.cfm\?(?:[^"]*?)?VideoID=([0-9]{1,10})', |
---|
933 | 'embed-src' => 'http://mediaservices.myspace.com/services/media/embed.aspx/m=$2', |
---|
934 | 'embed-width' => '425', |
---|
935 | 'embed-height' => '360', |
---|
936 | ), |
---|
937 | array( |
---|
938 | 'title' => 'MyVideo', |
---|
939 | 'website' => 'http://www.myvideo.de', |
---|
940 | 'url-match' => 'http://(?:www\.)?myvideo\.(at|be|ch|de|nl)/(?:watch|movie)/([0-9]{1,8})', |
---|
941 | 'embed-src' => 'http://www.myvideo.$2/movie/$3', |
---|
942 | 'embed-width' => '470', |
---|
943 | 'embed-height' => '406', |
---|
944 | ), |
---|
945 | array( |
---|
946 | 'title' => 'MyVi', |
---|
947 | 'website' => 'http://myvi.ru', |
---|
948 | 'url-match' => '(http://(?:www\.)?myvi\.ru/ru/flash/player/(?:[0-9a-z_-]{45}))', |
---|
949 | 'embed-src' => '$2', |
---|
950 | 'embed-width' => '450', |
---|
951 | 'embed-height' => '418', |
---|
952 | ), |
---|
953 | array( |
---|
954 | 'title' => 'M Thai', |
---|
955 | 'website' => 'http://video.mthai.com', |
---|
956 | 'url-match' => 'http://video\.mthai\.com/player\.php\?(?:[^"]*?)?id=([0-9a-z]{14,20})', |
---|
957 | 'embed-src' => 'http://video.mthai.com/Flash_player/player.swf?idMovie=$2', |
---|
958 | 'embed-width' => '407', |
---|
959 | 'embed-height' => '342', |
---|
960 | ), |
---|
961 | array( |
---|
962 | 'title' => 'NewGrounds', |
---|
963 | 'website' => 'http://www.newgrounds.com', |
---|
964 | 'url-match' => '(http://uploads\.ungrounded\.net/(?:[0-9]{1,12})/(?:[0-9]{1,12})_(?:[0-9a-z_-]*?)\.swf)', |
---|
965 | 'embed-src' => '$2?autostart=false&autoplay=false', |
---|
966 | 'embed-width' => '480', |
---|
967 | 'embed-height' => '400', |
---|
968 | ), |
---|
969 | array( |
---|
970 | 'title' => 'NhacCuaTui', |
---|
971 | 'website' => 'http://www.nhaccuatui.com', |
---|
972 | 'url-match' => 'http://(?:www\.)?nhaccuatui\.com/(?:nghe\?M=|m/)([a-z0-9-_]{10})', |
---|
973 | 'embed-src' => 'http://www.nhaccuatui.com/m/$2', |
---|
974 | 'embed-width' => '300', |
---|
975 | 'embed-height' => '270', |
---|
976 | ), |
---|
977 | array( |
---|
978 | 'title' => 'OnSmash', |
---|
979 | 'website' => 'http://www.onsmash.com', |
---|
980 | 'url-match' => 'http://(?:www\.|videos\.)?onsmash\.com/(?:v|e)/([0-9a-z]{16})', |
---|
981 | 'embed-src' => 'http://videos.onsmash.com/e/$2', |
---|
982 | 'embed-width' => '448', |
---|
983 | 'embed-height' => '374', |
---|
984 | ), |
---|
985 | array( |
---|
986 | 'title' => 'Orb', |
---|
987 | 'website' => 'http://www.orb.com', |
---|
988 | 'url-match' => 'http://mycast\.orb\.com/orb/html/qs\?mediumId=([0-9a-z]{8})&(?:amp;)?l=([0-9a-z_-]{1,20})', |
---|
989 | 'embed-src' => 'http://mycast.orb.com/orb/resources/common/videoplayer.swf?file=http%3A%2F%2Fmycast.orb.com%2Forb%2Fxml%2Fstream%3FstreamFormat%3Dswf%26mediumId%3D$2%26l%3D$3&showdigits=true&autostart=false&shuffle=false&showeq=true&showfsbutton=true', |
---|
990 | 'embed-width' => '439', |
---|
991 | 'embed-height' => '350', |
---|
992 | ), |
---|
993 | array( |
---|
994 | 'title' => 'Photobucket', |
---|
995 | 'website' => 'http://www.photobucket.com', |
---|
996 | 'url-match' => 'http://media\.photobucket\.com\/video\/.*\/videos', |
---|
997 | 'fetch-match' => '(http://vid[0-9]{1,3}\.photobucket\.com/albums/[a-z0-9]{2,5}/[a-z0-9\-_]*/videos/[a-z0-9\-_]*\.flv)', |
---|
998 | 'embed-src' => 'http://media.photobucket.com/flash/player.swf?file=$2', |
---|
999 | 'embed-width' => '448', |
---|
1000 | 'embed-height' => '361', |
---|
1001 | ), |
---|
1002 | array( |
---|
1003 | 'title' => 'PikNikTube', |
---|
1004 | 'website' => 'http://www.pikniktube.com', |
---|
1005 | 'url-match' => 'http://(?:www\.)?pikniktube\.com/(?:v/|(?:(?:[^"]*?)\?q=))([0-9a-f]{32})', |
---|
1006 | 'embed-src' => 'http://www.pikniktube.com/player/videoplayer2.swf?linktarget=_blank&embedded=1&xmlsrc=http://www.pikniktube.com/getxmle.asp?q=$2&a=1&c=0', |
---|
1007 | 'embed-width' => '340', |
---|
1008 | 'embed-height' => '320', |
---|
1009 | ), |
---|
1010 | array( |
---|
1011 | 'title' => 'Project Playlist', |
---|
1012 | 'website' => 'http://www.playlist.com', |
---|
1013 | 'url-match' => 'http://(?:www\.)?playlist\.com/(?:standalone|node)/([0-9]{1,10})', |
---|
1014 | 'embed-src' => 'http://www.playlist.com/media/mp3player-standalone.swf?playlist_url=http://www.playlist.com/node/$2/playlist/xspf&config=http://www.musiclist.us/mc/config/config_black.xml&mywidth=435', |
---|
1015 | 'embed-width' => '435', |
---|
1016 | 'embed-height' => '270', |
---|
1017 | ), |
---|
1018 | array( |
---|
1019 | 'title' => 'Putfile', |
---|
1020 | 'website' => 'http://www.putfile.com', |
---|
1021 | 'url-match' => 'http://(?:www\.|media\.|feat\.)?putfile\.com/(?:flow/putfile\.swf\?videoFile=|)?([a-z0-9-_]*)(?:\?)?', |
---|
1022 | 'embed-src' => 'http://feat.putfile.com/flow/putfile.swf?videoFile=$2', |
---|
1023 | 'embed-width' => '425', |
---|
1024 | 'embed-height' => '345', |
---|
1025 | ), |
---|
1026 | array( |
---|
1027 | 'title' => 'Rambler', |
---|
1028 | 'website' => 'http://vision.rambler.ru', |
---|
1029 | 'url-match' => 'http://vision\.rambler\.ru/(?:i/e\.swf\?id=|users/)((?:[0-9a-z_-]*?)/(?:[0-9]*?)/(?:[0-9]*))', |
---|
1030 | 'embed-src' => 'http://vision.rambler.ru/i/e.swf?id=$2&logo=1', |
---|
1031 | 'embed-width' => '390', |
---|
1032 | 'embed-height' => '370', |
---|
1033 | ), |
---|
1034 | array( |
---|
1035 | 'title' => 'RawVegas', |
---|
1036 | 'website' => 'http://www.rawvegas.tv', |
---|
1037 | 'url-match' => 'http://(?:www\.)?rawvegas\.tv/watch/[a-z\-0-9]*/([0-9a-f]{30})', |
---|
1038 | 'embed-src' => 'http://www.rawvegas.tv/ext.php?uniqueVidID=$2', |
---|
1039 | 'embed-width' => '427', |
---|
1040 | 'embed-height' => '300', |
---|
1041 | ), |
---|
1042 | array( |
---|
1043 | 'title' => 'RuTube', |
---|
1044 | 'website' => 'http://www.rutube.ru', |
---|
1045 | 'url-match' => 'http://(?:www\.|video\.)?rutube\.ru/(?:tracks/\d+?\.html\?(?:(?:pos|related)=1&(?:amp;)?)?v=)?([0-9a-f]{32})', |
---|
1046 | 'embed-src' => 'http://video.rutube.ru/$2', |
---|
1047 | 'embed-width' => '470', |
---|
1048 | 'embed-height' => '353', |
---|
1049 | ), |
---|
1050 | array( |
---|
1051 | 'title' => 'ScreenToaster', |
---|
1052 | 'website' => 'http://www.screentoaster.com', |
---|
1053 | 'url-match' => 'http://(?:www\.)?screentoaster\.com/watch/([0-9a-zA-Z]+)', |
---|
1054 | 'embed-src' => 'http://www.screentoaster.com/swf/STPlayer.swf?video=$2', |
---|
1055 | 'embed-width' => '425', |
---|
1056 | 'embed-height' => '344', |
---|
1057 | 'flashvars' => 'video=$2', |
---|
1058 | ), |
---|
1059 | array( |
---|
1060 | 'title' => 'SevenLoad', |
---|
1061 | 'website' => 'http://www.sevenload.com', |
---|
1062 | 'url-match' => 'http://((?:en|tr|de|www)\.)?sevenload\.com/(?:videos|videolar)/([0-9a-z]{1,8})', |
---|
1063 | 'embed-src' => 'http://$2sevenload.com/pl/$3/425x350/swf', |
---|
1064 | 'embed-width' => '425', |
---|
1065 | 'embed-height' => '350', |
---|
1066 | ), |
---|
1067 | array( |
---|
1068 | 'title' => 'ShareView', |
---|
1069 | 'website' => 'http://www.shareview.us', |
---|
1070 | 'url-match' => 'http://(?:www\.)?shareview\.us/video/([0-9]{1,10})/', |
---|
1071 | 'embed-src' => 'http://www.shareview.us/nvembed.swf?key=$2', |
---|
1072 | 'embed-width' => '540', |
---|
1073 | 'embed-height' => '380', |
---|
1074 | ), |
---|
1075 | array( |
---|
1076 | 'title' => 'Sharkle', |
---|
1077 | 'website' => 'http://www.sharkle.com', |
---|
1078 | 'url-match' => '(http://(?:www\.)?sharkle\.com/externalPlayer/(?:(?:(?:[0-9a-z]{1,25})/){3}))', |
---|
1079 | 'embed-src' => '$2', |
---|
1080 | 'embed-width' => '340', |
---|
1081 | 'embed-height' => '310', |
---|
1082 | ), |
---|
1083 | array( |
---|
1084 | 'title' => 'Smotri', |
---|
1085 | 'website' => 'http://www.smotri.com', |
---|
1086 | 'url-match' => 'http://(?:www\.)?smotri\.com/video/view/\?id=v([0-9a-f]{10})', |
---|
1087 | 'embed-src' => 'http://pics.smotri.com/scrubber_custom8.swf?file=$2&bufferTime=3&autoStart=false&str_lang=eng&xmlsource=http%3A%2F%2Fpics.smotri.com%2Fcskins%2Fblue%2Fskin_color_lightaqua.xml&xmldatasource=http%3A%2F%2Fpics.smotri.com%2Fskin_ng.xml', |
---|
1088 | 'embed-width' => '400', |
---|
1089 | 'embed-height' => '330', |
---|
1090 | ), |
---|
1091 | array( |
---|
1092 | 'title' => 'Snotr', |
---|
1093 | 'website' => 'http://www.snotr.com', |
---|
1094 | 'url-match' => 'http://(?:www\.|videos\.)?snotr\.com/(?:player\.swf\?video=|)?(?:video|embed)/([0-9]{1,8})', |
---|
1095 | 'embed-src' => 'http://videos.snotr.com/player.swf?video=$2&embedded=true&autoplay=false', |
---|
1096 | 'embed-width' => '400', |
---|
1097 | 'embed-height' => '330', |
---|
1098 | ), |
---|
1099 | array( |
---|
1100 | 'title' => 'SouthPark Studios', |
---|
1101 | 'website' => 'http://www.southparkstudios.com', |
---|
1102 | 'url-match' => 'http://(?:www\.)?southparkstudios\.com/clips/([0-9]{1,10})', |
---|
1103 | 'embed-src' => 'http://media.mtvnservices.com/mgid:cms:item:southparkstudios.com:$2:', |
---|
1104 | 'embed-width' => '480', |
---|
1105 | 'embed-height' => '360', |
---|
1106 | ), |
---|
1107 | array( |
---|
1108 | 'title' => 'Space.tv.cctv.com', |
---|
1109 | 'website' => 'http://space.tv.cctv.com', |
---|
1110 | 'url-match' => 'http://((?:(?:[a-z0-9]{1,10})\.){0,2})?cctv\.com/act/video\.jsp\?videoId=VIDE([0-9]{16})', |
---|
1111 | 'embed-src' => 'http://$2cctv.com/playcfg/player_new.swf?id=VIDE$3&site=http://$2cctv.com&method=http', |
---|
1112 | 'embed-width' => '500', |
---|
1113 | 'embed-height' => '400', |
---|
1114 | ), |
---|
1115 | array( |
---|
1116 | 'title' => 'Spike', |
---|
1117 | 'website' => 'http://www.spike.com', |
---|
1118 | 'url-match' => 'http://(?:www\.)?spike\.com/(?:video/(?:[0-9a-z_-]{2,30})?/|efp\?flvbaseclip=)([0-9]{4,12})', |
---|
1119 | 'embed-src' => 'http://www.spike.com/efp?flvbaseclip=$2&', |
---|
1120 | 'embed-width' => '448', |
---|
1121 | 'embed-height' => '365', |
---|
1122 | ), |
---|
1123 | array( |
---|
1124 | 'title' => 'Songza', |
---|
1125 | 'website' => 'http://www.songza.com', |
---|
1126 | 'url-match' => '(http://(?:www\.)?songza\.com/e/listen\?(?:zName=(?:[0-9a-z_\%-]*?)&(?:amp;)?)?zId=(?:[0-9a-z_-]{16}))', |
---|
1127 | 'embed-src' => '$2&zAutostart=false&zType=flv', |
---|
1128 | 'embed-width' => '425', |
---|
1129 | 'embed-height' => '114', |
---|
1130 | ), |
---|
1131 | array( |
---|
1132 | 'title' => 'Streetfire', |
---|
1133 | 'website' => 'http://www.streetfire.net', |
---|
1134 | 'url-match' => 'http://(?:www\.|videos\.)?streetfire\.net/video/(?:[0-9a-z\-_]*)\.htm', |
---|
1135 | 'fetch-match' => '<link rel="video_src" href="([A-z:\/\.0-9-_=?]*)', |
---|
1136 | 'embed-src' => '$2', |
---|
1137 | 'embed-width' => '428', |
---|
1138 | 'embed-height' => '352', |
---|
1139 | ), |
---|
1140 | array( |
---|
1141 | 'title' => 'StupidVideos', |
---|
1142 | 'website' => 'http://www.stupidvideos.com', |
---|
1143 | 'url-match' => 'http://(?:www\.|images\.)?stupidvideos\.com/(?:video/(?:[^"\#]*?)\#|images/player/player\.swf\?sa=1&(?:amp;)?sk=7&(?:amp;)?si=2&(?:amp;)?i=)([0-9]{1,10})', |
---|
1144 | 'embed-src' => 'http://images.stupidvideos.com/2.0.2/swf/video.swf?sa=1&sk=7&si=2&i=$2', |
---|
1145 | 'embed-width' => '451', |
---|
1146 | 'embed-height' => '433', |
---|
1147 | ), |
---|
1148 | array( |
---|
1149 | 'title' => 'TagTélé', |
---|
1150 | 'website' => 'http://www.tagtele.com', |
---|
1151 | 'url-match' => 'http://www\.tagtele\.com/(?:v/|videos/voir/)([0-9]{1,12})', |
---|
1152 | 'embed-src' => 'http://www.tagtele.com/v/$2', |
---|
1153 | 'embed-width' => '425', |
---|
1154 | 'embed-height' => '350', |
---|
1155 | ), |
---|
1156 | array( |
---|
1157 | 'title' => 'Ted.com', |
---|
1158 | 'website' => 'http://www.ted.com', |
---|
1159 | 'url-match' => 'http://(?:www\.)?ted\.com/(index.php/)?talks.*/[a-z0-9\-_]*.html', |
---|
1160 | 'fetch-match' => 'download\.ted\.com/talks/([a-z0-9\-_]+)\_([0-9][0-9][0-9][0-9][a-z]?).mp4', |
---|
1161 | 'embed-src' => 'http://video.ted.com/assets/player/swf/EmbedPlayer.swf', |
---|
1162 | 'embed-width' => '446', |
---|
1163 | 'embed-height' => '326', |
---|
1164 | 'flashvars' => 'vu=http://video.ted.com/talk/stream/$3/Blank/$2_$3-320k.mp4&su=http://images.ted.com/images/ted/tedindex/embed-posters/$2.embed_thumbnail.jpg&vw=432&vh=240', |
---|
1165 | ), |
---|
1166 | |
---|
1167 | |
---|
1168 | |
---|
1169 | array( |
---|
1170 | 'title' => 'The Onion', |
---|
1171 | 'website' => 'http://www.theonion.com', |
---|
1172 | 'url-match' => 'http://(?:www\.)?theonion\.com/video/.*', |
---|
1173 | 'fetch-match' => '\/video_embed/\?id\=([0-9]+)', |
---|
1174 | 'embed-width' => '480', |
---|
1175 | 'embed-height' => '270', |
---|
1176 | 'iframe-player' => 'http://www.theonion.com/video_embed/?id=$2', |
---|
1177 | ), |
---|
1178 | array( |
---|
1179 | 'title' => 'PDF file', |
---|
1180 | 'website' => '', |
---|
1181 | 'url-match' => '(.*\.(xls|xlsx|ppt|pptx|pages|ai|psd|tiff|dxf|eps|ps))$', // pdf|doc|docx dsactivs |
---|
1182 | 'embed-width' => '480', |
---|
1183 | 'embed-height' => '400', |
---|
1184 | 'iframe-player' => 'http://docs.google.com/gview?url=$2&embedded=true', |
---|
1185 | ), |
---|
1186 | array( |
---|
1187 | 'title' => 'TinyPic', |
---|
1188 | 'website' => 'http://www.tinypic.com', |
---|
1189 | 'url-match' => 'http://(?:www\.)?tinypic\.com/player\.php\?v=([0-9a-z-&=]{1,12})', |
---|
1190 | 'embed-src' => 'http://v5.tinypic.com/player.swf?file=$2', |
---|
1191 | 'embed-width' => '440', |
---|
1192 | 'embed-height' => '420', |
---|
1193 | ), |
---|
1194 | array( |
---|
1195 | 'title' => 'Todays Big Thing', |
---|
1196 | 'website' => 'http://www.todaysbigthing.com', |
---|
1197 | 'url-match' => 'http://(?:www|entertainment|sports|technology|music|funnyvideos)\.todaysbigthing\.com/[0-9]{4}(?:/[0-9]{2}){2}', |
---|
1198 | 'fetch-match' => 'http://(?:www|entertainment|sports|technology|music|funnyvideos)\.todaysbigthing\.com/betamax/betamax\.internal\.swf\?item_id=([0-9]{1,6})', |
---|
1199 | 'embed-src' => 'http://www.todaysbigthing.com/betamax/betamax.swf?item_id=$2&fullscreen=1', |
---|
1200 | 'embed-width' => '480', |
---|
1201 | 'embed-height' => '360', |
---|
1202 | ), |
---|
1203 | array( |
---|
1204 | 'title' => 'TrailerAddict', |
---|
1205 | 'website' => 'http://www.traileraddict.com', |
---|
1206 | 'url-match' => 'http://(?:www\.)?traileraddict\.com/trailer/', |
---|
1207 | 'fetch-match' => '(http://(?:www\.)?traileraddict\.com/em(?:d|b)/(?:[0-9]{1,10}))', |
---|
1208 | 'embed-src' => '$2', |
---|
1209 | 'embed-width' => '450', |
---|
1210 | 'embed-height' => '279', |
---|
1211 | ), |
---|
1212 | array( |
---|
1213 | 'title' => 'TrTube', |
---|
1214 | 'website' => 'http://www.trtube.com', |
---|
1215 | 'url-match' => 'http://(?:www\.)?trtube\.com/izle\.php\?v=([a-z]{1,12})', |
---|
1216 | 'embed-src' => 'http://www.trtube.com/mediaplayer_3_15.swf?file=http://www.trtube.com/vid2/89457.flv&image=http://www.trimg.com/vi/89457.gif&autostart=false', |
---|
1217 | 'embed-width' => '425', |
---|
1218 | 'embed-height' => '350', |
---|
1219 | ), |
---|
1220 | array( |
---|
1221 | 'title' => 'Trilulilu', |
---|
1222 | 'website' => 'http://www.trilulilu.ro', |
---|
1223 | 'url-match' => 'http://(?:www\.)?trilulilu\.ro/([0-9a-z_-]*?)/([0-9a-f]{14})', |
---|
1224 | 'fetch-match' => '<link rel="video_src" href="([A-z:\/\.0-9-_=?]*)\?autoplay', |
---|
1225 | 'embed-src' => '$2', |
---|
1226 | 'embed-width' => '440', |
---|
1227 | 'embed-height' => '362', |
---|
1228 | ), |
---|
1229 | array( |
---|
1230 | 'title' => 'Tu', |
---|
1231 | 'website' => 'http://www.tu.tv', |
---|
1232 | 'title' => 'Tu.tv', |
---|
1233 | 'url-match' => '(http://tu\.tv/tutvweb\.swf\?xtp=(?:[0-9]{1,10}))', |
---|
1234 | 'embed-src' => '$2', |
---|
1235 | 'embed-width' => '425', |
---|
1236 | 'embed-height' => '350', |
---|
1237 | ), |
---|
1238 | array( |
---|
1239 | 'title' => 'Tudou', |
---|
1240 | 'website' => 'http://www.tudou.com', |
---|
1241 | 'url-match' => 'http://(?:www\.)?tudou\.com/(?:programs/view/|v/)([a-z0-9-]{1,12})', |
---|
1242 | 'embed-src' => 'http://www.tudou.com/v/$2', |
---|
1243 | 'embed-width' => '400', |
---|
1244 | 'embed-height' => '300', |
---|
1245 | ), |
---|
1246 | array( |
---|
1247 | 'title' => 'Tumblr (Music)', |
---|
1248 | 'website' => 'http://www.tumblr.com', |
---|
1249 | 'url-match' => 'http://[a-z0-9-_]{2,30}\.tumblr\.com/post/[0-9]{3,10}/', |
---|
1250 | 'fetch-match' => '<embed type="application/x-shockwave-flash" src="(http://[a-z0-9-_./]*\?audio_file=http://www\.tumblr\.com/audio_file/[0-9]{5,8}/[a-z0-9]{24})', |
---|
1251 | 'embed-src' => '$2&color=e4e4e4', |
---|
1252 | 'embed-width' => '207', |
---|
1253 | 'embed-height' => '27', |
---|
1254 | ), |
---|
1255 | array( |
---|
1256 | 'title' => 'Twitvid', |
---|
1257 | 'website' => 'http://www.twitvid.com/', |
---|
1258 | 'url-match' => 'http://(?:www\.)?twitvid\.com/([0-9a-z]{1,10})', |
---|
1259 | 'embed-src' => 'http://www.twitvid.com/player/$2', |
---|
1260 | 'embed-width' => '425', |
---|
1261 | 'embed-height' => '344', |
---|
1262 | ), |
---|
1263 | array( |
---|
1264 | 'title' => 'UOL VideoLog', |
---|
1265 | 'website' => 'http://videolog.uol.com.br', |
---|
1266 | 'url-match' => 'http://videolog\.uol\.com\.br/video(?:\?|\.php\?id=)([0-9]{1,9})', |
---|
1267 | 'embed-src' => 'http://www.videolog.tv/swfs/externo_api.swf?v=$2&id_video=$2', |
---|
1268 | 'embed-width' => '512', |
---|
1269 | 'embed-height' => '384', |
---|
1270 | ), |
---|
1271 | array( |
---|
1272 | 'title' => 'u-Tube', |
---|
1273 | 'website' => 'http://www.u-tube.ru', |
---|
1274 | 'url-match' => 'http://(?:www\.)?u-tube\.ru/(?:playlist\.php\?id=|pages/video/)([0-9]{1,12})', |
---|
1275 | 'embed-src' => 'http://www.u-tube.ru/upload/others/flvplayer.swf?file=http://www.u-tube.ru/playlist.php?id=$2&width=400&height=300', |
---|
1276 | 'embed-width' => '400', |
---|
1277 | 'embed-height' => '300', |
---|
1278 | ), |
---|
1279 | array( |
---|
1280 | 'title' => 'VideoJug', |
---|
1281 | 'website' => 'http://www.videojug.com', |
---|
1282 | 'url-match' => 'http://(?:www\.)videojug\.com/film/', |
---|
1283 | 'fetch-match' => 'http:\/\/www.videojug.com\/player\/videoJugPlayer.swf\?id=((?:[0-9a-f]{1,12}-?){5})', |
---|
1284 | 'embed-src' => 'http://www.videojug.com/views/player/Player.swf', |
---|
1285 | 'embed-width' => '400', |
---|
1286 | 'embed-height' => '345', |
---|
1287 | 'flashvars' => 'embedded=true&ClientType=0&id=$2&type=film&host=http%3a%2f%2fwww.videojug.com&ar=16_9', |
---|
1288 | ), |
---|
1289 | array( |
---|
1290 | 'title' => 'videos.sapo', |
---|
1291 | 'website' => 'http://videos.sapo.pt', |
---|
1292 | 'url-match' => 'http://(www\.|(?:(?:(?:[0-9a-z]{3,12})\.){1,2}))?sapo\.pt/([0-9a-z]{20})', |
---|
1293 | 'embed-src' => 'http://$2sapo.pt/play?file=http://$2sapo.pt/$3/mov/1', |
---|
1294 | 'embed-width' => '400', |
---|
1295 | 'embed-height' => '322', |
---|
1296 | ), |
---|
1297 | array( |
---|
1298 | 'title' => 'Vidiac', |
---|
1299 | 'website' => 'http://www.vidiac.com', |
---|
1300 | 'url-match' => 'http://(?:www\.)?vidiac\.com/video/((?:[0-9a-z]{8})(?:(?:-(?:[0-9a-z]{4})){3})-(?:[0-9a-z]{12}))\.htm', |
---|
1301 | 'embed-src' => 'http://www.vidiac.com/vidiac.swf?video=$2', |
---|
1302 | 'embed-width' => '428', |
---|
1303 | 'embed-height' => '352', |
---|
1304 | ), |
---|
1305 | array( |
---|
1306 | 'title' => 'Viddler', |
---|
1307 | 'website' => 'http://www.viddler.com', |
---|
1308 | 'url-match' => '(http://www\.viddler\.com/(?:player|simple)/(?:[0-9a-f]{8})/)', |
---|
1309 | 'embed-src' => '$2', |
---|
1310 | 'embed-width' => '437', |
---|
1311 | 'embed-height' => '288', |
---|
1312 | ), |
---|
1313 | array( |
---|
1314 | 'title' => 'Videa', |
---|
1315 | 'website' => 'http://www.videa.hu', |
---|
1316 | 'url-match' => 'http://(?:www\.)?videa\.hu/(?:(?:[^"]*)-|flvplayer\.swf\?v=)([0-9a-z]{16})', |
---|
1317 | 'embed-src' => 'http://videa.hu/flvplayer.swf?v=$2', |
---|
1318 | 'embed-width' => '434', |
---|
1319 | 'embed-height' => '357', |
---|
1320 | ), |
---|
1321 | array( |
---|
1322 | 'title' => 'VidiLife', |
---|
1323 | 'website' => 'http://www.vidilife.com', |
---|
1324 | 'url-match' => '(http://(?:www\.)?vidilife\.com/flash/flvplayer\.swf\?xml=http://(?:www\.)?vidilife\.com/media/play_flash_xml\.cfm\?id=(?:[0-9a-f]{8})-(?:[0-9a-f]{4})-(?:[0-9a-f]{4})-(?:[0-9a-f]{4})-(?:[0-9a-f]{1}))', |
---|
1325 | 'embed-src' => '$2', |
---|
1326 | 'embed-width' => '445', |
---|
1327 | 'embed-height' => '363', |
---|
1328 | ), |
---|
1329 | array( |
---|
1330 | 'title' => 'VidMax', |
---|
1331 | 'website' => 'http://www.vidmax.com', |
---|
1332 | 'url-match' => 'http://(www\.)?vidmax\.com/(?:index\.php/)?videos?/(?:view/)?([0-9]{1,10})', |
---|
1333 | 'embed-src' => 'http://www.vidmax.com/player.swf', |
---|
1334 | 'embed-width' => '400', |
---|
1335 | 'embed-height' => '300', |
---|
1336 | 'flashvars' => 'file=http://www.vidmax.com/media/video/$3.flv&streamer=lighttpd&autostart=false&stretching=fill' |
---|
1337 | ), |
---|
1338 | array( |
---|
1339 | 'title' => 'Vidivodo', |
---|
1340 | 'website' => 'http://www.vidivodo.com', |
---|
1341 | 'url-match' => 'http://www\.vidivodo\.com/VideoPlayerShare\.swf\?lang=([0-9a-z]*?)&(?:amp;)?vidID=([0-9]*?)&(?:amp;)?vCode=v([0-9]*?)&(?:amp;)?dura=([0-9]*?)&(?:amp;)?File=(?:http://video(?:[0-9]*?)\.vidivodo\.com/)?(vidservers/server(?:[0-9]*?)/videos/(?:[0-9]{4})/(?:[0-9]{2})/(?:[0-9]{2})/(?:[0-9]*?)/v(?:[0-9]*?)\.flv)', |
---|
1342 | 'embed-src' => 'http://www.vidivodo.com/VideoPlayerShare.swf?lang=$2&vidID=$3&vCode=v$4&dura=$5&File=$6', |
---|
1343 | 'embed-width' => '425', |
---|
1344 | 'embed-height' => '343', |
---|
1345 | ), |
---|
1346 | array( |
---|
1347 | 'title' => 'VoiceThread', |
---|
1348 | 'website' => 'http://www.voicethread.com', |
---|
1349 | 'url-match' => 'http://(?:www\.)?voicethread\.com/(?:share/|book\.swf\?b=|#q\.b)([0-9]{1,10})', |
---|
1350 | 'embed-src' => 'http://www.voicethread.com/book.swf?b=$2', |
---|
1351 | 'embed-width' => '480', |
---|
1352 | 'embed-height' => '360', |
---|
1353 | ), |
---|
1354 | array( |
---|
1355 | 'title' => 'VSocial (Type1)', |
---|
1356 | 'website' => 'http://www.vsocial.com/vsandbox/', |
---|
1357 | 'url-match' => 'http://(?:www\.|static\.)?vsocial\.com/(?:video/|flash/ups\.swf)\?d=([0-9]{1,8})', |
---|
1358 | 'embed-src' => 'http://static.vsocial.com/flash/ups.swf?d=$2&a=0', |
---|
1359 | 'embed-width' => '410', |
---|
1360 | 'embed-height' => '400', |
---|
1361 | ), |
---|
1362 | array( |
---|
1363 | 'title' => 'VSocial (Type2)', |
---|
1364 | 'website' => 'http://www.vsocial.com/vsandbox/', |
---|
1365 | 'url-match' => '(http://(?:www\.)?vsocial\.com/ups/(?:[a-f0-9]{32}))', |
---|
1366 | 'embed-src' => '$2', |
---|
1367 | 'embed-width' => '410', |
---|
1368 | 'embed-height' => '400', |
---|
1369 | ), |
---|
1370 | array( |
---|
1371 | 'title' => 'WeGame', |
---|
1372 | 'website' => 'http://www.wegame.com', |
---|
1373 | 'url-match' => 'http://(?:www\.)?wegame\.com/watch/([0-9a-z_-]*?)/', |
---|
1374 | 'embed-src' => 'http://wegame.com/static/flash/player2.swf?tag=$2', |
---|
1375 | 'embed-width' => '480', |
---|
1376 | 'embed-height' => '387', |
---|
1377 | ), |
---|
1378 | array( |
---|
1379 | 'title' => 'Webshots (Slideshows)', |
---|
1380 | 'website' => 'http://www.webshots.com', |
---|
1381 | 'url-match' => 'http://[a-z0-9\-_]*\.webshots\.com/slideshow/([a-z0-9]*)', |
---|
1382 | 'embed-src' => 'http://p.webshots.com/flash/smallslideshow.swf', |
---|
1383 | 'embed-width' => '425', |
---|
1384 | 'embed-height' => '384', |
---|
1385 | 'flashvars' => 'playList=http%3A%2F%2Fcommunity.webshots.com%2Fslideshow%2Fmeta%2F$2%3Finline%3Dtrue&inlineUrl=http%3A%2F%2Fcommunity.webshots.com%2FinlinePhoto%26src%3Ds%26referPage%3Dhttp%3A%2F%2Fgood-times.webshots.com%2Fslideshow%2F$2&postRollContent=http%3A%2F%2Fp.webshots.com%2Fflash%2Fws_postroll.swf&shareUrl=http%3A%2F%2Fgood-times.webshots.com%2Fslideshow%2F$2&audio=on&audioVolume=33&autoPlay=false&transitionSpeed=5&startIndex=0&panzoom=on&deployed=true', |
---|
1386 | ), |
---|
1387 | array( |
---|
1388 | 'title' => 'Yahoo Video', |
---|
1389 | 'website' => 'http://video.yahoo.com', |
---|
1390 | 'url-match' => 'http://(?:(?:www|uk|fr|it|es|br|au|mx|de|ca)\.)?video\.yahoo\.com/watch/([0-9]{1,12})/([0-9]{1,12})', |
---|
1391 | 'embed-src' => 'http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.1.15', |
---|
1392 | 'embed-width' => '512', |
---|
1393 | 'embed-height' => '322', |
---|
1394 | 'flashvars' => 'id=$3&vid=$2&lang=en-us&intl=us&embed=1' |
---|
1395 | ), |
---|
1396 | array( |
---|
1397 | 'title' => 'Yahoo Video HK', |
---|
1398 | 'website' => 'http://hk.video.yahoo.com', |
---|
1399 | 'url-match' => 'http://(?:w\.video\.)?hk\.video\.yahoo\.(?:com|net)/video/(?:dplayer\.html\?vid=|video\.html\?id=)([0-9]{1,10})', |
---|
1400 | 'embed-src' => 'http://w.video.hk.yahoo.net/video/dplayer.html?vid=$2', |
---|
1401 | 'embed-width' => '420', |
---|
1402 | 'embed-height' => '370', |
---|
1403 | ), |
---|
1404 | array( |
---|
1405 | 'title' => 'Yahoo Music Videos', |
---|
1406 | 'website' => 'http://music.yahoo.com', |
---|
1407 | 'url-match' => 'http://(?:new\.)?(?:(?:uk|fr|it|es|br|au|mx|de|ca)\.)?music\.yahoo\.com/[^0-9]*([0-9]{1,12})$', |
---|
1408 | 'embed-src' => 'http://d.yimg.com/cosmos.bcst.yahoo.com/up/fop/embedflv/swf/fop.swf?id=v$2&eID=0000000&lang=us&enableFullScreen=0&shareEnable=1', |
---|
1409 | 'embed-width' => '400', |
---|
1410 | 'embed-height' => '255', |
---|
1411 | ), |
---|
1412 | array( |
---|
1413 | 'title' => 'YouKu', |
---|
1414 | 'website' => 'http://www.youku.com', |
---|
1415 | 'url-match' => 'http://(?:v\.youku\.com/v_show/id_|player\.youku\.com/player\.php/sid/)([0-9a-z]{6,14})', |
---|
1416 | 'embed-src' => 'http://player.youku.com/player.php/sid/$2=/v.swf', |
---|
1417 | 'embed-width' => '450', |
---|
1418 | 'embed-height' => '372', |
---|
1419 | ), |
---|
1420 | array( |
---|
1421 | 'title' => 'You.Video.Sina.com.cn', |
---|
1422 | 'website' => 'http://you.video.sina.com.cn', |
---|
1423 | 'url-match' => 'http://(?:vhead\.blog|you\.video)\.sina\.com\.cn/(?:player/(?:[^"]*?)vid=|b/)([0-9]{5,12})(?:-|&(?:amp;)?uid=)([0-9]{5,12})', |
---|
1424 | 'embed-src' => 'http://vhead.blog.sina.com.cn/player/outer_player.swf?auto=0&vid=$2&uid=$3', |
---|
1425 | 'embed-width' => '480', |
---|
1426 | 'embed-height' => '370', |
---|
1427 | ), |
---|
1428 | array( |
---|
1429 | 'title' => 'TF1', |
---|
1430 | 'website' => 'http://www.tf1.fr', |
---|
1431 | 'url-match' => 'http://(videos\.)?tf1\.fr\/.*', |
---|
1432 | 'fetch-match' => 'www\.wat\.tv\/swfpu\/([A-z:/\.0-9-_=]*)', |
---|
1433 | 'embed-src' => 'http://www.wat.tv/swfpu/$2', |
---|
1434 | 'embed-width' => '480', |
---|
1435 | 'embed-height' => '270' |
---|
1436 | ), |
---|
1437 | array( |
---|
1438 | 'title' => 'Google Maps', |
---|
1439 | 'website' => 'http://maps.google.com', |
---|
1440 | 'url-match' => 'maps\.google\.com\/(maps)?\?(.*)', |
---|
1441 | 'embed-width' => '440', |
---|
1442 | 'embed-height' => '340', |
---|
1443 | 'iframe-player' => 'http://maps.google.com/maps?$3&output=embed', |
---|
1444 | ), |
---|
1445 | array( |
---|
1446 | 'title' => 'Pastebin', |
---|
1447 | 'website' => 'http://pastebin.com', |
---|
1448 | 'url-match' => 'pastebin\.com\/(raw\.php\?i\=)?(.*)', |
---|
1449 | 'embed-width' => '440', |
---|
1450 | 'embed-height' => '150', |
---|
1451 | 'iframe-player' => 'http://pastebin.com/embed_iframe.php?i=$3', |
---|
1452 | ), |
---|
1453 | array( |
---|
1454 | 'title' => 'Deezer', |
---|
1455 | 'website' => 'http://www.deezer.com', |
---|
1456 | 'url-match' => 'deezer\.com\/(fr\/)?music\/track\/([0-9]*)', |
---|
1457 | 'embed-width' => '220', |
---|
1458 | 'embed-height' => '55', |
---|
1459 | 'embed-src' => 'http://cdn-files.deezer.com/swf/singlePlayer-v10.swf?idSong=$3', |
---|
1460 | ), |
---|
1461 | array( |
---|
1462 | 'title' => 'Deezer', |
---|
1463 | 'website' => 'http://www.deezer.com', |
---|
1464 | 'url-match' => 'deezer\.com\/listen\-([0-9]*)', |
---|
1465 | 'embed-width' => '220', |
---|
1466 | 'embed-height' => '55', |
---|
1467 | 'embed-src' => 'http://cdn-files.deezer.com/swf/singlePlayer-v10.swf?idSong=$2', |
---|
1468 | ), |
---|
1469 | array( |
---|
1470 | 'title' => 'Twitpic', |
---|
1471 | 'website' => 'http://www.twitpic.com', |
---|
1472 | 'url-match' => 'twitpic\.com\/([a-z0-9]*)\/?', |
---|
1473 | 'image-src' => 'http://twitpic.com/show/full/$2', |
---|
1474 | ), |
---|
1475 | array( |
---|
1476 | 'title' => 'MixCloud', |
---|
1477 | 'website' => 'http://www.mixcloud.com', |
---|
1478 | 'url-match' => '(http:\/\/www\.mixcloud\.com\/.*)', |
---|
1479 | 'embed-width' => '200', |
---|
1480 | 'embed-height' => '200', |
---|
1481 | 'embed-src' => 'http://www.mixcloud.com/media/swf/player/mixcloudLoader.swf?feed=$2', |
---|
1482 | ), |
---|
1483 | array( |
---|
1484 | 'title' => 'TrailerSpy', |
---|
1485 | 'website' => 'http://www.trailerspy.com', |
---|
1486 | 'url-match' => 'http://www\.trailerspy\.com/trailer/([0-9]+)/.*', |
---|
1487 | 'embed-width' => '480', |
---|
1488 | 'embed-height' => '295', |
---|
1489 | 'embed-src' => 'http://www.trailerspy.com/xmoov_flv/player/$2/va_l/', |
---|
1490 | ), |
---|
1491 | array( |
---|
1492 | 'title' => 'Gogoyoko', |
---|
1493 | 'website' => 'http://www.gogoyoko.com', |
---|
1494 | 'url-match' => 'http://www\.gogoyoko\.com/song/([0-9]+)', |
---|
1495 | 'embed-width' => '460', |
---|
1496 | 'embed-height' => '105', |
---|
1497 | 'embed-src' => 'http://www.gogoyoko.com/object/widget_player.swf?songId=$2', |
---|
1498 | ), |
---|
1499 | array( |
---|
1500 | 'title' => 'Zero-Inch', |
---|
1501 | 'website' => 'http://www.zero-inch.com', |
---|
1502 | 'url-match' => 'http:\/\/www\.zero\-inch\.com\/.*\/([0-9]+)', |
---|
1503 | 'embed-width' => '200', |
---|
1504 | 'embed-height' => '200', |
---|
1505 | 'embed-src' => 'http://www.zero-inch.com/widgets/release_xl.swf?productId=$2', |
---|
1506 | ), |
---|
1507 | array( |
---|
1508 | 'title' => 'NatoChannel', |
---|
1509 | 'website' => 'http://www.natochannel.tv', |
---|
1510 | 'url-match' => 'http://www\.natochannel\.tv/\?uri\=channels/([0-9]+)/([0-9]+)', |
---|
1511 | 'embed-width' => '480', |
---|
1512 | 'embed-height' => '400', |
---|
1513 | 'embed-src' => 'http://media.kyte.tv/flash/MarbachLoader.swf?buildNum=110819_1140&c=$2&s=$3', |
---|
1514 | ), |
---|
1515 | array( |
---|
1516 | 'title' => 'Arte Video', |
---|
1517 | 'website' => 'http://videos.arte.tv', |
---|
1518 | 'url-match' => '(http://videos\.arte\.tv/fr/videos/(.*\_\-([0-9]+))\.html)', |
---|
1519 | 'embed-width' => '450', |
---|
1520 | 'embed-height' => '303', |
---|
1521 | 'embed-src' => 'http://videos.arte.tv/videoplayer.swf?mode=prod&lang=fr&configFileUrl=http%3A//videos%2Earte%2Etv/cae/static/flash/player/config%2Exml&localizedPathUrl=http%3A//videos%2Earte%2Etv/cae/static/flash/player/&videoId=$4&autoPlay=true&admin=false&videorefFileUrl=http%3A//videos%2Earte%2Etv/fr/do%5Fdelegate/videos/$3%2Cview%2CasPlayerXml%2Exml&embed=true&autoPlay=false', |
---|
1522 | ), |
---|
1523 | array( |
---|
1524 | 'title' => 'BandCamp (track)', |
---|
1525 | 'website' => 'http://www.bandcamp.com', |
---|
1526 | 'url-match' => 'http://(.*\.)?bandcamp\.com/track/.*', |
---|
1527 | 'fetch-match' => 'http://bandcamp\.com/EmbeddedPlayer\.swf/size=venti/track\=([0-9]*)/', |
---|
1528 | 'embed-width' => '300', |
---|
1529 | 'embed-height' => '100', |
---|
1530 | 'iframe-player' => 'http://bandcamp.com/EmbeddedPlayer/v=2/track=$2/size=grande/bgcol=FFFFFF/linkcol=4285BB/transparent=true/', |
---|
1531 | ), |
---|
1532 | array( |
---|
1533 | 'title' => 'BandCamp (album)', |
---|
1534 | 'website' => 'http://www.bandcamp.com', |
---|
1535 | 'url-match' => 'http://(.*\.)?bandcamp\.com/album/.*', |
---|
1536 | 'fetch-match' => 'http://bandcamp\.com/EmbeddedPlayer\.swf/size=venti/album\=([0-9]*)/', |
---|
1537 | 'embed-width' => '300', |
---|
1538 | 'embed-height' => '410', |
---|
1539 | 'iframe-player' => 'http://bandcamp.com/EmbeddedPlayer/v=2/album=$2/size=grande3/bgcol=FFFFFF/linkcol=4285BB/transparent=true/', |
---|
1540 | ), |
---|
1541 | array( |
---|
1542 | 'title' => 'Arte radio', |
---|
1543 | 'website' => 'www.arteradio.com', |
---|
1544 | 'url-match' => 'http://(.*\.)?arteradio\.com/son.html\?([0-9]+)', |
---|
1545 | 'embed-width' => '182', |
---|
1546 | 'embed-height' => '247', |
---|
1547 | 'embed-src' => 'http://download.arteradio.com/flash/arteradiov4player.swf?mediaId=$3&v=102', |
---|
1548 | ), |
---|
1549 | |
---|
1550 | array( |
---|
1551 | 'title' => 'Qwiki', |
---|
1552 | 'website' => 'http://www.qwiki.com', |
---|
1553 | 'url-match' => 'http://www\.qwiki\.com/q/(.*)', |
---|
1554 | 'embed-width' => '480', |
---|
1555 | 'embed-height' => '255', |
---|
1556 | 'iframe-player' => 'http://www.qwiki.com/embed/$2', |
---|
1557 | ), |
---|
1558 | array( /* http://500px.com/photo/4778494 */ |
---|
1559 | 'title' => '500px', |
---|
1560 | 'website' => 'http://500px.com', |
---|
1561 | 'url-match' => 'http://(.*\.)?500px\.com/photo/.*', |
---|
1562 | 'fetch-match' => '<meta property=\"og:image\" content=\"([^\"]*)\"\/>', |
---|
1563 | 'embed-width' => '280', |
---|
1564 | 'embed-height' => '280', |
---|
1565 | 'image-src' => '$2', |
---|
1566 | ), |
---|
1567 | |
---|
1568 | /* |
---|
1569 | array( |
---|
1570 | 'title' => 'Radionomy', |
---|
1571 | 'website' => 'http://www.radionomy.com', |
---|
1572 | 'fetch-match' => 'BannerEmbed\.swf\?RadUID=([a-z0-9\-]*)&', |
---|
1573 | 'embed-width' => '240', |
---|
1574 | 'embed-height' => '300', |
---|
1575 | 'embed-src' => 'http://www.radionomy.com/Flash/BannerEmbed.swf?RadUID=$2&lang=fr&autoplay=true', |
---|
1576 | ), |
---|
1577 | */ |
---|
1578 | |
---|
1579 | array( |
---|
1580 | 'title' => 'Local Content', |
---|
1581 | 'website' => 'localhost', |
---|
1582 | 'url-match' => '__local__(.*)', |
---|
1583 | 'embed-src' => '$2', |
---|
1584 | 'embed-width' => '425', |
---|
1585 | 'embed-height' => '344', |
---|
1586 | ), |
---|
1587 | ); |
---|
1588 | ?> |
---|