cam4-anonymous/c4ytr3.py

51 lines
1.6 KiB
Python

# Cam4 Remote Anonymous YTDL Recorder v.2.1.0 by horacio9a for Python 3.12.2
# 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')
country_domain = Config.get('settings', 'country_domain')
init()
print()
print(colored(' => START <=', 'white', 'on_blue'))
print()
if __name__=='__main__':
import sys
model = sys.argv[1]
url ='https://{}.cam4.com/rest/v1.0/profile/{}/streamInfo'.format(country_domain, model)
manager = PoolManager(10)
r = manager.request('GET', url)
enc = quote(r.data)
dec= unquote(enc)
if len(dec) > 0:
hlsur2 = dec.split('cdnURL":"')[1]
hlsurl = hlsur2.split('"')[0]
timestamp = str(time.strftime('%d%m%Y-%H%M%S'))
stime = str(time.strftime('%H:%M:%S'))
path = Config.get('folders', 'output_folder')
youtube = Config.get('files', 'youtube')
filename = model + '_C4_' + timestamp + '.ts'
pf = path + filename
print ((colored(' => YTDL-REC => {} <=', 'white', 'on_red')).format(pf))
command = ('{} -i --geo-bypass --hls-use-mpegts --no-part -q --no-warnings --no-check-certificate {} -o {}'.format(youtube,hlsurl,pf))
os.system(command)
sys.exit()
else:
print(colored(' => Model is offline or wrong name <=', 'white','on_red'))
print()
print(colored(' => END <=', 'white','on_blue'))
sys.exit()