Showing
2 changed files
with
4 additions
and
2 deletions
| ... | @@ -15,6 +15,8 @@ | ... | @@ -15,6 +15,8 @@ |
| 15 | - chmod -R 777 storage/framework | 15 | - chmod -R 777 storage/framework |
| 16 | - chmod -R 777 storage/app/public | 16 | - chmod -R 777 storage/app/public |
| 17 | 17 | ||
| 18 | +- php artisan horizon:publish | ||
| 19 | + | ||
| 18 | ## 禁用函数移除 | 20 | ## 禁用函数移除 |
| 19 | - symlink | 21 | - symlink |
| 20 | - pron_open | 22 | - pron_open | ... | ... |
| ... | @@ -279,7 +279,7 @@ class MakeVideo implements ShouldQueue | ... | @@ -279,7 +279,7 @@ class MakeVideo implements ShouldQueue |
| 279 | $video = $this->getTempPath(); | 279 | $video = $this->getTempPath(); |
| 280 | if ($signature !== '') { | 280 | if ($signature !== '') { |
| 281 | $cmd = $this->ffmpeg . ' -y -i ' . escapeshellarg($last_frame_video) . | 281 | $cmd = $this->ffmpeg . ' -y -i ' . escapeshellarg($last_frame_video) . |
| 282 | - ' -loop 1 -i ' . escapeshellarg($end_wallpaper) . | 282 | + ' -t 0.7 -loop 1 -i ' . escapeshellarg($end_wallpaper) . |
| 283 | ' -filter_complex "'. | 283 | ' -filter_complex "'. |
| 284 | 'geq=lum=\'if(lte(T,0.6), 255*T*(1/0.6),255)\',format=gray[grad];'. | 284 | 'geq=lum=\'if(lte(T,0.6), 255*T*(1/0.6),255)\',format=gray[grad];'. |
| 285 | '[0:v]boxblur=8[blur];'. | 285 | '[0:v]boxblur=8[blur];'. |
| ... | @@ -296,7 +296,7 @@ class MakeVideo implements ShouldQueue | ... | @@ -296,7 +296,7 @@ class MakeVideo implements ShouldQueue |
| 296 | '" ' . escapeshellarg($video); | 296 | '" ' . escapeshellarg($video); |
| 297 | } else { | 297 | } else { |
| 298 | $cmd = $this->ffmpeg . ' -y -i ' . escapeshellarg($last_frame_video) . | 298 | $cmd = $this->ffmpeg . ' -y -i ' . escapeshellarg($last_frame_video) . |
| 299 | - ' -loop 1 -i ' . escapeshellarg($end_wallpaper) . | 299 | + ' -t 0.7 -loop 1 -i ' . escapeshellarg($end_wallpaper) . |
| 300 | ' -filter_complex "'. | 300 | ' -filter_complex "'. |
| 301 | 'geq=lum=\'if(lte(T,0.6), 255*T*(1/0.6),255)\',format=gray[grad];'. | 301 | 'geq=lum=\'if(lte(T,0.6), 255*T*(1/0.6),255)\',format=gray[grad];'. |
| 302 | '[0:v]boxblur=8[blur];'. | 302 | '[0:v]boxblur=8[blur];'. | ... | ... |
-
Please register or login to post a comment