FixNewVideoTasks720pCommand.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. <?php
  2. namespace App\Console\Commands;
  3. use GuzzleHttp\Client;
  4. use Illuminate\Console\Command;
  5. use Illuminate\Support\Facades\DB;
  6. /**
  7. * 处理 id >= 12835 的新数据视频任务(动漫 act/分镜链路):
  8. * 1. 仅处理 video_resolution=480p 且 mp_anime_episodes 对应分集设置为 sr_720p 的任务
  9. * (通过 alias_act_id/alias_segment_id 关联 mp_episode_segments 再取分集 video_resolution),
  10. * 分集未设置 sr_720p 的不做超分修复;
  11. * 2. task_id 为空的任务视为用户手动上传的视频,不做检测与超分处理;
  12. * 3. 检查上述任务的 result_url、compressed_url 是否真的是 720p:
  13. * - result 为 480p 档 -> 本地超分到 720p,重新压缩,更新任务两列 URL;
  14. * - result 已是 720p+ 但 compressed 为 480p 档 -> 基于 result 重新压缩;
  15. * - 同步关联 mp_episode_segments 的 origin_video_url / video_url(仅 URL,其余字段不动);
  16. * - 同步关联 mp_anime_records 中 assistant 记录(video_url 指向该任务旧 result_url)为修复后的 result_url。
  17. *
  18. * 注意:本命令依赖 ffmpeg/ffprobe 且需在 APP_ENV != local 的环境执行
  19. * (upgrade480pTo720p / compressVideo 在 local 会短路)。
  20. */
  21. class FixNewVideoTasks720pCommand extends Command
  22. {
  23. /**
  24. * @var string
  25. */
  26. protected $signature = 'video:fix-new-tasks-720p
  27. {--min-id=12835 : 只处理 id 大于等于该值的任务}
  28. {--apply : 真正执行超分与更新;不带此参数时仅探测并输出报告}';
  29. /**
  30. * @var string
  31. */
  32. protected $description = '检查并修复 id>=12835 新数据任务的 720p 交付(超分 result/compressed 并同步分镜 URL)';
  33. /**
  34. * @return int
  35. */
  36. public function handle(): int
  37. {
  38. if (env('APP_ENV') === 'local') {
  39. $this->error('本命令需要在 APP_ENV != local 且安装 ffmpeg/ffprobe 的环境执行(local 下超分/压缩 helper 会短路)。');
  40. return 1;
  41. }
  42. $apply = (bool)$this->option('apply');
  43. $minId = (int)$this->option('min-id');
  44. $this->info($apply ? '开始执行修复(--apply)...' : '检查模式:仅探测与输出报告,加 --apply 才会超分并更新。');
  45. $tasks = DB::table('mp_generate_video_tasks')
  46. ->select([
  47. 'id', 'video_resolution', 'status', 'api_type',
  48. 'alias_segment_id', 'alias_act_id', 'task_id', 'result_url', 'compressed_url',
  49. 'extra_params', 'charge_info',
  50. ])
  51. ->where('id', '>=', $minId)
  52. // 仅处理 480p 任务;task_id 为空 = 用户手动上传的视频,不处理
  53. ->whereRaw('LOWER(TRIM(video_resolution)) = ?', ['480p'])
  54. ->whereNotNull('task_id')
  55. ->where('task_id', '<>', '')
  56. ->where('status', 'success')
  57. ->whereNotNull('result_url')
  58. ->where('result_url', '<>', '')
  59. ->orderBy('id')
  60. ->get();
  61. $this->line(sprintf('候选任务数:%d', $tasks->count()));
  62. $alreadyOk = 0;
  63. $needResultFix = 0;
  64. $needCompressedFix = 0;
  65. $probeFailed = 0;
  66. $updated = 0;
  67. $skippedManual = 0;
  68. $skippedEpisode = 0;
  69. foreach ($tasks as $task) {
  70. // 防御:task_id 为空视为人工上传视频(查询已排除,双保险)
  71. if (empty($task->task_id)) {
  72. $skippedManual++;
  73. $this->warn(sprintf('#%d task_id 为空(疑似用户手动上传),跳过检测与超分', $task->id));
  74. continue;
  75. }
  76. // 仅当对应分集设置的 video_resolution 为 sr_720p 时才需要修复
  77. $episodeResolution = $this->resolveEpisodeResolution($task);
  78. if ($episodeResolution !== 'sr_720p') {
  79. $skippedEpisode++;
  80. $this->line(sprintf(
  81. '#%d 对应分集 video_resolution=%s(非 sr_720p),跳过超分修复',
  82. $task->id,
  83. $episodeResolution === '' ? '未知' : $episodeResolution
  84. ));
  85. continue;
  86. }
  87. $resultProbe = $this->probeUrl($task->result_url);
  88. if (!$resultProbe['ok']) {
  89. $probeFailed++;
  90. $this->warn(sprintf('#%d 探测 result_url 失败:%s', $task->id, $task->result_url));
  91. continue;
  92. }
  93. $resultShort = min($resultProbe['width'], $resultProbe['height']);
  94. $resultIs480 = $resultShort > 0 && abs($resultShort - 480) <= 60;
  95. $compressedShort = null;
  96. if (!empty($task->compressed_url)) {
  97. $compProbe = $this->probeUrl($task->compressed_url);
  98. if ($compProbe['ok']) {
  99. $compressedShort = min($compProbe['width'], $compProbe['height']);
  100. }
  101. }
  102. $compressedIs480 = $compressedShort !== null && abs($compressedShort - 480) <= 60;
  103. $this->line(sprintf(
  104. '#%d [%s] result=%dx%d compressed=%s%s',
  105. $task->id,
  106. $task->video_resolution,
  107. $resultProbe['width'],
  108. $resultProbe['height'],
  109. $compressedShort === null ? '?' : $compressedShort,
  110. $compressedShort === null ? ' (探测失败)' : ''
  111. ));
  112. $needChange = false;
  113. $newResult = $task->result_url;
  114. $newCompressed = $task->compressed_url;
  115. if ($resultIs480) {
  116. $needResultFix++;
  117. $needChange = true;
  118. if ($apply) {
  119. $enhanced = upgrade480pTo720p($task->result_url, 'video', false, '720p');
  120. if ($enhanced && $enhanced !== $task->result_url) {
  121. $newResult = $enhanced;
  122. $compressed = compressVideo($enhanced);
  123. $newCompressed = $compressed ?: $enhanced;
  124. $this->line(sprintf(
  125. ' -> 超分完成:%s%s',
  126. $newResult,
  127. $compressed ? '' : '(重新压缩失败,compressed_url 使用超分结果)'
  128. ));
  129. } else {
  130. $this->warn(sprintf('#%d 超分失败,保留原 result_url', $task->id));
  131. $needChange = false;
  132. }
  133. }
  134. } elseif ($compressedIs480 && !empty($task->compressed_url)) {
  135. $needCompressedFix++;
  136. $needChange = true;
  137. if ($apply) {
  138. $compressed = compressVideo($task->result_url);
  139. if ($compressed) {
  140. $newCompressed = $compressed;
  141. $this->line(' -> 基于已合格的 result 重新压缩完成');
  142. } else {
  143. $this->warn(sprintf('#%d 重新压缩失败,compressed_url 保持不变', $task->id));
  144. $needChange = false;
  145. }
  146. }
  147. } else {
  148. $alreadyOk++;
  149. }
  150. if ($apply) {
  151. $updates = $this->buildSr720pUpdates($task);
  152. $urlChanged = false;
  153. // 超分/重压成功时同时替换 URL
  154. if ($needChange) {
  155. $urlChanged = true;
  156. $updates['result_url'] = $newResult;
  157. $updates['compressed_url'] = $newCompressed;
  158. }
  159. if (!empty($updates)) {
  160. DB::table('mp_generate_video_tasks')
  161. ->where('id', $task->id)
  162. ->update($updates);
  163. $updated++;
  164. }
  165. if ($urlChanged) {
  166. $segmentSynced = $this->syncSegmentUrls($task, $newResult, $newCompressed);
  167. $recordSynced = $this->syncAnimeRecordUrls($task, $newResult);
  168. // 只更新不新增;完全没有 assistant 记录时需要即时通知人工确认
  169. if ($recordSynced === 0) {
  170. $assistantTotal = DB::table('mp_anime_records')
  171. ->where('video_task_id', $task->id)
  172. ->where('role', 'assistant')
  173. ->count();
  174. if ($assistantTotal === 0) {
  175. $notice = sprintf(
  176. '任务#%d 在 mp_anime_records 中完全没有 assistant 记录(只更新不新增),请人工确认是否需要补录',
  177. $task->id
  178. );
  179. $this->warn($notice);
  180. dLog('command')->warning($notice, [
  181. 'task_id' => $task->id,
  182. 'old_result_url' => $task->result_url,
  183. 'new_result_url' => $newResult,
  184. ]);
  185. logDB('command', 'warning', $notice, [
  186. 'task_id' => $task->id,
  187. 'old_result_url' => $task->result_url,
  188. 'new_result_url' => $newResult,
  189. ]);
  190. } else {
  191. $this->warn(sprintf(
  192. '任务#%d 有 %d 条 assistant 记录但均未指向旧 result_url,跳过 anime_records 同步',
  193. $task->id,
  194. $assistantTotal
  195. ));
  196. }
  197. }
  198. $this->line(sprintf(
  199. '#%d 已更新任务 URL 与 sr_720p 档位(分镜同步:%s;anime_records 同步:%d 条)',
  200. $task->id,
  201. $segmentSynced ? '是' : '跳过/无关联',
  202. $recordSynced
  203. ));
  204. } else {
  205. $this->line(sprintf('#%d 视频已合格,仅将任务档位与 JSON 副本更新为 sr_720p', $task->id));
  206. }
  207. }
  208. }
  209. $this->info(sprintf(
  210. '汇总:待超分 result=%d,需重压 compressed=%d,已合格=%d,探测失败=%d,已更新任务=%d,跳过人工上传=%d,跳过非sr_720p分集=%d',
  211. $needResultFix,
  212. $needCompressedFix,
  213. $alreadyOk,
  214. $probeFailed,
  215. $updated,
  216. $skippedManual,
  217. $skippedEpisode
  218. ));
  219. if (!$apply) {
  220. $this->line('以上为检查结果;确认后在生产环境加 --apply 执行。');
  221. }
  222. return 0;
  223. }
  224. /**
  225. * 下载并探测视频分辨率
  226. *
  227. * @param string $url
  228. * @return array{ok:bool, width:int, height:int}
  229. */
  230. private function probeUrl(string $url): array
  231. {
  232. $tempDir = storage_path('app/temp/video_fix_check');
  233. if (!is_dir($tempDir)) {
  234. mkdir($tempDir, 0775, true);
  235. }
  236. $inputFile = '';
  237. try {
  238. $ext = getVideoExtFromUrl($url) ?: '.mp4';
  239. $inputFile = $tempDir . '/' . uniqid('vfix_') . bin2hex(random_bytes(3)) . $ext;
  240. $client = new Client(['timeout' => 300, 'verify' => false]);
  241. $client->get($url, ['sink' => $inputFile]);
  242. if (!file_exists($inputFile) || filesize($inputFile) <= 0) {
  243. return ['ok' => false, 'width' => 0, 'height' => 0];
  244. }
  245. $ffprobe = env('FFPROBE_PATH', 'ffprobe');
  246. $cmd = '"' . $ffprobe . '" -v quiet -print_format json -show_streams "' . $inputFile . '" 2>&1';
  247. $output = shell_exec($cmd);
  248. $info = json_decode((string)$output, true);
  249. $width = 0;
  250. $height = 0;
  251. if (isset($info['streams']) && is_array($info['streams'])) {
  252. foreach ($info['streams'] as $stream) {
  253. if (isset($stream['codec_type']) && $stream['codec_type'] === 'video') {
  254. $width = (int)($stream['width'] ?? 0);
  255. $height = (int)($stream['height'] ?? 0);
  256. break;
  257. }
  258. }
  259. }
  260. return ['ok' => $width > 0 && $height > 0, 'width' => $width, 'height' => $height];
  261. } catch (\Throwable $e) {
  262. return ['ok' => false, 'width' => 0, 'height' => 0];
  263. } finally {
  264. if ($inputFile && file_exists($inputFile)) {
  265. @unlink($inputFile);
  266. }
  267. }
  268. }
  269. /**
  270. * 通过任务的 alias_act_id / alias_segment_id 关联分镜,再取对应分集的 video_resolution
  271. *
  272. * @param object $task
  273. * @return string 小写分集分辨率;无法关联时返回空字符串
  274. */
  275. private function resolveEpisodeResolution($task): string
  276. {
  277. $segment = null;
  278. if (!empty($task->alias_act_id)) {
  279. $segment = DB::table('mp_episode_segments')
  280. ->where('id', $task->alias_act_id)
  281. ->first(['episode_id']);
  282. } elseif (!empty($task->alias_segment_id)) {
  283. $segment = DB::table('mp_episode_segments')
  284. ->where('segment_id', $task->alias_segment_id)
  285. ->first(['episode_id']);
  286. }
  287. if (!$segment || empty($segment->episode_id)) {
  288. return '';
  289. }
  290. $episode = DB::table('mp_anime_episodes')
  291. ->where('id', $segment->episode_id)
  292. ->first(['video_resolution']);
  293. return strtolower(trim((string)($episode->video_resolution ?? '')));
  294. }
  295. /**
  296. * 构建将任务档位与 JSON 副本统一为 sr_720p 的更新数组
  297. * video_resolution=480p -> sr_720p;extra_params / charge_info 中对应 480p 值同步替换
  298. *
  299. * @param object $task
  300. * @return array 需要更新的字段;无变化返回空数组
  301. */
  302. private function buildSr720pUpdates($task): array
  303. {
  304. $updates = [];
  305. $current = strtolower(trim((string)($task->video_resolution ?? '')));
  306. if ($current !== 'sr_720p') {
  307. $updates['video_resolution'] = 'sr_720p';
  308. }
  309. foreach (['extra_params' => true, 'charge_info' => false] as $column => $isExtra) {
  310. $raw = $task->{$column} ?? null;
  311. if (empty($raw)) {
  312. continue;
  313. }
  314. $json = json_decode($raw, true);
  315. if (!is_array($json)) {
  316. continue;
  317. }
  318. if ($this->normalize480ToSr720p($json, $isExtra)) {
  319. $updates[$column] = json_encode($json, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES);
  320. }
  321. }
  322. return $updates;
  323. }
  324. /**
  325. * 将 JSON 内 480p 分辨率副本替换为 sr_720p
  326. * extra_params:顶层 video_resolution / resolution 及 parameters.resolution;
  327. * charge_info:顶层 video_resolution
  328. *
  329. * @param array $json
  330. * @param bool $isExtra
  331. * @return bool 是否发生修改
  332. */
  333. private function normalize480ToSr720p(array &$json, bool $isExtra): bool
  334. {
  335. $changed = false;
  336. $fix = function (array &$arr, string $key) use (&$changed) {
  337. if (array_key_exists($key, $arr)
  338. && is_string($arr[$key])
  339. && strtolower(trim($arr[$key])) === '480p'
  340. && $arr[$key] !== 'sr_720p') {
  341. $arr[$key] = 'sr_720p';
  342. $changed = true;
  343. }
  344. };
  345. if ($isExtra) {
  346. foreach (['video_resolution', 'resolution'] as $key) {
  347. $fix($json, $key);
  348. }
  349. if (isset($json['parameters']) && is_array($json['parameters'])) {
  350. $fix($json['parameters'], 'resolution');
  351. }
  352. } else {
  353. $fix($json, 'video_resolution');
  354. }
  355. return $changed;
  356. }
  357. /**
  358. * 同步 mp_anime_records 中 assistant 对话记录的 video_url
  359. * 仅更新 video_task_id 匹配、role=assistant 且 video_url 仍指向该任务旧 result_url 的行,
  360. * 避免覆盖同 act 其他任务写入的记录。
  361. *
  362. * @param object $task
  363. * @param string $newResultUrl
  364. * @return int 更新的记录数
  365. */
  366. private function syncAnimeRecordUrls($task, string $newResultUrl): int
  367. {
  368. return DB::table('mp_anime_records')
  369. ->where('video_task_id', $task->id)
  370. ->where('role', 'assistant')
  371. ->where('video_url', $task->result_url)
  372. ->update(['video_url' => $newResultUrl]);
  373. }
  374. /**
  375. * 同步关联 mp_episode_segments 的 URL(仅 origin_video_url / video_url)
  376. * 仅当分镜当前指向的就是该任务旧 URL 时才更新,避免覆盖同一分镜更新任务的产物。
  377. *
  378. * @param object $task
  379. * @param string $newResultUrl
  380. * @param string $newCompressedUrl
  381. * @return bool
  382. */
  383. private function syncSegmentUrls($task, string $newResultUrl, string $newCompressedUrl): bool
  384. {
  385. if (!empty($task->alias_segment_id)) {
  386. $segment = DB::table('mp_episode_segments')
  387. ->where('segment_id', $task->alias_segment_id)
  388. ->first(['id', 'origin_video_url', 'video_url']);
  389. if (!$segment) {
  390. return false;
  391. }
  392. $pointsToThisTask = $segment->origin_video_url === $task->result_url
  393. || $segment->video_url === $task->compressed_url;
  394. if (!$pointsToThisTask) {
  395. return false;
  396. }
  397. DB::table('mp_episode_segments')
  398. ->where('id', $segment->id)
  399. ->update([
  400. 'origin_video_url' => $newResultUrl,
  401. 'video_url' => $newCompressedUrl,
  402. ]);
  403. return true;
  404. }
  405. if (!empty($task->alias_act_id)) {
  406. $segment = DB::table('mp_episode_segments')
  407. ->where('id', $task->alias_act_id)
  408. ->first(['id', 'origin_video_url', 'video_url']);
  409. if (!$segment) {
  410. return false;
  411. }
  412. $pointsToThisTask = $segment->origin_video_url === $task->result_url
  413. || $segment->video_url === $task->compressed_url;
  414. if (!$pointsToThisTask) {
  415. return false;
  416. }
  417. DB::table('mp_episode_segments')
  418. ->where('id', $segment->id)
  419. ->update([
  420. 'origin_video_url' => $newResultUrl,
  421. 'video_url' => $newCompressedUrl,
  422. ]);
  423. return true;
  424. }
  425. return false;
  426. }
  427. }