Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a010acfb7d | ||
|
|
62f8cf04a6 | ||
|
|
70dcc8f8ba |
19
backup/888
19
backup/888
@@ -1,19 +0,0 @@
|
||||
ffmpeg_command = [
|
||||
"ffmpeg", "-loglevel", "info",
|
||||
"-rw_timeout", "15000000",
|
||||
"-reconnect", "1", "-reconnect_at_eof", "1", "-reconnect_streamed", "1",
|
||||
"-reconnect_delay_max", "15",
|
||||
"-fflags", "+genpts+discardcorrupt",
|
||||
"-err_detect", "ignore_err",
|
||||
"-thread_queue_size", "8192",
|
||||
"-headers", douyin_headers,
|
||||
"-i", real_url,
|
||||
"-vf", "scale=720:1280:force_original_aspect_ratio=decrease,pad=720:1280:(ow-iw)/2:(oh-ih)/2:black",
|
||||
"-c:v", codec_v, "-preset", preset_v, *tune_param,
|
||||
"-b:v", "2500k", "-maxrate", "2500k", "-bufsize", "5000k",
|
||||
"-g", "50", "-r", "25", "-pix_fmt", "yuv420p",
|
||||
"-c:a", "aac", "-b:a", "128k", "-ar", "44100", "-ac", "2",
|
||||
"-af", "aresample=async=1:first_pts=0",
|
||||
"-flags", "+global_header",
|
||||
"-f", "flv", youtube_rtmp
|
||||
]
|
||||
@@ -1,5 +1,5 @@
|
||||
https://live.douyin.com/456576000931,主播: 介休〖烩饕〗大块牛肉饭「摆摊」
|
||||
https://live.douyin.com/272489828538,主播: 90后摆摊卖肉夹馍
|
||||
https://live.douyin.com/782322393954
|
||||
https://live.douyin.com/208318182053,主播: 小碗(创业版)
|
||||
https://live.douyin.com/646935372639,主播: 小雪摆摊记
|
||||
https://live.douyin.com/956877163856,主播: 饭饱饱
|
||||
@@ -7,12 +7,16 @@ https://live.douyin.com/881451071780,主播: YINING一柠手打柠檬茶
|
||||
https://live.douyin.com/270513395244,主播: 小喻的摆摊日记
|
||||
https://live.douyin.com/742474761291,主播: 阿诺椰子•
|
||||
https://live.douyin.com/820845121901,主播: 地摊闺蜜_创意寿司_(马儿努力版)
|
||||
https://live.douyin.com/980855021360,主播: 图爸摆摊卖枣糕(日照首家)教学员
|
||||
https://live.douyin.com/46238285118
|
||||
https://live.douyin.com/497155982953,主播: 想吃糖葫芦
|
||||
https://live.douyin.com/349973241990,主播: 元气满满饭团(摆摊不摆烂版)
|
||||
https://live.douyin.com/814839174401,主播: 飞飞摆摊不摆烂
|
||||
https://live.douyin.com/597618993066,主播: 婷婷的茶生活
|
||||
https://live.douyin.com/782322393954,主播: 小葵(摆摊版)
|
||||
https://live.douyin.com/16531926455,主播: 木黎黎
|
||||
https://live.douyin.com/739670432305,主播: 干饭007
|
||||
https://live.douyin.com/486789870173,主播: 凉皮西施—豆豆
|
||||
https://live.douyin.com/15652099787,主播: 莹莹在摆摊
|
||||
https://live.douyin.com/572442812068,主播: 小小
|
||||
https://live.douyin.com/477961427964,主播: 小鱼
|
||||
|
||||
@@ -8,7 +8,7 @@ language(zh_cn/en) = zh_cn
|
||||
保存文件名是否包含标题 = 否
|
||||
是否去除名称中的表情符号 = 是
|
||||
视频保存格式ts|mkv|flv|mp4|mp3音频|m4a音频 = ts
|
||||
原画|超清|高清|标清|流畅 = 原画
|
||||
原画|超清|高清|标清|流畅 = 高清
|
||||
是否使用代理ip(是/否) = 否
|
||||
代理地址 =
|
||||
同一时间访问网络的线程数 = 3
|
||||
|
||||
145
main.py
145
main.py
@@ -1672,8 +1672,8 @@ def start_record(url_data: tuple, count_variable: int = -1) -> None:
|
||||
|
||||
# ========== 参数配置(保留你原始配置) ==========
|
||||
# YT_STREAM_KEY = "qxvb-r47b-r5ju-6ud3-6k7z"
|
||||
youtube_rtmp = f"rtmp://a.rtmp.youtube.com/live2/x04z-564w-aks7-embw-30y4"
|
||||
# youtube_rtmp="rtmp://192.168.31.184/live/douyin"
|
||||
# youtube_rtmp = f"rtmp://a.rtmp.youtube.com/live2/x04z-564w-aks7-embw-30y4"
|
||||
srs_rtmp="rtmp://127.0.0.1/live/douyin"
|
||||
|
||||
# # ←←←← 在这块代码的上方先定义你要推的多个地址 ←←←←
|
||||
# rtmp_targets = [
|
||||
@@ -1688,14 +1688,10 @@ def start_record(url_data: tuple, count_variable: int = -1) -> None:
|
||||
|
||||
MAX_RETRY_DELAY = 90
|
||||
INITIAL_RETRY_DELAY = 3
|
||||
STDERR_QUEUE_TIMEOUT = 1.0
|
||||
|
||||
|
||||
NO_FRAME_TIMEOUT = 120
|
||||
START_CHECK_AFTER = 25
|
||||
STALE_OUTPUT_SECONDS = 120 #120
|
||||
|
||||
|
||||
START_CHECK_AFTER = 25.0
|
||||
STALE_OUTPUT_SECONDS = 40
|
||||
STDERR_QUEUE_TIMEOUT = 1.0
|
||||
|
||||
END_KEYWORDS = [
|
||||
"connection reset by peer",
|
||||
@@ -1736,111 +1732,57 @@ def start_record(url_data: tuple, count_variable: int = -1) -> None:
|
||||
"Referer: https://live.douyin.com/\r\n"
|
||||
"Origin: https://live.douyin.com\r\n"
|
||||
)
|
||||
|
||||
# 720p
|
||||
# ffmpeg_command = [
|
||||
# "ffmpeg", "-y", "-loglevel", "info", "-nostdin", "-re",
|
||||
# "-stats", "-stats_period", "1",
|
||||
# "-rw_timeout", "30000000",
|
||||
# "ffmpeg", "-loglevel", "info",
|
||||
# "-rw_timeout", "15000000",
|
||||
# "-reconnect", "1", "-reconnect_at_eof", "1", "-reconnect_streamed", "1",
|
||||
# "-reconnect_delay_max", "5",
|
||||
# "-fflags", "+genpts+discardcorrupt+nobuffer+flush_packets",
|
||||
# "-flags", "low_delay",
|
||||
# "-reconnect_delay_max", "15",
|
||||
# "-fflags", "+genpts+discardcorrupt",
|
||||
# "-err_detect", "ignore_err",
|
||||
# "-max_delay", "80000",
|
||||
# "-thread_queue_size", "2048",
|
||||
|
||||
# "-thread_queue_size", "8192",
|
||||
# "-headers", douyin_headers,
|
||||
# "-i", real_url,
|
||||
# # 720p
|
||||
# "-vf", "fps=30,scale=720:1280:force_original_aspect_ratio=decrease:flags=lanczos,pad=720:1280:(ow-iw)/2:(oh-ih)/2:black",
|
||||
# "-c:v", "libx264",
|
||||
# "-preset", "fast",
|
||||
# # "-tune", "zerolatency",
|
||||
# "-profile:v", "high",
|
||||
# # 720p
|
||||
# # "-minrate", "3200k","-b:v", "3200k", "-maxrate", "3200k", "-bufsize", "6400k", # bufsize = 2× bitrate,保持真 CBR
|
||||
# "-b:v", "2600k","-maxrate", "3000k","-bufsize", "5200k",
|
||||
# "-vsync", "cfr",
|
||||
# "-g", "60", "-keyint_min", "60",
|
||||
# "-r", "30",
|
||||
# "-bf", "0",
|
||||
# "-sc_threshold", "0",
|
||||
# # "-nal-hrd", "cbr", # 改2:强制 CBR
|
||||
# # 720p
|
||||
# # "-x264-params", "nal-hrd=cbr:force-cfr=1:scenecut=0:filler=1", # 改3:简化 params,锁死 CBR
|
||||
# "-x264-params", "force-cfr=1:scenecut=0:open_gop=0:sync-lookahead=0",
|
||||
# "-pix_fmt", "yuv420p",
|
||||
# "-c:a", "aac", "-b:a", "128k", "-ar", "48000", "-ac", "2", # 改4:1080p可音频上 128k(YouTube 推荐)
|
||||
# "-vf", "scale=720:1280:force_original_aspect_ratio=decrease,pad=720:1280:(ow-iw)/2:(oh-ih)/2:black",
|
||||
# "-c:v", codec_v, "-preset", preset_v, *tune_param,
|
||||
# "-b:v", "2500k", "-maxrate", "2500k", "-bufsize", "5000k",
|
||||
# "-g", "50", "-r", "25", "-pix_fmt", "yuv420p",
|
||||
# "-c:a", "aac", "-b:a", "128k", "-ar", "44100", "-ac", "2",
|
||||
# "-af", "aresample=async=1:first_pts=0",
|
||||
|
||||
# "-flags", "+global_header",
|
||||
# "-flvflags", "no_duration_filesize",
|
||||
# "-f", "flv", youtube_rtmp
|
||||
# # "-f", "tee",
|
||||
# # "-map", "0:v", "-map", "0:a",
|
||||
# # tee_outputs
|
||||
# ]
|
||||
|
||||
|
||||
# 1080p
|
||||
ffmpeg_command = [
|
||||
"ffmpeg", "-y", "-loglevel", "info", "-nostdin", "-re",
|
||||
"-stats", "-stats_period", "1",
|
||||
"-rw_timeout", "30000000",
|
||||
"-reconnect", "1", "-reconnect_at_eof", "1", "-reconnect_streamed", "1",
|
||||
"-reconnect_delay_max", "5",
|
||||
"-fflags", "+genpts+discardcorrupt+nobuffer+flush_packets",
|
||||
"-flags", "low_delay",
|
||||
"-err_detect", "ignore_err",
|
||||
"-max_delay", "80000",
|
||||
"-thread_queue_size", "2048",
|
||||
|
||||
"-headers", douyin_headers,
|
||||
"-i", real_url,
|
||||
# 1080p
|
||||
"-vf","fps=30,scale=1080:1920:force_original_aspect_ratio=decrease:flags=lanczos,pad=1080:1920:(ow-iw)/2:(oh-ih)/2:black",
|
||||
"-c:v", "libx264",
|
||||
"-preset", "veryfast",
|
||||
"-tune", "zerolatency",
|
||||
"-profile:v", "high",
|
||||
# 1080p
|
||||
"-b:v", "5200k", "-maxrate", "5800k", "-bufsize", "10400k", # 改1:2× bufsize,真 CBR
|
||||
"-vsync", "cfr",
|
||||
"-g", "60", "-keyint_min", "60",
|
||||
"-r", "30",
|
||||
"-bf", "0",
|
||||
"-sc_threshold", "0",
|
||||
# "-nal-hrd", "cbr", # 改2:强制 CBR
|
||||
# 1080p
|
||||
"-x264-params","force-cfr=1:scenecut=0:open_gop=0:sync-lookahead=0",
|
||||
"-pix_fmt", "yuv420p",
|
||||
"-c:a", "aac", "-b:a", "128k", "-ar", "44100", "-ac", "2",
|
||||
"-af", "aresample=async=1:first_pts=0",
|
||||
|
||||
"-flags", "+global_header",
|
||||
"-flvflags", "no_duration_filesize",
|
||||
"-f", "flv", youtube_rtmp
|
||||
]
|
||||
|
||||
|
||||
# srs内网配置
|
||||
# ffmpeg_command = [
|
||||
# "ffmpeg",
|
||||
# "-loglevel", "info",
|
||||
# "-err_detect", "ignore_err+explode",
|
||||
# "-fflags", "+genpts+discardcorrupt+igndts",
|
||||
# "-reconnect", "1",
|
||||
# "-reconnect_at_eof", "1",
|
||||
# "-reconnect_streamed", "1",
|
||||
# "-reconnect_delay_max", "7",
|
||||
# "-rw_timeout", "30000000",
|
||||
# "-headers", douyin_headers,
|
||||
ffmpeg_command = [
|
||||
"ffmpeg",
|
||||
"-loglevel", "info",
|
||||
|
||||
# # ===== 输入源 =====
|
||||
# "-i", real_url,
|
||||
# "-c:v", "copy",
|
||||
# "-c:a", "copy",
|
||||
# "-max_muxing_queue_size", "9999",
|
||||
# "-f", "flv", srs_rtmp
|
||||
# ]
|
||||
# ===== 所有「输入选项」必须放在 -i 之前!=====
|
||||
# "-re", # 必须在这!按真实帧率读
|
||||
"-err_detect", "ignore_err+explode",
|
||||
"-fflags", "+genpts+discardcorrupt+igndts",
|
||||
"-reconnect", "1",
|
||||
"-reconnect_at_eof", "1",
|
||||
"-reconnect_streamed", "1",
|
||||
"-reconnect_delay_max", "7",
|
||||
"-rw_timeout", "30000000",
|
||||
"-headers", douyin_headers,
|
||||
|
||||
# ===== 输入源 =====
|
||||
"-i", real_url,
|
||||
|
||||
# ===== 输出选项(放在 -i 之后)=====
|
||||
"-c:v", "copy",
|
||||
"-c:a", "copy",
|
||||
# "-copyts",
|
||||
# "-avoid_negative_ts", "disabled",
|
||||
"-max_muxing_queue_size", "9999",
|
||||
"-f", "flv", srs_rtmp
|
||||
]
|
||||
|
||||
# ---- 单层重试循环(清晰可控) ----
|
||||
proc = None
|
||||
@@ -2045,7 +1987,6 @@ def start_record(url_data: tuple, count_variable: int = -1) -> None:
|
||||
|
||||
|
||||
def backup_file(file_path: str, backup_dir_path: str, limit_counts: int = 6) -> None:
|
||||
|
||||
try:
|
||||
if not os.path.exists(backup_dir_path):
|
||||
os.makedirs(backup_dir_path)
|
||||
|
||||
Reference in New Issue
Block a user