Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/share/vlc/lua/http/js/ drwxr-xr-x | |
| Viewing file: Select action/file-type: $(function () {
$("#seekSlider").slider({
range: "min",
value: 0,
min: 0,
max: 100,
start: function (event, ui) {
$("#seekSlider").data( 'clicked', true );
},
stop: function (event, ui) {
$("#currentTime").empty().append(format_time(Math.round((ui.value / 100) * $('#seekSlider').attr('totalLength'))));
switch (current_que) {
case 'main':
sendCommand({
'command': 'seek',
'val': (ui.value) + '%'
});
break;
case 'stream':
sendVLMCmd('control Current seek ' + ui.value);
break;
}
$("#seekSlider").data( 'clicked', false );
}
});
$("#volumeSlider").slider({
range: "min",
value: 50,
min: 0,
max: 100,
start: function (event, ui) {
$("#volumeSlider").data( 'clicked', true );
},
stop: function (event, ui) {
$("#currentVolume").empty().append(ui.value * 2 + "%");
sendCommand({
'command': 'volume',
'val': Math.round(ui.value * 5.12)
})
$("#volumeSlider").data( 'clicked', false );
}
});
/* To ensure that updateStatus() doesn't interfere while the user
* slides the controls. */
$("#seekSlider").data( 'clicked', false );
$("#volumeSlider").data( 'clicked', false );
$('#buttonStop').click(function () {
switch (current_que) {
case 'main':
sendCommand({
'command': 'pl_stop'
})
break;
case 'stream':
sendVLMCmd('control Current stop');
break;
}
return false;
});
$('#buttonPlay').click(function () {
if ($(this).attr('state') == 'stopped') {
switch (current_que) {
case 'main':
var id = $('.jstree-clicked', '#libraryTree').length > 0 ? $('.jstree-clicked', '#libraryTree').first().parents().first().attr('id').substr(5) : current_id;
sendCommand({
'command': 'pl_play',
'id': id
});
break;
case 'stream':
sendVLMCmd('control Current play');
flowplayer("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf");
break;
}
} else {
switch (current_que) {
case 'main':
sendCommand({
'command': 'pl_pause'
});
break;
case 'stream':
sendVLMCmd('control Current pause');
break;
}
}
return false;
});
$('#buttonFull').click(function () {
sendCommand({
'command': 'fullscreen'
});
return false;
});
$('#stream_host').val(stream_server);
$('#mobileintflink').click(function () {
if ( ( window.location.hostname == 'localhost' )
|| ( window.location.hostname == '127.0.0.1' )
|| ( window.location.hostname == '[::1]' ) )
{
return true;
}
var urlimg = location.href + 'mobile.html';
var codeimg = $('<img width="350" height="350" alt="qrcode"/>');
codeimg.attr('src', 'http://chart.apis.google.com/chart?cht=qr&chs=350x350&chld=L&choe=UTF-8&chl=' + encodeURIComponent(urlimg));
codeimg.dialog({width: 350, height: 350, title: 'QR-Code'});
return false;
});
$('.buttonszone').each(function(i){
$(this).mouseover(function(){
$(this).addClass('buttonszone_active');
}).mouseleave(function () {
$(this).removeClass('buttonszone_active');
});
});
})
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0044 ]-- |