You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -407,9 +405,11 @@ export function lintHyperframeHtml(
407
405
// Any embedded base64 audio is suspicious — real audio should be a file
408
406
pushFinding({
409
407
code: "fabricated_inline_media",
410
-
severity: "error",
411
-
message: `Embedded base64 ${isSuspicious ? "FABRICATED" : ""} media detected (${(dataSize/1024).toFixed(0)} KB). Inline base64 audio/video is almost always fake data that won't play. Use fetch_media or extract_audio to get real audio files.`,
412
-
fixHint: "Remove the data: URI. Use fetch_media to search for stock music, or extract_audio to get audio from a video.",
408
+
severity: isSuspicious ? "error" : "warning",
409
+
message: isSuspicious
410
+
? `Fabricated base64 media detected (${(dataSize/1024).toFixed(0)} KB). This is almost certainly fake data that won't play.`
411
+
: `Embedded base64 audio/video detected (${(dataSize/1024).toFixed(0)} KB). Consider using a file URL instead.`,
412
+
fixHint: "Remove the data: URI and use a real media file URL instead.",
0 commit comments