mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-05-30 00:11:31 +00:00
Purged git history and removed sensitive information.
This commit is contained in:
commit
8ed526716f
857 changed files with 25312 additions and 0 deletions
9
script/shell/encode.sh
Normal file
9
script/shell/encode.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
FILE=`echo -n $1 | sed -e 's/\.\w\{3\}$//gi'`
|
||||
|
||||
if [ -e "$FILE"_preview.mp4 ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
ffmpeg -i "$1" -ar 44100 -ab 96k -vcodec libx264 -level 41 -crf 25 -bufsize 20000k -maxrate 2500k -g 250 -r 20 -s 640x480 -coder 1 -flags +loop -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -flags2 +brdo+dct8x8+bpyramid -me umh -subq 7 -me_range 16 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -rc_eq 'blurCplx^(1-qComp)' -bf 16 -b_strategy 1 -bidir_refine 1 -refs 6 -deblockalpha 0 -deblockbeta 0 "$FILE"_preview.mp4
|
3
script/shell/frequently.sh
Normal file
3
script/shell/frequently.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
# wget -O /dev/null http://www.ensl.org/servers/refresh/1
|
||||
wget -O /dev/null http://www.ensl.org/tweets/refresh/1
|
2
script/shell/hourly.sh
Normal file
2
script/shell/hourly.sh
Normal file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/bash
|
||||
wget -O /dev/null http://www.ensl.org/directories/refresh/1
|
10
script/shell/log_file_update.sh
Normal file
10
script/shell/log_file_update.sh
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
LIMIT=5985
|
||||
a=4268
|
||||
|
||||
while [ "$a" -le $LIMIT ]
|
||||
do
|
||||
wget -O /dev/null http://www.ensl.org/log_files/handle/"$a"
|
||||
let "a+=1"
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue