34 System failure
35 Data Missing
36 Unexpected Data Value
21 Facility Not Supported
#!/bin/bash | |
rm -fr /tmp/ffmpeg2.2-experiment | |
mkdir /tmp/ffmpeg2.2-experiment | |
ffmpeg -ss 00:01:09 -i mp4.mp4 -vframes 1 /tmp/ffmpeg2.2-experiment/screencap-01.jpg | |
ffmpeg -ss 00:02:19 -i mp4.mp4 -vframes 1 /tmp/ffmpeg2.2-experiment/screencap-02.jpg | |
ffmpeg -ss 00:03:29 -i mp4.mp4 -vframes 1 /tmp/ffmpeg2.2-experiment/screencap-03.jpg | |
ffmpeg -ss 00:04:39 -i mp4.mp4 -vframes 1 /tmp/ffmpeg2.2-experiment/screencap-04.jpg | |
ffmpeg -ss 00:05:49 -i mp4.mp4 -vframes 1 /tmp/ffmpeg2.2-experiment/screencap-05.jpg |
#Download Elementary OS from here: | |
#http://sourceforge.net/projects/elementaryos/files/stable/ | |
#First you update your system | |
sudo apt-get update && sudo apt-get dist-upgrade | |
#Install Google Chrome | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
#! /bin/bash | |
# | |
# Written by Miquel van Smoorenburg <[email protected]>. | |
# Modified for Debian | |
# by Ian Murdock <[email protected]>. | |
# Further changes by Javier Fernandez-Sanguino <[email protected]> | |
# Modified for sphinx by Radu Spineanu <[email protected]> | |
# | |
# |
#! /bin/bash | |
### BEGIN INIT INFO | |
# Provides: memcached | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Should-Start: $local_fs | |
# Should-Stop: $local_fs | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Start memcached daemon |