4.1.0.13修复js录像报错问题

This commit is contained in:
g1879 2024-12-06 18:29:35 +08:00
parent 230615a128
commit a962fbe9cd
5 changed files with 22 additions and 13 deletions

View File

@ -3,8 +3,9 @@
@Author : g1879
@Contact : g1879@qq.com
@Copyright: (c) 2020 by g1879, Inc. All Rights Reserved.
本项目允许个人以源代码形式使用仅限于学习和合法非盈利使用
如未获得版权持有人授权不得用于商业行为
允许任何人以个人身份使用或分发本项目源代码但仅限于学习和合法非盈利目的
个人或组织如未获得版权持有人授权不得将本项目以源代码或二进制形式用于商业行为
使用本项目需满足以下条款如使用过程中出现违反任意一项条款的情形授权自动失效
* 禁止将DrissionPage应用到任何可能违反当地法律规定和道德约束的项目中

View File

@ -1252,7 +1252,13 @@ def parse_js_result(page, ele, result, end_time):
r = page._run_cdp('Runtime.getProperties', objectId=result['objectId'], ownProperties=True)['result']
return [parse_js_result(page, ele, result=i['value'], end_time=end_time) for i in r if i['name'].isdigit()]
elif 'objectId' in result:
elif result.get('className') == 'Blob':
data = page._run_cdp('IO.read',
handle=f"blob:{page._run_cdp('IO.resolveBlob', objectId=result['objectId'])['uuid']}")[
'data']
return data
elif 'objectId' in result and result.get('className') == 'Blob':
timeout = end_time - perf_counter()
if timeout < 0:
return

View File

@ -181,10 +181,8 @@ def format_cookie(cookie):
if 'sameSite' in cookie:
sameSite = cookie['sameSite']
if sameSite in (None, False):
if sameSite in (None, False) or sameSite not in ('None', 'Lax', 'Strict', 'no_restriction'):
cookie.pop('sameSite')
elif sameSite not in ('None', 'Lax', 'Strict'):
raise ValueError(f'{cookie}\nsameSite字段必须为"None""Lax""Strict"之一。')
if 'priority' in cookie:
priority = cookie['priority']

View File

@ -57,7 +57,7 @@ class Screencast(object):
? "video/webm; codecs=vp9"
: "video/webm"
mediaRecorder = new MediaRecorder(stream, {mimeType: mime})
DrissionPage_Screencast_chunks = []
DrissionPage_Screencast_chunks = [];
mediaRecorder.addEventListener('dataavailable', function(e) {
DrissionPage_Screencast_blob_ok = false;
DrissionPage_Screencast_chunks.push(e.data);
@ -75,6 +75,7 @@ class Screencast(object):
print('请手动选择要录制的目标。')
self._owner._run_js('var DrissionPage_Screencast_blob;var DrissionPage_Screencast_blob_ok=false;')
self._owner._run_js(js)
print('开始录制')
def stop(self, video_name=None):
if video_name and not video_name.endswith('mp4'):
@ -86,11 +87,12 @@ class Screencast(object):
self._owner._run_js('mediaRecorder.stop();', as_expr=True)
while not self._owner._run_js('return DrissionPage_Screencast_blob_ok;'):
sleep(.05)
blob = self._owner._run_js('return DrissionPage_Screencast_blob;')
uuid = self._owner._run_cdp('IO.resolveBlob', objectId=blob['result']['objectId'])['uuid']
data = self._owner._run_cdp('IO.read', handle=f'blob:{uuid}')['data']
with open(path, 'wb') as f:
f.write(b64decode(data))
f.write(b64decode(self._owner._run_js('return DrissionPage_Screencast_blob;')))
self._owner._run_js('DrissionPage_Screencast_blob_ok = false;'
'DrissionPage_Screencast_chunks = [];'
'DrissionPage_Screencast_blob = null', as_expr=True)
print('停止录制')
return path
if self._mode.startswith('frugal'):
@ -102,6 +104,7 @@ class Screencast(object):
sleep(.01)
if self._mode.endswith('imgs'):
print('停止录制')
return str(Path(self._path).absolute())
if not str(self._path).isascii():
@ -126,6 +129,7 @@ class Screencast(object):
rmtree(self._tmp_path)
self._tmp_path = None
print('停止录制')
return f'{self._path}{sep}{name}'
def set_save_path(self, save_path=None):

View File

@ -13,7 +13,7 @@ setup(
description="Python based web automation tool. It can control the browser and send and receive data packets.",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
# license="BSD",
keywords="DrissionPage",
url="https://DrissionPage.cn",
include_package_data=True,
@ -33,7 +33,7 @@ setup(
"Programming Language :: Python :: 3.6",
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
# "License :: OSI Approved :: BSD License",
],
python_requires='>=3.6',
entry_points={