Implemented FMS encryption. Dat betekend werkend H264 en AAC, bitches!

This commit is contained in:
Thulinma 2010-08-24 16:17:19 +02:00
parent 94f587563c
commit 471de8614f
7 changed files with 671 additions and 12 deletions

9
Server/playh264.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
#ffmpeg -y -i "$1" -acodec libfaac -ar 44100 -vcodec libx264 -b 1000k -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -i_qfactor 0.71 -keyint_min 25 -b_strategy 1 -g 150 -r 20 -f flv - 2> /dev/null | ./Server_PLS 500
#ffmpeg -y -i "$1" -ar 44100 -vcodec libx264 -b 1000k -g 150 -r 20 -f flv - | ./Server_PLS 500
ffmpeg -i "$1" -re -acodec aac -ar 44100 -vcodec libx264 -b 700k -vpre ultrafast -refs 1 -bf 0 -g 150 -f flv - 2> /dev/null | ./Server_PLS 500