forked from Whiteknight/mediawiki-embedvideo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
EmbedVideo.Services.php
97 lines (96 loc) · 3.66 KB
/
EmbedVideo.Services.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
// Build services list (may be augmented in LocalSettings.php)
$wgEmbedVideoServiceList = array(
'dailymotion' => array(
'url' => 'http://www.dailymotion.com/swf/$1'
),
'divshare' => array(
'url' => 'http://www.divshare.com/flash/video2?myId=$1',
),
'edutopia' => array(
'extern' =>
'<object id="flashObj" width="$3" height="$4">' .
'<param name="movie" value="http://c.brightcove.com/services/viewer/federated_f9?isVid=1&isUI=1" />' .
'<param name="flashVars" value="videoId=$2&playerID=85476225001&domain=embed&dynamicStreaming=true" />' .
'<param name="base" value="http://admin.brightcove.com" />' .
'<param name="allowScriptAccess" value="always" />' .
'<embed src="http://c.brightcove.com/services/viewer/federated_f9?isVid=1&isUI=1" ' .
'flashVars="videoId=$2&playerID=85476225001&domain=embed&dynamicStreaming=true" '.
'base="http://admin.brightcove.com" name="flashObj" width="$3" height="$4" '.
'seamlesstabbing="false" type="application/x-shockwave-flash" allowFullScreen="true" ' .
'allowScriptAccess="always" swLiveConnect="true" ' .
'pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">' .
'</embed>' .
'</object>',
'default_width' => 326,
'default_ratio' => 326/399,
),
'funnyordie' => array(
'url' =>
'http://www.funnyordie.com/v1/flvideo/fodplayer.swf?file='.
'http://funnyordie.vo.llnwd.net/o16/$1.flv&autoStart=false'
),
'googlevideo' => array(
'id_pattern'=>'%[^0-9\\-]%',
'url' => 'http://video.google.com/googleplayer.swf?docId=$1'
),
'interiavideo' => array(
'url' => 'http://video.interia.pl/i/players/iVideoPlayer.05.swf?vid=$1',
),
'interia' => array(
'url' => 'http://video.interia.pl/i/players/iVideoPlayer.05.swf?vid=$1',
),
'revver' => array(
'url' => 'http://flash.revver.com/player/1.0/player.swf?mediaId=$1'
),
'sevenload' => array(
'url' => 'http://page.sevenload.com/swf/en_GB/player.swf?id=$1'
),
'teachertube' => array(
'extern' =>
'<embed src="http://www.teachertube.com/embed/player.swf" ' .
'width="$3" ' .
'height="$4" ' .
'bgcolor="undefined" ' .
'allowscriptaccess="always" ' .
'allowfullscreen="true" ' .
'flashvars="file=http://www.teachertube.com/embedFLV.php?pg=video_$2' .
'&menu=false' .
'&frontcolor=ffffff&lightcolor=FF0000' .
'&logo=http://www.teachertube.com/www3/images/greylogo.swf' .
'&skin=http://www.teachertube.com/embed/overlay.swf volume=80' .
'&controlbar=over&displayclick=link' .
'&viral.link=http://www.teachertube.com/viewVideo.php?video_id=$2' .
'&stretching=exactfit&plugins=viral-2' .
'&viral.callout=none&viral.onpause=false' .
'"' .
'/>',
),
'youtube' => array(
'extern' =>
'<iframe src="http://www.youtube.com/embed/$2?showsearch=0&modestbranding=1" ' .
'width="$3" height="$4" ' .
'frameborder="0" allowfullscreen="true"></iframe>',
'default_width' => 600,
'default_ratio' => 16 / 9
),
'youtubehd' => array(
'extern' =>
'<iframe src="http://www.youtube.com/embed/$2?showsearch=0&modestbranding=1&hd=1" ' .
'width="$3" height="$4" ' .
'frameborder="0" allowfullscreen="true"></iframe>',
'default_width' => 600,
'default_ratio' => 16 / 9
),
'youtubeplaylist' => array(
'extern' =>
'<iframe src="http://www.youtube.com/embed/videoseries?showsearch=0&modestbranding=1&list=$2" ' .
'width="$3" height="$4" ' .
'frameborder="0" allowfullscreen="true"></iframe>',
'default_width' => 600,
'default_ratio' => 16 / 9
),
'vimeo' => array(
'url'=>'http://vimeo.com/moogaloop.swf?clip_id=$1&;server=vimeo.com&fullscreen=0&show_title=1&show_byline=1&show_portrait=0'
)
);