resolution part remove

This commit is contained in:
Suman991
2026-01-30 15:36:59 +05:30
parent c9c4a953f4
commit f12a26cd41

View File

@@ -555,12 +555,6 @@ export default function VideoPlayerSection({ data, videoId, videoFile, detection
{detectionsCount} {detectionsCount}
</Badge> </Badge>
</div> </div>
<div className="flex items-center gap-2">
<span className="text-muted-foreground">Resolution:</span>
<Badge variant="outline">
{data.video_info.width}×{data.video_info.height}
</Badge>
</div>
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<span className="text-muted-foreground">FPS:</span> <span className="text-muted-foreground">FPS:</span>
<Badge variant="outline">{data.video_info.fps.toFixed(1)}</Badge> <Badge variant="outline">{data.video_info.fps.toFixed(1)}</Badge>
@@ -570,13 +564,13 @@ export default function VideoPlayerSection({ data, videoId, videoFile, detection
<div className="flex items-center gap-1"> <div className="flex items-center gap-1">
<span className="text-muted-foreground text-xs">Lat:</span> <span className="text-muted-foreground text-xs">Lat:</span>
<Badge variant="outline" className="font-mono text-xs px-1.5 py-0"> <Badge variant="outline" className="font-mono text-xs px-1.5 py-0">
{lastDetectedLat.toFixed(6)} {lastDetectedLat}
</Badge> </Badge>
</div> </div>
<div className="flex items-center gap-1"> <div className="flex items-center gap-1">
<span className="text-muted-foreground text-xs">Lng:</span> <span className="text-muted-foreground text-xs">Lng:</span>
<Badge variant="outline" className="font-mono text-xs px-1.5 py-0"> <Badge variant="outline" className="font-mono text-xs px-1.5 py-0">
{lastDetectedLng.toFixed(6)} {lastDetectedLng}
</Badge> </Badge>
</div> </div>
</> </>
@@ -630,7 +624,7 @@ export default function VideoPlayerSection({ data, videoId, videoFile, detection
</div> </div>
{det.latitude !== undefined && det.longitude !== undefined && ( {det.latitude !== undefined && det.longitude !== undefined && (
<div className="text-muted-foreground font-mono text-[10px]"> <div className="text-muted-foreground font-mono text-[10px]">
GPS: {det.latitude.toFixed(6)}, {det.longitude.toFixed(6)} GPS: {det.latitude}, {det.longitude}
</div> </div>
)} )}
</div> </div>