v.2.0.1 Cam4 Remote 24/7 Anonymous LIVESTREAM Recorder for Python39

This commit is contained in:
horacio9a 2021-05-25 23:29:42 +02:00 committed by GitHub
parent 7acb1e1c96
commit 63ca814ff3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

59
c4lsr3.py Normal file
View file

@ -0,0 +1,59 @@
# Cam4 Remote Anonymous LIVESTREAMER Recorder v.2.0.1 by horacio9a for Python 3.9.1
# coding: utf-8
import sys, os, urllib, urllib3, ssl, re, time, datetime, command
urllib3.disable_warnings()
from urllib3 import PoolManager
from urllib.parse import quote
from urllib.parse import unquote
from colorama import init, Fore, Back, Style
from termcolor import colored
import configparser
Config = configparser.ConfigParser()
Config.read('config3.ini')
init()
print()
print(colored(' => START <=', 'white', 'on_blue'))
print()
if __name__=='__main__':
import sys
model = sys.argv[1]
url ='https://www.cam4.com/rest/v1.0/profile/{}/streamInfo'.format(model)
manager = PoolManager(10)
r = manager.request('GET', url)
enc = quote(r.data)
dec= unquote(enc)
if 'canUseCDN":true' in dec:
hlsurl0 = dec.split('cdnURL":"')[1]
hlsurl = hlsurl0.split('"')[0]
if len(hlsurl) > 0:
try:
streamName0 = dec.split('streamName":"')[1]
streamName = streamName0.split('-')[0]
except:
sys.exit()
timestamp = str(time.strftime('%d%m%Y-%H%M%S'))
stime = str(time.strftime('%H:%M:%S'))
path = Config.get('folders', 'output_folder')
livestreamer = Config.get('files', 'livestreamer')
filename = streamName + '_C4_' + timestamp + '.mp4'
pf = path + filename
print ((colored(' => LS-REC => {} ( Size @ Speed )', 'white', 'on_red')).format(filename))
print()
command = ('{} hlsvariant://{} best -Q -o {}'.format(livestreamer,hlsurl,pf))
os.system(command)
sys.exit()
else:
sys.exit()
else:
print(colored(' => Model is offline or wrong name <=', 'white','on_red'))
print()
print(colored(' => END <=', 'white','on_blue'))
sys.exit()