'C:/Users/Livetech/AppData/Local/Microsoft/WinGet/Packages/Gyan.FFmpeg_Microsoft.Winget.Source_8wekyb3d8bbwe/ffmpeg-8.1-full_build/bin/ffmpeg.exe', 'ffprobe.binaries' => 'C:/Users/Livetech/AppData/Local/Microsoft/WinGet/Packages/Gyan.FFmpeg_Microsoft.Winget.Source_8wekyb3d8bbwe/ffmpeg-8.1-full_build/bin/ffprobe.exe', ]); $video = $ffmpeg->open(storage_path('app/public/' . $videoPath)); $frame = $video->frame(TimeCode::fromSeconds(5)); $thumbnailPath = 'thumbnails/' . uniqid() . '.jpg'; $fullPath = storage_path('app/public/' . $thumbnailPath); dd($thumbnailPath); $frame->save($fullPath); return $fullPath; } }