blob: 7a98507b5fd82fb120affae999608dab3d40e55f (
plain)
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/**
* @file
* Adds some show/hide to the admin form to make the UXP easier.
*
*/
(function($){
Drupal.behaviors.video = {
attach: function (context, settings) {
//lets see if we have any jmedia movies
if($.fn.media) {
$('.jmedia').media();
}
video_hide_all_options();
$("input[name='video_convertor']").change(function() {
video_hide_all_options();
});
// change metadata options
video_hide_all__metadata_options();
$("input[name='video_metadata']").change(function() {
video_hide_all__metadata_options();
});
$('.video_select').each(function() {
var ext = $(this).attr('rel');
$('select', this).change(function() {
if($(this).val() == 'video_play_flv') {
$('#flv_player_'+ext).show();
} else {
$('#flv_player_'+ext).hide();
}
if($(this).val() == 'video_play_html5') {
$('#html5_player_'+ext).show();
} else {
$('#html5_player_'+ext).hide();
}
});
if($('select', this).val() == 'video_play_flv')
$('#flv_player_'+ext).show();
if($('select', this).val() == 'video_play_html5')
$('#html5_player_'+ext).show();
else
$('#html5_player_'+ext).hide();
});
if(settings.video) {
$.fn.media.defaults.flvPlayer = settings.video.flvplayer;
}
//lets setup our colorbox videos
$('.video-box').each(function() {
var url = $(this).attr('href');
var data = $(this).metadata();
var width = data.width;
var height= data.height;
var player = settings.video.player; //player can be either jwplayer or flowplayer.
$(this).colorbox({
html: '<a id="video-overlay" href="'+url+'" style="height:'+height+'; width:'+width+'; display: block;"></a>',
onComplete:function() {
if(player == 'flowplayer') {
flowplayer("video-overlay", settings.video.flvplayer, {
clip: {
autoPlay: settings.video.autoplay,
autoBuffering: settings.video.autobuffer
}
});
} else {
$('#video-overlay').media({
flashvars: {
autostart: settings.video.autoplay
},
width:width,
height:height
});
}
}
});
});
}
};
function video_hide_all_options() {
$("input[name='video_convertor']").each(function() {
var id = $(this).val();
$('#'+id).hide();
if ($(this).is(':checked')) {
$('#' + id).show();
}
});
}
function videoftp_thumbnail_change() {
// Add handlers for the video thumbnail radio buttons to update the large thumbnail onchange.
$(".video-thumbnails input").each(function() {
var path = $(this).val();
if($(this).is(':checked')) {
var holder = $(this).attr('rel');
$('.'+holder+' img').attr('src', settings.basePath + path);
}
});
}
function video_hide_all__metadata_options() {
$("input[name='video_metadata']").each(function() {
var id = $(this).val();
$('#'+id).hide();
if ($(this).is(':checked')) {
$('#' + id).show();
}
});
}
})(jQuery);
|