Last active
August 13, 2016 23:41
-
-
Save dardo82/f037908b4fb6b501bdfd to your computer and use it in GitHub Desktop.
MyFreeCams on AppleTV
This file contains 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/sh | |
ROOMID="$(curl -s $(echo "$1" | awk '{sub(/www/,"profiles"); sub(/#/,""); print $0}') | awk -F/ '/\/[0-9]{7,8}\//{print $6; exit}')" | |
if [ ${#ROOMID} -eq 7 ]; then | |
PREFIX="10"; else | |
PREFIX="1" | |
fi | |
MFCURL="http://video .myfreecams.com:1935/NxServer/mfc_$PREFIX$ROOMID.f4v_aac/playlist.m3u8" | |
for n in $(seq 340 492); do | |
STREAM=${MFCURL/ /$n} | |
if [ $(curl -s -Y1024 -y1 $STREAM | grep CODECS) ]; then | |
break | |
fi | |
done | |
echo $STREAM | |
ENCURL=$(curl -s -G -w %{url_effective} --data-urlencode $STREAM "" | awk '{print substr($0,3)}') | |
open "airflick://"; sleep 10; open "airflick://play-media?MediaLocation=$ENCURL" |
That makes sense. Thank you! Was there ever a room that you couldn't stream because the video stream ($n) wasn't found?
I don't use it very often, so i am not sure what the failure rate is... Sorry. :-/
Maybe if you use it more than me, you could tell me it... ;-)
I can try :) Do you have documentation from where you learned to write the script?
I have found some interesting informations here:
http://stream-recorder.com/forum/www-myfreecams-com-can-record-free-sex-t3851.html?s=52df861adec77e0acdb8f5992f2692fa&t=3851
chaturbate() { mplayer $(curl -q -s https://m.chaturbate.com/$1/ | awk -F"'" '/m3u8/{print $2}'); }
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you know what the numbers 340 and 492 are in your loop there?