GeneratePreviewVideo.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <?php
  2. namespace App\Console\Commands;
  3. use App\Libraries\CommonHelper;
  4. use Illuminate\Console\Command;
  5. use Illuminate\Support\Carbon;
  6. use Illuminate\Support\Facades\DB;
  7. use Illuminate\Support\Facades\Log;
  8. use Dcat\Admin\Traits\HasUploadedFile;
  9. use FFMpeg\FFMpeg;
  10. use FFMpeg\Coordinate\TimeCode;
  11. /*
  12. * 生成预览10秒视频
  13. *
  14. * @author <EMAIL>
  15. * 运行命令:php artisan command:preview-video
  16. */
  17. class GeneratePreviewVideo extends Command
  18. {
  19. use HasUploadedFile;
  20. /**
  21. * The name and signature of the console command.
  22. *
  23. * @var string
  24. */
  25. protected $signature = 'command:preview-video';
  26. /**
  27. * The console command description.
  28. *
  29. * @var string
  30. */
  31. protected $description = '生成预览视频';
  32. public $timeSecond = 5;
  33. /**
  34. * Execute the console command.
  35. *
  36. * @return int
  37. */
  38. public function handle()
  39. {
  40. $disk = $this->disk('oss');
  41. //如果目录不存在则创建
  42. $localPreviewPath = storage_path('tmp/previews');
  43. if (!file_exists($localPreviewPath)) {
  44. mkdir($localPreviewPath, 0777, true);
  45. }
  46. $reslut = DB::table('site_preview_video')
  47. ->where('status', '==', 0) // 过滤非空 video 字段
  48. ->orderBy('id') // 按主键排序确保顺序
  49. ->limit(1) // 限制处理 1 条
  50. ->get();
  51. foreach ($reslut as $item) {
  52. try {
  53. /*
  54. $video_oss_url = $this->ossUrl($item->video_url);
  55. $fileName = basename($video_oss_url);
  56. $fileInfo = pathinfo($fileName);
  57. //下载$video_url到本地
  58. $localFilePath = $localPreviewPath. '/'. $fileName;
  59. $this->saveLocal($video_oss_url, $localFilePath);
  60. $previewName = $fileInfo['filename'] . '_preview.' . $fileInfo['extension'];
  61. $previewPath = storage_path('tmp/previews/'.$previewName);
  62. //截取视频前5秒
  63. $this->generatePreview($localFilePath, $previewPath);
  64. */
  65. $previewPath = '/home/wwwroot/test.mtb.com/mtb_dcatadmin_album/storage/tmp/previews/648856874065661952_preview.mp4';
  66. //上传到OSS
  67. $uploadPath = 'videos/uploads/previews/'. date('Ym');
  68. $disk->putFile($uploadPath,$previewPath);
  69. dd('success111');
  70. DB::table('site_preview_video')
  71. ->where('id', $item->id)
  72. ->update([
  73. 'preview_url' => $uploadPath . '/' . $previewName,
  74. 'status' => 1
  75. ]);
  76. } catch (\Exception $e) {
  77. DB::table('site_preview_video')
  78. ->where('id', $item->id)
  79. ->update([
  80. 'remark' => $e->getMessage(),
  81. 'status' => -1
  82. ]);
  83. }
  84. }
  85. //$this->importVideo();
  86. return dd('success');
  87. }
  88. private function saveLocal($url, $localPath) {
  89. $remote = fopen($url, 'rb');
  90. $local = fopen($localPath, 'wb');
  91. while (!feof($remote)) {
  92. fwrite($local, fread($remote, 8192)); // 8KB分块
  93. }
  94. fclose($remote);
  95. fclose($local);
  96. return $localPath;
  97. }
  98. private function ossUrl($url)
  99. {
  100. if (strpos($url, 'http:') === 0 || strpos($url, 'https:') === 0) {
  101. return $url;
  102. }
  103. return "https://mietublcom.oss-cn-hongkong.aliyuncs.com".'/'.$url;
  104. }
  105. public function generatePreview($inputUrl, $outputPath) {
  106. $ffmpeg = FFMpeg::create([
  107. 'ffmpeg.binaries' => '/usr/bin/ffmpeg',
  108. 'ffprobe.binaries' => '/usr/bin/ffprobe',
  109. 'timeout' => 300
  110. ]);
  111. $video = $ffmpeg->open($inputUrl);
  112. $video->filters()->clip(TimeCode::fromSeconds(0), TimeCode::fromSeconds($this->timeSecond));
  113. // 输出为H.264编码的MP4
  114. $format = new \FFMpeg\Format\Video\X264();
  115. $video->save($format, $outputPath);
  116. return $outputPath;
  117. }
  118. /*ssssssss
  119. * 把旧数据导入新的预览表
  120. */
  121. function importVideo()
  122. {
  123. try {
  124. // 分批处理数据,避免内存溢出
  125. DB::table('site_album')
  126. ->where('video', '<>', '[]') // 过滤非空 video 字段
  127. ->orderBy('id') // 按主键排序确保顺序
  128. ->chunkById(10000, function ($albums) { // 每次处理 100 条
  129. $insertData = [];
  130. foreach ($albums as $album) {
  131. // 跳过无效 JSON 数据
  132. $videos = json_decode($album->video, true);
  133. if (json_last_error() !== JSON_ERROR_NONE || !is_array($videos)) {
  134. Log::warning("Invalid JSON in album ID: {$album->id}");
  135. continue;
  136. }
  137. foreach ($videos as $video) {
  138. // 校验必要字段存在性
  139. if (empty($video['video_src']) || empty($video['cover'])) {
  140. Log::warning("Missing video_src or cover in album ID: {$album->id}");
  141. continue;
  142. }
  143. // 处理 URL 长度限制
  144. $videoUrl = substr($video['video_src'], 0, 255);
  145. // 构建插入数据
  146. $insertData[] = [
  147. 'video_url' => $videoUrl,
  148. 'preview_url' => '',
  149. 'status' => 0,
  150. 'created_at' => Carbon::now(),
  151. 'updated_at' => Carbon::now(),
  152. ];
  153. }
  154. }
  155. // 插入剩余数据
  156. if (!empty($insertData)) {
  157. DB::table('site_preview_video')->insert($insertData);
  158. }
  159. });
  160. return true;
  161. } catch (\Exception $e) {
  162. Log::error("Video import failed: " . $e->getMessage());
  163. return false;
  164. }
  165. }
  166. }