This commit is contained in:
ct
2025-06-18 13:43:42 +08:00
parent a40d81331c
commit 60236af762
5 changed files with 68 additions and 3 deletions

View File

@@ -39,6 +39,7 @@ class MemeMedia extends Model
protected $casts = [ protected $casts = [
'embedding' => Vector::class, 'embedding' => Vector::class,
'duration' => 'double',
]; ];
protected $fillable = [ protected $fillable = [

View File

@@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('meme_medias', function (Blueprint $table) {
$table->integer('media_width')->default(720);
$table->integer('media_height')->default(1280);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('meme_medias', function (Blueprint $table) {
$table->dropColumn('media_width');
$table->dropColumn('media_height');
});
}
};

View File

@@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('background_medias', function (Blueprint $table) {
$table->integer('media_width')->default(720);
$table->integer('media_height')->default(720);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('background_medias', function (Blueprint $table) {
$table->dropColumn('media_width');
$table->dropColumn('media_height');
});
}
};

View File

@@ -28,7 +28,7 @@ const EditorControls = ({ className = '', onEditClick = () => {}, isEditActive =
return ( return (
<div className={cn('flex items-center justify-center gap-2', className)}> <div className={cn('flex items-center justify-center gap-2', className)}>
<Button onClick={togglePlayPause} variant="default" size="icon" className="h-12 w-12 rounded-full border shadow-sm"> <Button onClick={togglePlayPause} variant="outline" size="icon" className="h-12 w-12 rounded-full border shadow-sm">
{videoIsPlaying ? <Square className="h-8 w-8" /> : <Play className="h-8 w-8" />} {videoIsPlaying ? <Square className="h-8 w-8" /> : <Play className="h-8 w-8" />}
</Button> </Button>
@@ -46,7 +46,7 @@ const EditorControls = ({ className = '', onEditClick = () => {}, isEditActive =
<Button <Button
id="edit" id="edit"
variant={isEditActive ? 'default' : 'default'} variant={isEditActive ? 'outline' : 'outline'}
size="icon" size="icon"
className="h-12 w-12 rounded-full border shadow-sm" className="h-12 w-12 rounded-full border shadow-sm"
onClick={onEditClick} onClick={onEditClick}
@@ -54,7 +54,7 @@ const EditorControls = ({ className = '', onEditClick = () => {}, isEditActive =
<Edit3 className={`h-8 w-8 ${isEditActive ? 'text-white' : ''}`} /> <Edit3 className={`h-8 w-8 ${isEditActive ? 'text-white' : ''}`} />
</Button> </Button>
<Button variant="default" size="icon" className="h-12 w-12 rounded-full border shadow-sm"> <Button variant="outline" size="icon" className="h-12 w-12 rounded-full border shadow-sm">
<Download className="h-8 w-8" /> <Download className="h-8 w-8" />
</Button> </Button>
</div> </div>

View File

@@ -19,6 +19,8 @@
"duration": 6, "duration": 6,
"x": 0, "x": 0,
"y": 0, "y": 0,
"asset_width": 720,
"asset_height": 720,
"width": 720, "width": 720,
"height": 1280, "height": 1280,
"rotation": 0 "rotation": 0
@@ -36,6 +38,8 @@
"duration": 6, "duration": 6,
"x": 0, "x": 0,
"y": 0, "y": 0,
"asset_width": 720,
"asset_height": 1280,
"width": 720, "width": 720,
"height": 1280, "height": 1280,
"rotation": 0 "rotation": 0