This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import json | |
| import re | |
| import openpyxl | |
| import os | |
| import time | |
| from datetime import datetime | |
| import glob # 用于文件名模式匹配 | |
| # 检查并获取最新的文件 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # 推流入口 | |
| start_push() { | |
| local url="$1" | |
| local output | |
| ffmpeg -i "$url" -c:v copy -c:a aac -b:a 320k -ar 44100 -strict -2 -f flv "<推流地址>" 2>&1 | |
| } | |
| # 监测推流质量 |