# PythonScript **Repository Path**: kmrdBin/python-script ## Basic Information - **Project Name**: PythonScript - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-02-04 - **Last Updated**: 2025-05-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # python脚本合集: ## 下载b站合集 downloadB.py ## 统计视频合集时长 printVideoDuration.py ## 视频转gif mp4ToGif.py ``` python3 mp4ToGif.py --input '/路径/视频.后缀' --target_size '5' --start_time '00:00:00' --duration '8' python3 mp4ToGif.py --input '/路径/视频.后缀' --start_time '00:00:00' --duration '16' ``` ## Socket.IO客户端连接 socketioClient.py ```bash # 基本连接 python3 socketioClient.py --url "http://服务器地址:端口" # 带命名空间和认证 python3 socketioClient.py --url "http://服务器地址:端口" --namespace "/自定义" --token "认证令牌" ```