Snippets
Embedding subtitles srt into avi files with mencoder
Easier than you might think.
Generate a htpasswd password without installing Apache
A oneliner with Perl does the trick:
The output you get should be placed in a file called htpasswd. The syntax is like so:
Password protecting folders with nginx
Ever wondered how you can password protect a folder and the underlying content with nginx the same way Apache does? Pretty simple.
First create a htpass-file like so:
Edit your site’s configuration file by adding the following lines of code inside the server-block:
And your folder should be password protected. :)
Converting an avi to the Nokia E71 size
This is a oneliner to convert an avi-file to the correct dimensions of a Nokia E71. The screen is small, but sure beats to buy an iTouch if your cell already can play movies for you. :)
ffmpeg -y -i input.avi -acodec libfaac -ab 72k -s 320x176 -aspect 16:9 -vcodec libx264 -b 300k -qcomp 0.6 -r 25 -qmin 16 -qmax 51 -qdiff 4 -flags +loop -cmp +chroma -subq 7 -refs 6 -g 250 -keyint_min 25 -rc_eq 'blurCplx^(1-qComp)' -sc_threshold 40 -me_range 12 -i_qfactor 0.71 -directpred 3 output.mp4
.cue/.bin to .iso
First install the program called bchunk:
Now we convert .bin/.cue to .iso:
And there you go.
ssh-agent-script
To be placed in your .bashrc-file:
ssh-clean-keys
Simple lines of code to clean invalid hosts from your .known_hosts-file.