v.1.0.5 Remote rtmpdump 24/7 cam4-anonymous script with suppressed data

This commit is contained in:
horacio9a 2017-10-06 18:39:36 +02:00 committed by GitHub
parent 97a2e21071
commit ef085a4dd4

7
c4r.py
View file

@ -1,7 +1,8 @@
# Cam4 Remote Anonymous RTMP Recorder v.1.0.4 by horacio9a for Python 2.7.13 # Cam4 Remote Anonymous RTMP Recorder v.1.0.5 by horacio9a for Python 2.7.13
import sys, os, urllib, urllib3, ssl, re, time, datetime, command import sys, os, urllib, urllib3, ssl, re, time, datetime, command
urllib3.disable_warnings() urllib3.disable_warnings()
from urllib3 import PoolManager
reload(sys) reload(sys)
sys.setdefaultencoding('utf-8') sys.setdefaultencoding('utf-8')
from colorama import init, Fore, Back, Style from colorama import init, Fore, Back, Style
@ -20,8 +21,8 @@ if __name__=='__main__':
model = sys.argv[1] model = sys.argv[1]
url ='https://www.cam4.com/{}'.format(model) url ='https://www.cam4.com/{}'.format(model)
http_pool = urllib3.connection_from_url(url) manager = PoolManager(10)
r = http_pool.urlopen('GET',url) r = manager.request('GET', url)
enc = (r.data) enc = (r.data)
dec=urllib.unquote(enc).decode() dec=urllib.unquote(enc).decode()