Server IP : 80.241.246.6 / Your IP : 216.73.216.129 Web Server : Apache/2.4.25 (Debian) System : Linux kharagauli 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64 User : www-data ( 33) PHP Version : 7.0.33-0+deb9u12 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/kharagauli1/moduls/video_gallery/site/player/src/ |
Upload File : |
import sys import os import shutil import re def remove_console(text): return re.sub('console.(log|debug)\((.*)\);?', '', text) me_filename = 'mediaelement' mep_filename = 'mediaelementplayer' combined_filename = 'mediaelement-and-player' # BUILD MediaElement (single file) print('building MediaElement.js') me_files = [] me_files.append('me-header.js') me_files.append('me-namespace.js') me_files.append('me-utility.js') me_files.append('me-plugindetector.js') me_files.append('me-featuredetection.js') me_files.append('me-mediaelements.js') me_files.append('me-shim.js') me_files.append('me-i18n.js') me_files.append('me-i18n-locale-de.js') me_files.append('me-i18n-locale-zh.js') code = '' for item in me_files: src_file = open('js/' + item,'r') code += src_file.read() + "\n" code = remove_console(code) tmp_file = open('../build/' + me_filename + '.js','w') tmp_file.write(code) tmp_file.close() # BUILD MediaElementPlayer (single file) print('building MediaElementPlayer.js') mep_files = [] mep_files.append('mep-header.js') mep_files.append('mep-library.js') mep_files.append('mep-player.js') mep_files.append('mep-feature-playpause.js') mep_files.append('mep-feature-stop.js') mep_files.append('mep-feature-progress.js') mep_files.append('mep-feature-time.js') mep_files.append('mep-feature-volume.js') mep_files.append('mep-feature-fullscreen.js') mep_files.append('mep-feature-tracks.js') mep_files.append('mep-feature-contextmenu.js') mep_files.append('mep-feature-postroll.js') # mep_files.append('mep-feature-sourcechooser.js') code = '' for item in mep_files: src_file = open('js/' + item,'r') code += src_file.read() + "\n" code = remove_console(code) tmp_file = open('../build/' + mep_filename + '.js','w') tmp_file.write(code) tmp_file.close() # MINIFY both scripts print('Minifying JavaScript') # os.system("java -jar yuicompressor-2.4.2.jar ../build/" + me_filename + ".js -o ../build/" + me_filename + ".min.js --charset utf-8 -v") # os.system("java -jar yuicompressor-2.4.2.jar ../build/" + mep_filename + ".js -o ../build/" + mep_filename + ".min.js --charset utf-8 -v") os.system("java -jar compiler.jar --js ../build/" + me_filename + ".js --js_output_file ../build/" + me_filename + ".min.js") os.system("java -jar compiler.jar --js ../build/" + mep_filename + ".js --js_output_file ../build/" + mep_filename + ".min.js") # PREPEND intros def addHeader(headerFilename, filename): # get the header text tmp_file = open(headerFilename) header_txt = tmp_file.read(); tmp_file.close() # read the current contents of the file tmp_file = open(filename) file_txt = tmp_file.read() tmp_file.close() # open the file again for writing tmp_file = open(filename, 'w') tmp_file.write(header_txt) # write the original contents tmp_file.write(file_txt) tmp_file.close() addHeader('js/me-header.js', '../build/' + me_filename + '.min.js') addHeader('js/mep-header.js', '../build/' + mep_filename + '.min.js') # COMBINE into single script print('Combining scripts') code = '' src_file = open('../build/' + me_filename + '.js','r') code += src_file.read() + "\n" src_file = open('../build/' + mep_filename + '.js','r') code += src_file.read() + "\n" tmp_file = open('../build/' + combined_filename + '.js','w') tmp_file.write(code) tmp_file.close() code = '' src_file = open('../build/' + me_filename + '.min.js','r') code += src_file.read() + "\n" src_file = open('../build/' + mep_filename + '.min.js','r') code += src_file.read() + "\n" tmp_file = open('../build/' + combined_filename + '.min.js','w') tmp_file.write(code) tmp_file.close() # MINIFY CSS print('Minifying CSS') src_file = open('css/mediaelementplayer.css','r') tmp_file = open('../build/mediaelementplayer.css','w') tmp_file.write(src_file.read()) tmp_file.close() os.system("java -jar yuicompressor-2.4.2.jar ../build/mediaelementplayer.css -o ../build/mediaelementplayer.min.css --charset utf-8 -v") #COPY skin files print('Copying Skin Files') shutil.copy2('css/controls.png','../build/controls.png') shutil.copy2('css/controls.svg','../build/controls.svg') shutil.copy2('css/bigplay.png','../build/bigplay.png') shutil.copy2('css/bigplay.svg','../build/bigplay.svg') shutil.copy2('css/loading.gif','../build/loading.gif') shutil.copy2('css/mejs-skins.css','../build/mejs-skins.css') shutil.copy2('css/controls-ted.png','../build/controls-ted.png') shutil.copy2('css/controls-wmp.png','../build/controls-wmp.png') shutil.copy2('css/controls-wmp-bg.png','../build/controls-wmp-bg.png') print('DONE!')