ai-tube / src /lib /parseAssetToCheckIfGaussian.ts
jbilcke's picture
preparing transition to user-generated content + gaussians
ac7030c
raw
history blame
269 Bytes
export function parseAssetToCheckIfGaussian(url: string) {
let ext = url.toLowerCase().split(".").pop() || ""
ext = ext.split("?").shift() || ""
if (ext === "splatv" || ext === "splat" || ext === "gsplat" || ext === "ply") {
return true
}
return false
}