This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?PHP | |
/* | |
YOUTUBE AND FACEBOOK LIVE STREAM SNATCHING | |
MADE BY M4UNDY | |
*/ | |
$channelid = $_GET["watch?v"]; | |
ini_set("user_agent","facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)"); | |
function get_data($url) { | |
$ch = curl_init(); | |
$timeout = 5; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Change this to path of file to stream /edit/to/vod/path.mp4 | |
mediaFile="/edit/to/vod/path.mp4" | |
### 480x video400kbps audio40kbps ### | |
mediaStreams="-map 0" | |
audCodec="-acodec mp2" | |
audKbps="-b:a 40k" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# cracked flussonic | |
wget -q -O - http://debian.erlyvideo.org/binary/gpg.key | apt-key add -; | |
echo "deb http://debian.erlyvideo.org binary/" > /etc/apt/sources.list.d/erlyvideo.list; | |
apt-get update; | |
apt-get -y install flussonic flussonic-transcoder; | |
echo 'l4|8Ku8ypPgOUySHysCdkFHW0|r6BzpmVPpjgKpn9IunpFp6lLbCZOp3' >> /etc/flussonic/license.txt | |
/etc/init.d/flussonic start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#//////////////////////////////////////////////////////////// | |
#=========================================================== | |
# Dropbox FS Installer for Debian / Ubuntu | |
#=========================================================== | |
# set environment | |
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
LOG=/tmp/dropbox_fs.log | |
# are we running as root |