For excessively paranoid client authentication.
Updated Apr 5 2019:
because this is a gist from 2011 that people stumble into and maybe you should AES instead of 3DES in the year of our lord 2019.
some other notes:
/** | |
* @var \TYPO3\CMS\Extbase\Persistence\PersistenceManagerInterface | |
* @inject | |
*/ | |
protected $persistenceManager; |
for container in `docker ps -q`; do | |
docker inspect --format='{{.Name}}' $container; | |
docker exec -it $container date; | |
docker exec -it $container apt-get update; | |
docker exec -it $container apt-get upgrade; | |
done |
sudo dd if=/dev/sdb of=./sdb.raw | |
VBoxManage convertdd sdb.raw sdb.vdi --format VDI | |
$ VBoxManage clonehd sdb.vdi sdb.raw --format RAW | |
sudo dd if=./sdb.raw of=/dev/sdb | |
ffmpeg -i "c:/videos/sample.mp4 | |
-map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 | |
-c:v libx264 -crf 22 -c:a aac -ar 48000 | |
-filter:v:0 scale=w=480:h=360 -maxrate:v:0 600k -b:a:0 64k | |
-filter:v:1 scale=w=640:h=480 -maxrate:v:1 900k -b:a:1 128k | |
-filter:v:2 scale=w=1280:h=720 -maxrate:v:2 900k -b:a:2 128k | |
-var_stream_map "v:0,a:0,name:360p v:1,a:1,name:480p v:2,a:2,name:720p" | |
-preset slow -hls_list_size 0 -threads 0 -f hls -hls_playlist_type event -hls_time 3 | |
-hls_flags independent_segments -master_pl_name "name-pl.m3u8" | |
"c:/videos/encoded/name-%v.m3u8" |