登录
注册
开源
企业版
高校版
搜索
帮助中心
使用条款
关于我们
开源
企业版
高校版
私有云
模力方舟
AI 队友
登录
注册
Gitee 618 年中盛典开启:企业版新购最高送一年,PocketClaw 首次限时折扣
代码拉取完成,页面将自动刷新
仓库状态说明
开源项目
>
人工智能
>
AI-人工智能
&&
捐赠
捐赠前请先登录
取消
前往登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
Watch
不关注
关注所有动态
仅关注版本发行动态
关注但不提醒动态
32
Star
153
Fork
235
Ascend
/
mindsdk-referenceapps
暂停
代码
Issues
22
Pull Requests
26
Wiki
统计
流水线
服务
质量分析
Jenkins for Gitee
腾讯云托管
腾讯云 Serverless
悬镜安全
阿里云 SAE
Codeblitz
SBOM
开发画像分析
我知道了,不再自动展开
更新失败,请稍后重试!
移除标识
内容风险标识
本任务被
标识为内容中包含有代码安全 Bug 、隐私泄露等敏感信息,仓库外成员不可访问
Atlas 200I DK A2 调用 VideoDecoder.decode 解码失败
DONE
#I8BCWW
Bug-Report
Zen
创建于
2023-10-27 11:38
一、问题现象(附报错日志上下文): Atlas 200I DK A2 调用 VideoDecoder.decode(data, i) 解码失败 二、软件版本: -- CANN 版本 (e.g., CANN 3.0.x,5.x.x): 6.2.RC2 -- ascend-toolkit版本:6.2.RC2 -- mxVision版本:5.0.RC2 -- Tensorflow/Pytorch/MindSpore 版本: - -- Python 版本 (e.g., Python 3.7.5): 3.9.2 -- MindStudio版本 (e.g., MindStudio 2.0.0 (beta3)): - -- 操作系统版本 (e.g., Ubuntu 18.04): Ubuntu 22.04 LTS (GNU/Linux 5.10.0+ aarch64) 三、测试步骤: ```import os import numpy as np import time import cv2 from mindx.sdk import base from mindx.sdk.base import Image, ImageProcessor from mindx.sdk.base import VideoDecoder, VideoDecodeConfig, VdecCallBacker from test_ffmpeg_read_rtsp_raw import VideoCapture import os # 视频解码回调函数 def vdec_callback(decodedImage, channelId, frameId): # 解码完成的Image类存入列表中 print("解码成功: ", decodedImage) if __name__ == "__main__": url = "rtsp://192.168.124.16:8554/av_stream" url = "a.mp4.264" av_packet_save_dir = "frame_data" os.makedirs(av_packet_save_dir, exist_ok=True) print(url) cap = cv2.VideoCapture(url) ok, frame = cap.read() assert ok h, w, _ = frame.shape print("hw:", h, w) # 初始化VdecCallBacker类并注册回调函数 vdecCallBacker = VdecCallBacker() vdecCallBacker.registerVdecCallBack(vdec_callback) # 初始化VideoDecodeConfig类并设置参数 vdecConfig = VideoDecodeConfig() vdecConfig.skipInterval = 0 vdecConfig.inputVideoFormat = base.h264_main_level vdecConfig.outputImageFormat = base.nv12 vdecConfig.width = w vdecConfig.height = h for k in dir(vdecConfig): if k[0] == "_": continue print(k, getattr(vdecConfig, k)) # 初始化VideoDecoder videoDecoder = VideoDecoder(vdecConfig, vdecCallBacker, 0, 0) # 循环取帧解码 cap = VideoCapture(url) data = cap.next_frame() for i in range(10): # 读取视频帧数据存入file data = cap.next_frame() # data: AVPacket.data data = np.frombuffer(data, "uint8").copy() print(i, "data len: %s bytes" % len(data), "shape:", data.shape, "dtype:", data.dtype) save_path = os.path.join(av_packet_save_dir, f"{i}.npy") np.save(save_path, data) # 视频帧数据解码 videoDecoder.decode(data, i) ``` 四、日志信息: Log file created at: 2023/10/26 22:35:50 Running on machine: davinci-mini Running duration (h:mm:ss): 0:00:06 Log line format: [IWEF]yyyymmdd hh:mm:ss.uuuuuu threadid file:line] msg I20231026 22:35:50.665266 1033433 DvppWrapper.cpp:29] Current chip environment is Ascend310B, DvppWrapper is initialized by DvppWrapperDptrWithAcl. I20231026 22:35:50.665665 1033433 DvppWrapper.cpp:357] Image width= 1920, height= 1080. I20231026 22:35:50.665948 1033488 DvppWrapperWithAcl.cpp:33] Thread start I20231026 22:35:50.679248 1033433 DvppWrapperWithAcl.cpp:186] Init video decode resource successfully. I20231026 22:35:50.679342 1033433 VideoDecoderDptr.hpp:172] Software runMode in ACL_DEVICE. I20231026 22:35:50.679363 1033433 VideoDecoderDptr.hpp:212] VideoDecoder init successfully. I20231026 22:35:55.184906 1033433 DvppWrapperBase.cpp:833] Malloc mode has been set as: System malloc W20231026 22:35:55.202214 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:0 decode failed W20231026 22:35:55.217239 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:2 decode failed W20231026 22:35:55.224200 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:3 decode failed W20231026 22:35:55.231006 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:4 decode failed W20231026 22:35:55.251729 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:5 decode failed W20231026 22:35:55.254110 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:6 decode failed W20231026 22:35:55.274609 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:7 decode failed W20231026 22:35:55.279500 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:8 decode failed I20231026 22:35:58.424130 1033433 DeviceManager.cpp:52] DeviceManager Acl Resource is not released. 其他日志: [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.531.329 [npu_driver.cc:2883] 1344137 CqReportIrqWait: [drv api] halCqReportIrqWait failed: device_id=0, tsId=0, groupId=832, drvRetCode=16. [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.531.362 [api_impl.cc:3541] 1344137 ProcessReport: CqReportIrqWait, retCode=0x711000c [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.635.308 [npu_driver.cc:2883] 1344137 CqReportIrqWait: [drv api] halCqReportIrqWait failed: device_id=0, tsId=0, groupId=832, drvRetCode=16. [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.635.343 [api_impl.cc:3541] 1344137 ProcessReport: CqReportIrqWait, retCode=0x711000c [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.739.336 [npu_driver.cc:2883] 1344137 CqReportIrqWait: [drv api] halCqReportIrqWait failed: device_id=0, tsId=0, groupId=832, drvRetCode=16. [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.739.386 [api_impl.cc:3541] 1344137 ProcessReport: CqReportIrqWait, retCode=0x711000c [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.843.339 [npu_driver.cc:2883] 1344137 CqReportIrqWait: [drv api] halCqReportIrqWait failed: device_id=0, tsId=0, groupId=832, drvRetCode=16. [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.843.393 [api_impl.cc:3541] 1344137 ProcessReport: CqReportIrqWait, retCode=0x711000c [EVENT] CCECPU(1344114,python3):2023-10-27-11:27:12.847.470 [aicpusd_worker.cpp:166][WaitForStop][tid:1344114] WaitForStop end. [EVENT] CCECPU(1344114,python3):2023-10-27-11:27:12.848.048 [aicpusd_lastword.cpp:39][operator()][tid:1344114] UnReg lastword mark[aicpu sd event mng] key[0]. [EVENT] CCECPU(1344114,python3):2023-10-27-11:27:12.848.177 [aicpusd_mpi_mgr.cpp:48][PrintStatisticInfo][tid:1344114] Mpi Dvpp event statistic: [0] [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.947.327 [npu_driver.cc:2883] 1344137 CqReportIrqWait: [drv api] halCqReportIrqWait failed: device_id=0, tsId=0, groupId=832, drvRetCode=16. [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.947.377 [api_impl.cc:3541] 1344137 ProcessReport: CqReportIrqWait, retCode=0x711000c [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.315 [npu_driver.cc:2883] 1344137 CqReportIrqWait: [drv api] halCqReportIrqWait failed: device_id=0, tsId=0, groupId=832, drvRetCode=16. [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.352 [api_impl.cc:3541] 1344137 ProcessReport: CqReportIrqWait, retCode=0x711000c [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.428 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.452 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.552 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.569 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.597 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.609 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.631 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.642 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.662 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.673 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.693 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.704 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.722 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.733 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.753 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000
一、问题现象(附报错日志上下文): Atlas 200I DK A2 调用 VideoDecoder.decode(data, i) 解码失败 二、软件版本: -- CANN 版本 (e.g., CANN 3.0.x,5.x.x): 6.2.RC2 -- ascend-toolkit版本:6.2.RC2 -- mxVision版本:5.0.RC2 -- Tensorflow/Pytorch/MindSpore 版本: - -- Python 版本 (e.g., Python 3.7.5): 3.9.2 -- MindStudio版本 (e.g., MindStudio 2.0.0 (beta3)): - -- 操作系统版本 (e.g., Ubuntu 18.04): Ubuntu 22.04 LTS (GNU/Linux 5.10.0+ aarch64) 三、测试步骤: ```import os import numpy as np import time import cv2 from mindx.sdk import base from mindx.sdk.base import Image, ImageProcessor from mindx.sdk.base import VideoDecoder, VideoDecodeConfig, VdecCallBacker from test_ffmpeg_read_rtsp_raw import VideoCapture import os # 视频解码回调函数 def vdec_callback(decodedImage, channelId, frameId): # 解码完成的Image类存入列表中 print("解码成功: ", decodedImage) if __name__ == "__main__": url = "rtsp://192.168.124.16:8554/av_stream" url = "a.mp4.264" av_packet_save_dir = "frame_data" os.makedirs(av_packet_save_dir, exist_ok=True) print(url) cap = cv2.VideoCapture(url) ok, frame = cap.read() assert ok h, w, _ = frame.shape print("hw:", h, w) # 初始化VdecCallBacker类并注册回调函数 vdecCallBacker = VdecCallBacker() vdecCallBacker.registerVdecCallBack(vdec_callback) # 初始化VideoDecodeConfig类并设置参数 vdecConfig = VideoDecodeConfig() vdecConfig.skipInterval = 0 vdecConfig.inputVideoFormat = base.h264_main_level vdecConfig.outputImageFormat = base.nv12 vdecConfig.width = w vdecConfig.height = h for k in dir(vdecConfig): if k[0] == "_": continue print(k, getattr(vdecConfig, k)) # 初始化VideoDecoder videoDecoder = VideoDecoder(vdecConfig, vdecCallBacker, 0, 0) # 循环取帧解码 cap = VideoCapture(url) data = cap.next_frame() for i in range(10): # 读取视频帧数据存入file data = cap.next_frame() # data: AVPacket.data data = np.frombuffer(data, "uint8").copy() print(i, "data len: %s bytes" % len(data), "shape:", data.shape, "dtype:", data.dtype) save_path = os.path.join(av_packet_save_dir, f"{i}.npy") np.save(save_path, data) # 视频帧数据解码 videoDecoder.decode(data, i) ``` 四、日志信息: Log file created at: 2023/10/26 22:35:50 Running on machine: davinci-mini Running duration (h:mm:ss): 0:00:06 Log line format: [IWEF]yyyymmdd hh:mm:ss.uuuuuu threadid file:line] msg I20231026 22:35:50.665266 1033433 DvppWrapper.cpp:29] Current chip environment is Ascend310B, DvppWrapper is initialized by DvppWrapperDptrWithAcl. I20231026 22:35:50.665665 1033433 DvppWrapper.cpp:357] Image width= 1920, height= 1080. I20231026 22:35:50.665948 1033488 DvppWrapperWithAcl.cpp:33] Thread start I20231026 22:35:50.679248 1033433 DvppWrapperWithAcl.cpp:186] Init video decode resource successfully. I20231026 22:35:50.679342 1033433 VideoDecoderDptr.hpp:172] Software runMode in ACL_DEVICE. I20231026 22:35:50.679363 1033433 VideoDecoderDptr.hpp:212] VideoDecoder init successfully. I20231026 22:35:55.184906 1033433 DvppWrapperBase.cpp:833] Malloc mode has been set as: System malloc W20231026 22:35:55.202214 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:0 decode failed W20231026 22:35:55.217239 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:2 decode failed W20231026 22:35:55.224200 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:3 decode failed W20231026 22:35:55.231006 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:4 decode failed W20231026 22:35:55.251729 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:5 decode failed W20231026 22:35:55.254110 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:6 decode failed W20231026 22:35:55.274609 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:7 decode failed W20231026 22:35:55.279500 1033488 DvppWrapperBase.cpp:25] channelId:0 frameId:8 decode failed I20231026 22:35:58.424130 1033433 DeviceManager.cpp:52] DeviceManager Acl Resource is not released. 其他日志: [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.531.329 [npu_driver.cc:2883] 1344137 CqReportIrqWait: [drv api] halCqReportIrqWait failed: device_id=0, tsId=0, groupId=832, drvRetCode=16. [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.531.362 [api_impl.cc:3541] 1344137 ProcessReport: CqReportIrqWait, retCode=0x711000c [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.635.308 [npu_driver.cc:2883] 1344137 CqReportIrqWait: [drv api] halCqReportIrqWait failed: device_id=0, tsId=0, groupId=832, drvRetCode=16. [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.635.343 [api_impl.cc:3541] 1344137 ProcessReport: CqReportIrqWait, retCode=0x711000c [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.739.336 [npu_driver.cc:2883] 1344137 CqReportIrqWait: [drv api] halCqReportIrqWait failed: device_id=0, tsId=0, groupId=832, drvRetCode=16. [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.739.386 [api_impl.cc:3541] 1344137 ProcessReport: CqReportIrqWait, retCode=0x711000c [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.843.339 [npu_driver.cc:2883] 1344137 CqReportIrqWait: [drv api] halCqReportIrqWait failed: device_id=0, tsId=0, groupId=832, drvRetCode=16. [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.843.393 [api_impl.cc:3541] 1344137 ProcessReport: CqReportIrqWait, retCode=0x711000c [EVENT] CCECPU(1344114,python3):2023-10-27-11:27:12.847.470 [aicpusd_worker.cpp:166][WaitForStop][tid:1344114] WaitForStop end. [EVENT] CCECPU(1344114,python3):2023-10-27-11:27:12.848.048 [aicpusd_lastword.cpp:39][operator()][tid:1344114] UnReg lastword mark[aicpu sd event mng] key[0]. [EVENT] CCECPU(1344114,python3):2023-10-27-11:27:12.848.177 [aicpusd_mpi_mgr.cpp:48][PrintStatisticInfo][tid:1344114] Mpi Dvpp event statistic: [0] [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.947.327 [npu_driver.cc:2883] 1344137 CqReportIrqWait: [drv api] halCqReportIrqWait failed: device_id=0, tsId=0, groupId=832, drvRetCode=16. [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:12.947.377 [api_impl.cc:3541] 1344137 ProcessReport: CqReportIrqWait, retCode=0x711000c [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.315 [npu_driver.cc:2883] 1344137 CqReportIrqWait: [drv api] halCqReportIrqWait failed: device_id=0, tsId=0, groupId=832, drvRetCode=16. [WARNING] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.352 [api_impl.cc:3541] 1344137 ProcessReport: CqReportIrqWait, retCode=0x711000c [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.428 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.452 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.552 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.569 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.597 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.609 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.631 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.642 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.662 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.673 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.693 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.704 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.722 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000 [ERROR] ASCENDCL(1344114,python3):2023-10-27-11:27:13.051.733 [callback.cpp:134]1344137 aclrtProcessReport: process report failed, runtime errorCode = 507000 [ERROR] RUNTIME(1344114,python3):2023-10-27-11:27:13.051.753 [api_c.cc:3088]1344137 rtProcessReport:Null apiInstance pointer, ErrCode=507000
评论 (
0
)
登录
后才可以发表评论
状态
DONE
TODO
Analysing
ACCEPTED
WIP
Feedback
TEST
DONE
REJECTED
负责人
未设置
标签
未设置
项目
未立项任务
未立项任务
里程碑
未关联里程碑
未关联里程碑
Pull Requests
未关联
未关联
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
未关联
分支 (
-
)
标签 (
-
)
开始日期   -   截止日期
-
置顶选项
不置顶
置顶等级:高
置顶等级:中
置顶等级:低
优先级
不指定
严重
主要
次要
不重要
预计工期
(小时)
参与者(1)
C++
1
https://gitee.com/ascend/mindsdk-referenceapps.git
git@gitee.com:ascend/mindsdk-referenceapps.git
ascend
mindsdk-referenceapps
mindsdk-referenceapps
点此查找更多帮助
搜索帮助
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册