"Implement a feature XXXX, otherwise I'll use another project."
-
No.
-
Feel free to.
"Without that functionality this project is useless."
It's your personal opinion.
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use 5.010; | |
use JSON qw( decode_json ); # isn't default module, must be installed via CPAN or your system package manager | |
use Time::HiRes qw ( usleep ); # for simple delays | |
my $outputfile = shift; # getting output filename from command-line params |
#!/usr/bin/env perl | |
# dedicated to hatred of High 10 H.264 profile | |
# finds all MKV files in current directory and re-encodes them to kawaii High@* | |
# WARNING: make sure that your x264 is built with ffmpeg support | |
use strict; | |
use warnings; | |
use 5.010; | |
use Math::Round; # must be installed from CPAN |
"Implement a feature XXXX, otherwise I'll use another project."
No.
Feel free to.
"Without that functionality this project is useless."
It's your personal opinion.
#!/bin/bash | |
CRC32="/usr/bin/crc32" | |
FILENAME=$1 | |
echo -ne "$FILENAME\t\t" | |
NAMED_CRC=`echo $FILENAME | sed -e 's/^.*\[\(.\{8\}\)\]\..*$/\1/g' | tr '[:upper:]' '[:lower:]'` | |
CALCULATED_CRC=`$CRC32 "$FILENAME" | tr '[:upper:]' '[:lower:]'` | |
if [[ $NAMED_CRC == $CALCULATED_CRC ]]; then | |
echo -e "OK" |
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use 5.010; | |
use JSON qw( decode_json ); | |
use LWP::Simple; | |
my $user = $ARGV[0]; |
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: thin-app | |
# Required-Start: $local_fs $remote_fs $network | |
# Required-Stop: $local_fs $remote_fs | |
# Short-Description: Application description | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
### END INIT INFO |
.tweet.opened-tweet .tweet-translation { | |
display: none; | |
} | |
.stream-item-header .translate-button { | |
display: none; | |
} |
#!/bin/bash | |
usage() { | |
echo "WebM cutter and uploader." | |
echo "Usage: $0 <source> <start time> <length> [-subs]" | |
echo "Example: $0 video.mkv 00:10:15 00:00:30" | |
exit 1 | |
} | |
if [ $# -eq 0 ]; then usage; fi |
location /devnull { | |
fancyindex on; | |
fancyindex_exact_size off; | |
fancyindex_css_href "/fancyindex.css"; | |
allow all; | |
} |
#!/bin/zsh | |
LINK="$1" | |
youtube-dl -i -f 141 "${LINK}" | |
for F in *.m4a; do | |
ffmpeg -i "${F}" -acodec libvorbis -ab 192k "${F/%m4a/ogg}" | |
done | |
rm *.m4a |