"app/git@code.castopod.org:ajeremias/castopod.git" did not exist on "e2b85a1d8fe3f22076c954055c203df26cc6b6f5"
Newer
Older
<?php
declare(strict_types=1);
/**
* @copyright 2021 Podlibre
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
* @link https://castopod.org/
*/
namespace MediaClipper;
use App\Entities\Episode;
use GdImage;
class VideoClip
{
/**
* @var array<string, string>
*/
public const FONTS = [
'episodeTitle' => 'Rubik-Bold.ttf',
'podcastTitle' => 'Inter-Regular.otf',
'subtitles' => 'Inter-SemiBold',
'episodeNumbering' => 'Inter-SemiBold.otf',
'timestamp' => 'NotoSansMono-Regular.ttf',
];
protected float $duration;
protected string $audioInput;
protected string $episodeCoverPath;
protected ?string $subtitlesInput = null;
protected string $soundbiteOutput;
protected string $subtitlesClipOutput;
protected string $videoClipBgOutput;
protected string $videoClipOutput;
protected ?string $episodeNumbering = null;
/**

Yassine Doghri
committed
* @var array<string, mixed>
*/
protected array $dimensions = [];
/**
* @var 'landscape'|'portrait'|'squared'
*/
protected string $format = 'landscape';
/**
* @param 'landscape'|'portrait'|'squared' $format
*/
public function __construct(
protected Episode $episode,
protected float $start,
protected float $end,
string $format,
) {
$this->duration = $end - $start;
$this->format = $format;
$this->episodeNumbering = $this->episodeNumbering($this->episode->number, $this->episode->season_number);
$this->dimensions = config('MediaClipper')
->formats[$format];
helper('media');
$this->audioInput = media_path($this->episode->audio_file_path);
$this->episodeCoverPath = media_path($this->episode->cover->path);
if ($this->episode->transcript_file_path !== null) {
$this->subtitlesInput = media_path($this->episode->transcript_file_path);
}
$podcastFolder = media_path("podcasts/{$this->episode->podcast->handle}");
$this->soundbiteOutput = $podcastFolder . "/{$this->episode->slug}-soundbite-{$this->start}-to-{$this->end}.mp3";
$this->subtitlesClipOutput = $podcastFolder . "/{$this->episode->slug}-subtitles-clip-{$this->start}-to-{$this->end}.srt";
$this->videoClipBgOutput = $podcastFolder . "/{$this->episode->slug}-clip-bg-{$this->format}.png";
$this->videoClipOutput = $podcastFolder . "/{$this->episode->slug}-clip-{$this->start}-to-{$this->end}-{$this->format}.mp4";
}
public function soundbite(): void
{
$soundbiteCmd = "ffmpeg -y -ss {$this->start} -t {$this->duration} -i {$this->audioInput} {$this->soundbiteOutput}";
exec($soundbiteCmd);
}
public function subtitlesClip(): void
{
if ($this->subtitlesInput) {
$subtitleClipCmd = "ffmpeg -y -i {$this->subtitlesInput} -ss {$this->start} -t {$this->duration} {$this->subtitlesClipOutput}";
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
exec($subtitleClipCmd);
}
}
public function generate(): void
{
$this->soundbite();
$this->subtitlesClip();
// check if video clip bg already exists before generating it
if (! file_exists($this->videoClipBgOutput)) {
$this->generateVideoClipBg();
}
$generateCmd = $this->getCmd();
shell_exec($generateCmd);
}
public function getCmd(): string
{
// @phpstan-ignore
$filters = [
"[0:a]aformat=channel_layouts=mono,showwaves=s={$this->dimensions['soundwaves']['width']}x{$this->dimensions['soundwaves']['height']}:mode=cline:rate=10:colors=white,format=yuva420p[waves]",
"[waves]scale={$this->dimensions['width']}:{$this->dimensions['height']}:flags=neighbor[resizedwaves]",
'[resizedwaves][3:v][4:v][5:v]threshold[cleanwaves]',
'[cleanwaves][2:v]alphamerge[waves_t]',
'[4:v][waves_t]overlay=x=0:y=0:shortest=1[waves_t2]',
'[waves_t2]split[m][a]',
'[m][a]alphamerge[waves_t3]',
"[waves_t3]scale={$this->dimensions['soundwaves']['rescaleWidth']}:{$this->dimensions['soundwaves']['rescaleHeight']}[waves_final]",
"[1:v][waves_final]overlay=x={$this->dimensions['soundwaves']['x']}:y={$this->dimensions['soundwaves']['y']}:shortest=1,drawtext=fontfile=" . $this->getFont(
'timestamp'
) . ":text='%{pts\:gmtime\:{$this->start}\:%H\\\\\\\\\\:%M\\\\\\\\\\:%S\}':x={$this->dimensions['timestamp']['x']}:y={$this->dimensions['timestamp']['y']}:fontsize={$this->dimensions['timestamp']['fontsize']}:fontcolor=white:box=1:boxcolor=0x00564A:boxborderw={$this->dimensions['timestamp']['padding']}[v3]",
"color=c=0x009486:s={$this->dimensions['width']}x{$this->dimensions['progressbar']['height']}[progressbar]",
"[v3][progressbar]overlay=-w+(w/{$this->duration})*t:0:shortest=1:format=rgb,subtitles={$this->subtitlesClipOutput}:fontsdir=" . config(
'MediaClipper'
)->fontsFolder . ":force_style='Fontname=" . self::FONTS['subtitles'] . ",Alignment=5,Fontsize={$this->dimensions['subtitles']['fontsize']},BorderStyle=1,Outline=0,Shadow=0,MarginL={$this->dimensions['subtitles']['marginL']},MarginR={$this->dimensions['subtitles']['marginR']},MarginV={$this->dimensions['subtitles']['marginV']}'[outv]",
];
$videoClipCmd = [
'ffmpeg -y',
"-i {$this->soundbiteOutput}",
"-loop 1 -framerate 30 -i {$this->videoClipBgOutput}",
"-loop 1 -framerate 30 -i {$this->dimensions['soundwaves']['mask']}",
"-f lavfi -i color=gray:{$this->dimensions['width']}x{$this->dimensions['height']}",
"-f lavfi -i color=black:{$this->dimensions['width']}x{$this->dimensions['height']}",
"-f lavfi -i color=white:{$this->dimensions['width']}x{$this->dimensions['height']}",
'-filter_complex "' . implode(';', $filters) . '"',
'-map "[outv]"',
'-map 0:a',
'-acodec copy',
'-vcodec libx264',
"{$this->videoClipOutput}",
];
// dd(implode(' ', $videoClipCmd));
return implode(' ', $videoClipCmd);
}
private function episodeNumbering(?int $episodeNumber = null, ?int $seasonNumber = null,): ?string
{
if (! $episodeNumber && ! $seasonNumber) {
return null;
}
$transKey = '';
$args = [];
if ($episodeNumber !== null) {
$args['episodeNumber'] = sprintf('%02d', $episodeNumber);
}
if ($seasonNumber !== null) {
$args['seasonNumber'] = sprintf('%02d', $seasonNumber);
}
if ($episodeNumber !== null && $seasonNumber !== null) {
$transKey = 'Episode.season_episode';
} elseif ($episodeNumber !== null && $seasonNumber === null) {
$transKey = 'Episode.number';
} elseif ($episodeNumber === null && $seasonNumber !== null) {
$transKey = 'Episode.season';
}
return lang($transKey . '_abbr', $args);
}
private function generateVideoClipBg(): bool
{
$background = $this->generateColouredBg($this->dimensions['width'], $this->dimensions['height']);
if ($background === null) {
return false;
}
$episodeCover = imagecreatefromjpeg($this->episodeCoverPath);
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
if (! $episodeCover) {
return false;
}
$scaledEpisodeCover = $this->scaleImage(
$episodeCover,
$this->dimensions['cover']['width'],
$this->dimensions['cover']['height']
);
if (! $scaledEpisodeCover) {
return false;
}
$roundedEpisodeCover = $this->roundCorners($scaledEpisodeCover, $this->dimensions['cover']['radius']);
if (! $roundedEpisodeCover) {
return false;
}
$isOverlaid = $this->overlayImages(
$background,
$roundedEpisodeCover,
$this->dimensions['cover']['x'],
$this->dimensions['cover']['y'],
$this->dimensions['cover']['width'],
$this->dimensions['cover']['height']
);
if (! $isOverlaid) {
return false;
}

Yassine Doghri
committed
$this->addParagraphToImage(
$background,
$this->dimensions['podcastTitle']['x'],
$this->dimensions['podcastTitle']['y'],
$this->episode->podcast->title,
$this->getFont('podcastTitle'),

Yassine Doghri
committed
$this->dimensions['podcastTitle']['fontsize'],
$this->dimensions['podcastTitle']['lineWidth'],
$this->dimensions['podcastTitle']['lines'] ?? 1,
$this->dimensions['podcastTitle']['lineHeight'] ?? 1,

Yassine Doghri
committed
$episodeNumberingWidth = 0;
if ($this->episodeNumbering) {

Yassine Doghri
committed
$episodeTitleBox = $this->calculateTextBox(
$this->dimensions['episodeTitle']['fontsize'],
0,
$this->getFont('episodeTitle'),
$this->episode->title
);
$episodeNumberingBox = $this->calculateTextBox(
$this->dimensions['episodeNumbering']['fontsize'],
0,
$this->getFont('episodeNumbering'),
$this->episodeNumbering
);
if (! $episodeTitleBox || ! $episodeNumberingBox) {
return false;
}
$episodeTitleCenter = (int) ($episodeTitleBox['height'] / 2);
$episodeNumberingCenter = (int) (($episodeNumberingBox['height'] + ($this->dimensions['episodeNumbering']['paddingY'] * 2)) / 2);
$episodeNumberingWidth = $episodeNumberingBox['width'] + ($this->dimensions['episodeNumbering']['paddingX'] * 2);
$this->addTextWithBox(
$background,

Yassine Doghri
committed
$this->dimensions['episodeTitle']['x'],
$this->dimensions['episodeTitle']['y'] + $episodeTitleCenter - $episodeNumberingCenter,
$this->episodeNumbering,
$this->getFont('episodeNumbering'),
$this->dimensions['episodeNumbering']['fontsize'],
$this->dimensions['episodeNumbering']['paddingX'],
$this->dimensions['episodeNumbering']['paddingY'],
);
}

Yassine Doghri
committed
$this->addParagraphToImage(
$background,
$this->dimensions['episodeTitle']['x'],
$this->dimensions['episodeTitle']['y'],
$this->episode->title,
$this->getFont('episodeTitle'),
$this->dimensions['episodeTitle']['fontsize'],
$this->dimensions['episodeTitle']['lineWidth'],
$this->dimensions['episodeTitle']['lines'],
$this->dimensions['episodeTitle']['lineHeight'] ?? 1,
$episodeNumberingWidth + ($episodeNumberingWidth === 0 ? 0 : $this->dimensions['episodeNumbering']['marginRight']),
);
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
// Add quotes for subtitles
$quotes = imagecreatefrompng(config('MediaClipper')->quotesImage);
if (! $quotes) {
return false;
}
$scaledQuotes = $this->scaleImage(
$quotes,
$this->dimensions['quotes']['width'],
$this->dimensions['quotes']['height']
);
if (! $scaledQuotes) {
return false;
}
$this->overlayImages(
$background,
$scaledQuotes,
$this->dimensions['quotes']['x'],
$this->dimensions['quotes']['y'],
$this->dimensions['quotes']['width'],
$this->dimensions['quotes']['height']
);
// Save Image
imagepng($background, $this->videoClipBgOutput);
return true;
}
private function getFont(string $name): string
{
return config('MediaClipper')->fontsFolder . self::FONTS[$name];
}
private function generateColouredBg(int $width, int $height): ?GdImage
{
$background = imagecreatetruecolor($width, $height);
if ($background === false) {
return null;
}
$coloredBackground = imagecolorallocate($background, 0, 86, 74);
if ($coloredBackground === false) {
return null;
}
imagefill($background, 0, 0, $coloredBackground);
return $background;
}
private function scaleImage(GdImage $image, int $width, int $height): GdImage | false
{
return imagescale($image, $width, $height);
}
/**
* Copied and adapted from https://stackoverflow.com/a/52626818
*/
private function roundCorners(GdImage $source, int $radius): GdImage | false
{
$ws = imagesx($source);
$hs = imagesy($source);
$corner = $radius + 2;
$s = $corner * 2;
$src = imagecreatetruecolor($s, $s);
if ($src === false) {
return false;
}
imagecopy($src, $source, 0, 0, 0, 0, $corner, $corner);
imagecopy($src, $source, $corner, 0, $ws - $corner, 0, $corner, $corner);
imagecopy($src, $source, $corner, $corner, $ws - $corner, $hs - $corner, $corner, $corner);
imagecopy($src, $source, 0, $corner, 0, $hs - $corner, $corner, $corner);
$q = 8; # change this if you want
$radius *= $q;
# find unique color
do {
$r = rand(0, 255);
$g = rand(0, 255);
$b = rand(0, 255);
} while (imagecolorexact($src, $r, $g, $b) < 0);
$ns = $s * $q;
$img = imagecreatetruecolor($ns, $ns);
if ($img === false) {
return false;
}
$alphacolor = imagecolorallocatealpha($img, $r, $g, $b, 127);
if ($alphacolor === false) {
return false;
}
imagealphablending($img, false);
imagefilledrectangle($img, 0, 0, $ns, $ns, $alphacolor);
imagefill($img, 0, 0, $alphacolor);
imagecopyresampled($img, $src, 0, 0, 0, 0, $ns, $ns, $s, $s);
imagedestroy($src);
imagearc($img, $radius - 1, $radius - 1, $radius * 2, $radius * 2, 180, 270, $alphacolor);
imagefilltoborder($img, 0, 0, $alphacolor, $alphacolor);
imagearc($img, $ns - $radius, $radius - 1, $radius * 2, $radius * 2, 270, 0, $alphacolor);
imagefilltoborder($img, $ns - 1, 0, $alphacolor, $alphacolor);
imagearc($img, $radius - 1, $ns - $radius, $radius * 2, $radius * 2, 90, 180, $alphacolor);
imagefilltoborder($img, 0, $ns - 1, $alphacolor, $alphacolor);
imagearc($img, $ns - $radius, $ns - $radius, $radius * 2, $radius * 2, 0, 90, $alphacolor);
imagefilltoborder($img, $ns - 1, $ns - 1, $alphacolor, $alphacolor);
imagealphablending($img, true);
imagecolortransparent($img, $alphacolor);
# resize image down
$dest = imagecreatetruecolor($s, $s);
if ($dest === false) {
return false;
}
imagealphablending($dest, false);
imagefilledrectangle($dest, 0, 0, $s, $s, $alphacolor);
imagecopyresampled($dest, $img, 0, 0, 0, 0, $s, $s, $ns, $ns);
imagedestroy($img);
# output image
imagealphablending($source, false);
imagecopy($source, $dest, 0, 0, 0, 0, $corner, $corner);
imagecopy($source, $dest, $ws - $corner, 0, $corner, 0, $corner, $corner);
imagecopy($source, $dest, $ws - $corner, $hs - $corner, $corner, $corner, $corner, $corner);
imagecopy($source, $dest, 0, $hs - $corner, 0, $corner, $corner, $corner);
imagealphablending($source, true);
imagedestroy($dest);
return $source;
}
private function overlayImages(
GdImage $background,
GdImage $foreground,
int $x,
int $y,
int $width,
int $height
): bool {
return imagecopy($background, $foreground, $x, $y, 0, 0, $width, $height);
}

Yassine Doghri
committed
private function addParagraphToImage(
GdImage $image,
int $x,
int $y,
string $text,
string $fontPath,
int $fontsize,

Yassine Doghri
committed
int $lineWidth,
int $numberOfLines = 1,

Yassine Doghri
committed
float $lineHeight = 1,
int $paragraphIndent = 0,
): bool {
// Allocate A Color For The Text
$white = imagecolorallocate($image, 255, 255, 255);
if ($white === false) {
return false;
}

Yassine Doghri
committed
$lines = $this->textToParagraph($text, $fontPath, $fontsize, $lineWidth, $numberOfLines, $paragraphIndent);
if (! $lines) {
return false;
}

Yassine Doghri
committed
$leading = (int) ($fontsize * $lineHeight);
foreach ($lines as $i => $line) {
// Print line On Image
imagettftext(
$image,
$fontsize,
0,
$x + ($paragraphIndent * ($i === 0 ? 1 : 0)),
$y + $fontsize + ($leading * $i),
$white,
$fontPath,
$line
);
}
return true;
}

Yassine Doghri
committed
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
/**
* Adapted from: https://www.php.net/manual/fr/function.imagettfbbox.php#105593
*
* @return array<string, mixed>|false
*/
private function calculateTextBox(int $fontSize, int $fontAngle, string $fontFile, string $text): array | false
{
/************
simple function that calculates the *exact* bounding box (single pixel precision).
The function returns an associative array with these keys:
left, top: coordinates you will pass to imagettftext
width, height: dimension of the image you have to create
*************/
$bbox = imagettfbbox($fontSize, $fontAngle, $fontFile, $text);
if (! $bbox) {
return false;
}
$minX = min([$bbox[0], $bbox[2], $bbox[4], $bbox[6]]);
$maxX = max([$bbox[0], $bbox[2], $bbox[4], $bbox[6]]);
$minY = min([$bbox[1], $bbox[3], $bbox[5], $bbox[7]]);
$maxY = max([$bbox[1], $bbox[3], $bbox[5], $bbox[7]]);
return [
'left' => abs($minX) - 1,
'top' => abs($minY),
'width' => $maxX - $minX,
'height' => $maxY - $minY,
'box' => $bbox,
];
}
private function addTextWithBox(
GdImage $image,
int $x,
int $y,
string $text,
string $fontPath,
int $fontsize,
int $paddingX = 0,
int $paddingY = 0,
): bool {
// Create some colors
$white = imagecolorallocate($image, 255, 255, 255);

Yassine Doghri
committed
$bgColor = imagecolorallocate($image, 0, 61, 11);
if ($white === false || $bgColor === false) {
return false;
}
$bbox = $this->calculateTextBox($fontsize, 0, $fontPath, $text);
if ($bbox === false) {
return false;
}
$x1 = $x + $bbox['left'] + $paddingX;
$y1 = $y + $bbox['top'] + $paddingY;
$x2 = $x + $bbox['width'] + ($paddingX * 2);
$y2 = $y + $bbox['height'] + ($paddingY * 2);
imagefilledrectangle($image, $x, $y, $x2, $y2, $bgColor);
imagettftext($image, $fontsize, 0, $x1, $y1, $white, $fontPath, $text);
return true;
}
/**

Yassine Doghri
committed
* @return array<int, string>|false

Yassine Doghri
committed
private function textToParagraph(
string $text,
string $fontPath,
int $fontsize,
int $lineWidth,
int $numberOfLines,
int $paragraphIndent = 0,
): array | false {
// check length of text
$bbox = $this->calculateTextBox($fontsize, 0, $fontPath, $text);
if (! $bbox) {
return false;
}

Yassine Doghri
committed
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
// return early if text width is less than line width
if ($bbox['width'] <= $lineWidth) {
return [$text];
}
// cut text in multiple lines based on the lineWidth property
$lines = [''];
$length = $paragraphIndent;
$words = preg_split('~\b(?=\S)|(?=\s)~', $text);
if (! $words) {
return false;
}
$wordCount = count($words);
$lineNumber = 0;
for ($i = 0; $i < $wordCount; ++$i) {
$word = $words[$i];
$wordBox = $this->calculateTextBox($fontsize, 0, $fontPath, $word);
if (! $wordBox) {
return false;
}
$wordWidth = $wordBox['width'];
if (($wordWidth + $length) > $lineWidth) {
++$lineNumber;
if ($lineNumber > $numberOfLines - 1) {
$lines[$numberOfLines - 1] .= '…';
break;
}
$lines[$lineNumber] = '';
$length = 0;
// If the current word is just a space, don't bother. Skip (saves a weird-looking gap in the text).
if ($word === ' ') {
continue;
}
}
$lines[$lineNumber] .= $word;
$length += $wordWidth;
}
return $lines;