Certificat AgentReady.md vérifié
Émis le sig: e3dea11e04c0adad Vérifier →

URL analysée

https://www.geovision.com.tw/

Analyser une autre URL

Score AI-Ready

57 / D

Insuffisant

sur 100

Économie de tokens

Tokens HTML 18.182
Tokens Markdown 93
Économie 99%

Détail du score

HTML sémantique 77/100
Efficacité du contenu 63/100
Visibilité IA 15/100
Données structurées 47/100
Accessibilité 100/100

Protocoles émergents

0 sur 3 détectés

Endpoints well-known recherchés par les agents IA. Détecté signifie qu’un agent peut découvrir et se connecter automatiquement à votre service.

  • OAuth Discovery RFC 8414
    /.well-known/oauth-authorization-server
  • MCP Server Card Anthropic
    /.well-known/mcp.json
  • A2A Agent Card Google
    /.well-known/agent.json

Votre site n’a pas de fichier llms.txt. C’est le standard émergent pour aider les AI agents à comprendre la structure de votre site.

Comment implémenter

Créez un fichier /llms.txt en suivant la spécification de llmstxt.org. Incluez une description du site et des liens vers vos pages principales.

Votre page a un faible ratio de contenu réel par rapport au HTML total. Une grande partie du poids de la page est du balisage, des scripts ou des styles plutôt que du contenu.

Comment implémenter

Déplacez le CSS vers des feuilles de style externes, supprimez les styles en ligne, minimisez le JavaScript et assurez-vous que le HTML se concentre sur la structure du contenu.

Votre site ne supporte pas Markdown for Agents. Ce standard Cloudflare permet aux agents IA de demander du contenu en format markdown, réduisant l'utilisation de tokens de ~80%.

Comment implémenter

Implémentez un ou plusieurs : (1) Répondre à Accept: text/markdown avec du contenu markdown. (2) Servir des URLs .md (ex : /page.md). (3) Ajouter des balises <link rel="alternate" type="text/markdown">. (4) Ajouter des en-têtes HTTP Link pour la découverte markdown.

{\n res.setHeader('Vary', 'Accept');\n res.setHeader('Link', '; rel=\"alternate\"; type=\"text/markdown\"');\n if ((req.headers.accept || '').includes('text/markdown')) {\n res.type('text/markdown; charset=utf-8');\n return res.send(renderMarkdown('page'));\n }\n res.render('page');\n});"},{"id":"fastify","label":"Fastify","language":"javascript","filename":"server.js","code":"// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n reply.header('Vary', 'Accept');\n reply.header('Link', '; rel=\"alternate\"; type=\"text/markdown\"');\n if ((req.headers.accept || '').includes('text/markdown')) {\n return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n }\n return reply.view('/page.ejs');\n});"},{"id":"nextjs","label":"Next.js","language":"typescript","filename":"app/page/route.ts","code":"// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n const accept = req.headers.get('accept') || '';\n if (accept.includes('text/markdown')) {\n return new Response(await renderMarkdown('page'), {\n headers: {\n 'Content-Type': 'text/markdown; charset=utf-8',\n 'Vary': 'Accept',\n },\n });\n }\n // Fall through to the page component\n return new Response(null, { status: 404 });\n}"},{"id":"wordpress","label":"WordPress","language":"php","filename":"functions.php","code":"post_content));\n exit;\n});"},{"id":"static","label":"Hugo / Jekyll / Astro","language":"txt","filename":"static/page.md","code":"# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in :\n# "}] }'>

Votre site n’a pas de fichier robots.txt. Ce fichier contrôle la manière dont les bots (y compris les AI agents) accèdent à votre site.

Comment implémenter

Créez un fichier /robots.txt qui autorise l’accès à vos pages de contenu. Incluez une directive Sitemap pointant vers votre sitemap.xml.

Aucun sitemap trouvé. Un sitemap aide les AI agents à découvrir toutes les pages de votre site.

Comment implémenter

Créez un /sitemap.xml listant toutes vos pages publiques. La plupart des CMS peuvent le générer automatiquement.

Aucune directive Content-Signal trouvée. Celles-ci indiquent aux agents IA comment ils peuvent utiliser votre contenu (indexation, entrée IA, données d'entraînement). L'emplacement recommandé est robots.txt.

Comment implémenter

Ajoutez Content-Signal à votre robots.txt : User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no. Vous pouvez aussi l'ajouter comme en-tête HTTP sur les réponses markdown.

{\n res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n done();\n});"}] }'>

Aucune donnée structurée Schema.org trouvée. JSON-LD aide les AI agents à extraire des informations factuelles et structurées de vos pages.

Comment implémenter

Ajoutez un bloc <script type="application/ld+json"> avec du balisage Schema.org. Utilisez les types appropriés : Article pour les billets de blog, Product pour les produits, Organization pour la page de votre entreprise.

Votre page repose fortement sur les éléments <div>. Les éléments sémantiques comme <section>, <nav>, <header>, <footer> et <aside> fournissent une structure significative pour les AI agents.

Comment implémenter

Remplacez les conteneurs <div> génériques par les éléments sémantiques appropriés. Utilisez <section> pour les groupes thématiques, <nav> pour la navigation, <header>/<footer> pour les en-têtes et pieds de page ou de section.

Aucune URL canonique trouvée. Cela aide les AI agents à identifier la version préférée d’une page et à éviter le contenu dupliqué.

Comment implémenter

Ajoutez une balise <link rel="canonical" href="..."> pointant vers l’URL canonique de la page.

Balises Open Graph manquantes ou incomplètes. Les balises OG aident les AI agents (et les plateformes sociales) à comprendre le titre, la description et l’image de votre page.

Comment implémenter

Ajoutez les balises meta og:title, og:description et og:image dans le <head> de votre page.

post_content), 30);\n $image = get_the_post_thumbnail_url($post, 'large') ?: 'https://yoursite.com/og-image.jpg';\n $url = get_permalink($post);\n printf('' . \"\\n\", esc_attr($title));\n printf('' . \"\\n\", esc_attr($desc));\n printf('' . \"\\n\", esc_url($image));\n printf('' . \"\\n\", esc_url($url));\n echo '' . \"\\n\";\n}, 5);"},{"id":"nextjs","label":"Next.js","language":"typescript","filename":"app/page.tsx","code":"// Next.js App Router — Metadata API\nimport type { Metadata } from 'next';\n\nexport const metadata: Metadata = {\n title: \"GeoVision\",\n description: \"GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surveillance platforms, and tailored surveillance software designed for business buildings, factories, and retail environments. Enhance public safety and manage security with our cutting-edge technology.\",\n openGraph: {\n title: \"GeoVision\",\n description: \"GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surveillance platforms, and tailored surveillance software designed for business buildings, factories, and retail environments. Enhance public safety and manage security with our cutting-edge technology.\",\n url: \"https://www.geovision.com.tw/\",\n images: [\"https://yoursite.com/og-image.jpg\"],\n type: 'website',\n },\n};"}] }'>
Tokens Markdown: 93
#### Cloud Security

[

![Cloud Security](https://www.geovision.com.tw/_upload/temp/cloud_security_banner.png)

](https://www.geovision.com.tw/aicloud.php "Cloud Security")

#### GV-Selector Web[

![GV-Selector Web](https://www.geovision.com.tw/_upload/images/selector_banner.png)

](https://gv.geovision.tw/Portico/Product/Selector.aspx "GV-Selector Web")
GeoVision

Toggle navigation# [GeoVision Inc. ![GeoVision Inc.](https://www.geovision.com.tw/images/common/logo.png)](https://www.geovision.com.tw/index.php "GeoVision Inc.")

-   [About](https://www.geovision.com.tw/aboutCompany.php "About")
    -   [Company Profile](https://www.geovision.com.tw/aboutCompany.php "Company Profile")
    -   [Award](https://www.geovision.com.tw/aboutAward.php "Award")
    -   [Investor Relations](https://www.geovision.com.tw/aboutOverview.php "Investor Relations")
-   [Products](https://www.geovision.com.tw/products.php "Products")
    -   [IP Cameras](https://www.geovision.com.tw/products.php?c1=3 "IP Cameras")
        -    [![Eyeball](https://www.geovision.com.tw/_upload/images/GV-Eyeball_130.png) Eyeball](https://www.geovision.com.tw/products.php?c2=84 "Eyeball")
        -    [![Dome](https://www.geovision.com.tw/_upload/images/GV-Dome_130.png) Dome](https://www.geovision.com.tw/products.php?c2=94 "Dome")
        -    [![Bullet](https://www.geovision.com.tw/_upload/images/GV-BL1511-1701181529300.png) Bullet](https://www.geovision.com.tw/products.php?c2=92 "Bullet")
        -    [![Fisheye](https://www.geovision.com.tw/_upload/images/06_Fisheye-1610061533470.png) Fisheye](https://www.geovision.com.tw/products.php?c2=87 "Fisheye")
        -    [![Multi-sensor / Panoramic](https://www.geovision.com.tw/_upload/images/GV-PDR8800_130.png) Multi-sensor / Panoramic](https://www.geovision.com.tw/products.php?c2=174 "Multi-sensor / Panoramic")
        -    [![Thermal](https://www.geovision.com.tw/_upload/images/GV-TMEB5800_130.png) Thermal](https://www.geovision.com.tw/products.php?c2=83 "Thermal")
        -    [![Box](https://www.geovision.com.tw/_upload/images/GV-BX4700-5700-1701241141070.png) Box](https://www.geovision.com.tw/products.php?c2=89 "Box")
        -    [![PTZ](https://www.geovision.com.tw/_upload/images/GV-PTZ5810-IR_130.png) PTZ](https://www.geovision.com.tw/products.php?c2=85 "PTZ")
        -    [![IP Speed Dome](https://www.geovision.com.tw/_upload/images/GV-SD2301-1701061114120.png) IP Speed Dome](https://www.geovision.com.tw/products.php?c2=137 "IP Speed Dome")
        -    [![3D People Counter](https://www.geovision.com.tw/_upload/images/GV-3DPeopleCounterV3_130.png) 3D People Counter](https://www.geovision.com.tw/products.php?c2=155 "3D People Counter")
        -    [![Accessories](https://www.geovision.com.tw/_upload/images/GV-Accessories_130.png) Accessories](https://www.geovision.com.tw/products.php?c2=145 "Accessories")
        -    [![Pinhole](https://www.geovision.com.tw/_upload/images/GV-GPH2800_130.png) Pinhole](https://www.geovision.com.tw/products.php?c2=177 "Pinhole")
    -   [Access Control](https://www.geovision.com.tw/products.php?c1=25 "Access Control")
        -    [![Software](https://www.geovision.com.tw/_upload/images/GV-ASManager_130.png) Software](https://www.geovision.com.tw/products.php?c2=154 "Software")
        -    [![IP Control Panel / Kit](https://www.geovision.com.tw/_upload/images/02_IPcontrolPanel-1610061628130.png) IP Control Panel / Kit](https://www.geovision.com.tw/products.php?c2=117 "IP Control Panel / Kit")
        -    [![Controller](https://www.geovision.com.tw/_upload/images/03_Controller-1610061628300.png) Controller](https://www.geovision.com.tw/products.php?c2=118 "Controller")
        -    [![Reader](https://www.geovision.com.tw/_upload/images/04_Reader-1610061628450.png) Reader](https://www.geovision.com.tw/products.php?c2=119 "Reader")
        -    [![Accessories](https://www.geovision.com.tw/_upload/images/GV-ASIDCard-1701241202390.png) Accessories](https://www.geovision.com.tw/products.php?c2=139 "Accessories")
    -   [License Plate Recognition](https://www.geovision.com.tw/products.php?c1=7 "License Plate Recognition")
        -    [![Software](https://www.geovision.com.tw/_upload/images/GV-ASManager_130.png) Software](https://www.geovision.com.tw/products.php?c2=161 "Software")
        -    [![IP LPR Camera (built in Deep Learning Recognition Engine)](https://www.geovision.com.tw/_upload/images/03_LPR1200-1610061638010.png) IP LPR Camera (built in Deep Learning Recognition Engine)](https://www.geovision.com.tw/products.php?c2=123 "IP LPR Camera (built in Deep Learning Recognition Engine)")
        -    [![IP LPR Camera](https://www.geovision.com.tw/_upload/images/04_LPC2211-1610061638150.png) IP LPR Camera](https://www.geovision.com.tw/products.php?c2=124 "IP LPR Camera")
    -   [Video Management Software](https://www.geovision.com.tw/products.php?c1=14 "Video Management Software")
        -    [![VMS](https://www.geovision.com.tw/_upload/images/01_VMS-1610061557180.png) VMS](https://www.geovision.com.tw/products.php?c2=100 "VMS")
        -    [![NVR](https://www.geovision.com.tw/_upload/images/02_NVR-1610061557300.png) NVR](https://www.geovision.com.tw/products.php?c2=101 "NVR")
        -    [![Recording Server](https://www.geovision.com.tw/_upload/images/03_RecordingServer-1610061557430.png) Recording Server](https://www.geovision.com.tw/products.php?c2=102 "Recording Server")
        -    [![Edge Recording Manager](https://www.geovision.com.tw/_upload/images/04_RecordingManager-1610061558020.png) Edge Recording Manager](https://www.geovision.com.tw/products.php?c2=103 "Edge Recording Manager")
        -    [![Large Scale Monitoring](https://www.geovision.com.tw/_upload/images/05_ControlCenter-1610061558230.png) Large Scale Monitoring](https://www.geovision.com.tw/products.php?c2=104 "Large Scale Monitoring")
        -    [![Integration](https://www.geovision.com.tw/_upload/images/06_POS-1610061558410.png) Integration](https://www.geovision.com.tw/products.php?c2=105 "Integration")
        -    [![Backup Management](https://www.geovision.com.tw/_upload/images/07_RedundantServer-1610061559130.png) Backup Management](https://www.geovision.com.tw/products.php?c2=106 "Backup Management")
        -    [![Video Analytics](https://www.geovision.com.tw/_upload/images/08_WebReport-1610061559270.png) Video Analytics](https://www.geovision.com.tw/products.php?c2=107 "Video Analytics")
        -    [![Mobile App](https://www.geovision.com.tw/_upload/images/12_app.png) Mobile App](https://www.geovision.com.tw/products.php?c2=147 "Mobile App")
    -   [Surveillance System](https://www.geovision.com.tw/products.php?c1=4 "Surveillance System")
        -    [![Tower Systems](https://www.geovision.com.tw/_upload/images/01_VMSsystems-1610061615130.png) Tower Systems](https://www.geovision.com.tw/products.php?c2=172 "Tower Systems")
        -    [![Hot Swap Systems](https://www.geovision.com.tw/_upload/images/04_DVRsystems-1701111128240.png) Hot Swap Systems](https://www.geovision.com.tw/products.php?c2=173 "Hot Swap Systems")
        -    [![Control Center Systems](https://www.geovision.com.tw/_upload/images/GV-Control%20Center%20System_130.png) Control Center Systems](https://www.geovision.com.tw/products.php?c2=163 "Control Center Systems")
        -    [![AI Systems](https://www.geovision.com.tw/_upload/images/GV-AI%20System_130.png) AI Systems](https://www.geovision.com.tw/products.php?c2=162 "AI Systems")
        -    [![Mini Systems](https://www.geovision.com.tw/_upload/images/GV-Mini%20System_130.png) Mini Systems](https://www.geovision.com.tw/products.php?c2=160 "Mini Systems")
        -    [![Storage Systems](https://www.geovision.com.tw/_upload/images/06_StorageSystems-1610061616340.png) Storage Systems](https://www.geovision.com.tw/products.php?c2=115 "Storage Systems")
        -    [![Mobile Systems](https://www.geovision.com.tw/_upload/images/GV-MNVR2100-1701241152520.png) Mobile Systems](https://www.geovision.com.tw/products.php?c2=138 "Mobile Systems")
        -    [![Accessories](https://www.geovision.com.tw/_upload/images/GV-TouchDisplay133-1612051729440.png) Accessories](https://www.geovision.com.tw/products.php?c2=141 "Accessories")
    -   [Standalone & Decoder](https://www.geovision.com.tw/products.php?c1=158 "Standalone & Decoder")
        -    [![SNVR](https://www.geovision.com.tw/_upload/images/SNVR0811_130-1709151605460.png) SNVR](https://www.geovision.com.tw/products.php?c2=153 "SNVR")
        -    [![HD DVR](https://www.geovision.com.tw/_upload/images/GV-TXVL1610_130.png) HD DVR](https://www.geovision.com.tw/products.php?c2=180 "HD DVR")
        -    [![Decoder Box](https://www.geovision.com.tw/_upload/images/decoderbox_130.png) Decoder Box](https://www.geovision.com.tw/products.php?c2=157 "Decoder Box")
        -    [![HD Video Encoder](https://www.geovision.com.tw/_upload/images/GV-VS2420_130-1608301423010.png) HD Video Encoder](https://www.geovision.com.tw/products.php?c2=73 "HD Video Encoder")
    -   [PoE Solution](https://www.geovision.com.tw/products.php?c1=39 "PoE Solution")
        -    [![PoE Switch](https://www.geovision.com.tw/_upload/images/02_PoESwitch-1610061654100.png) PoE Switch](https://www.geovision.com.tw/products.php?c2=131 "PoE Switch")
        -    [![Gigabit PoE Switch](https://www.geovision.com.tw/_upload/images/01_GigabitPoE-1701111132040.png) Gigabit PoE Switch](https://www.geovision.com.tw/products.php?c2=130 "Gigabit PoE Switch")
        -    [![PoE Extender](https://www.geovision.com.tw/_upload/images/03_PoEExtender-1610061654270.png) PoE Extender](https://www.geovision.com.tw/products.php?c2=132 "PoE Extender")
        -    [![PoE Adapter](https://www.geovision.com.tw/_upload/images/GV-PA191-1701241212530.png) PoE Adapter](https://www.geovision.com.tw/products.php?c2=140 "PoE Adapter")
        -    [![Accessories](https://www.geovision.com.tw/_upload/images/GV-LC10-1701241230440.png) Accessories](https://www.geovision.com.tw/products.php?c2=144 "Accessories")
    -   [IP Speaker and IO Box](https://www.geovision.com.tw/products.php?c1=31 "IP Speaker and IO Box")
        -    [![IP Speaker](https://www.geovision.com.tw/_upload/images/GV-IPSH30_130.png) IP Speaker](https://www.geovision.com.tw/products.php?c2=176 "IP Speaker")
        -    [![IO](https://www.geovision.com.tw/_upload/images/GV-IOBOX16_130.png) IO](https://www.geovision.com.tw/products.php?c2=146 "IO")
    -   [USA Vision HD Analog](https://www.geovision.com.tw/uvsline.php "USA Vision HD Analog")
        -    [![IP Cameras](https://www.geovision.com.tw/_upload/images/UA-B580F3_130.png) IP Cameras](https://www.geovision.com.tw/us/products.php?c1=3&uvs "IP Cameras")
        -    [![HD Analog](https://www.geovision.com.tw/_upload/images/UA-CR550F2_130.png) HD Analog](https://www.geovision.com.tw/us/products.php?c1=165&uvs "HD Analog")
        -    [![Standalone NVR](https://www.geovision.com.tw/_upload/images/UA-SNVRL810-P_130.png) Standalone NVR](https://www.geovision.com.tw/us/products.php?c2=153&uvs "Standalone NVR")
        -    [![HD DVR](https://www.geovision.com.tw/_upload/images/UA-SNVRL810-P_130.png) HD DVR](https://www.geovision.com.tw/us/products.php?c2=170&uvs "HD DVR")
    -   [Large Scale Monitoring](https://www.geovision.com.tw/products.php?c2=104 "Large Scale Monitoring")
        -    [![GV-Control Center](https://www.geovision.com.tw/_upload/images/GV-ControlCenter_130.png) GV-Control Center](https://www.geovision.com.tw/product/GV-Control%20Center "GV-Control Center")
        -    [![GV-Center V2](https://www.geovision.com.tw/_upload/images/GV-CenterV2_130.png) GV-Center V2](https://www.geovision.com.tw/product/GV-Center%20V2 "GV-Center V2")
        -    [![GV-Dispatch Server](https://www.geovision.com.tw/_upload/images/GV-DispatchServer_130.png) GV-Dispatch Server](https://www.geovision.com.tw/product/GV-Dispatch%20Server "GV-Dispatch Server")
        -    [![GV-Vital Sign Monitor](https://www.geovision.com.tw/_upload/images/GV-VitalSignMonitor_130.png) GV-Vital Sign Monitor](https://www.geovision.com.tw/product/GV-Vital%20Sign%20Monitor "GV-Vital Sign Monitor")
        -    [![GV-Video Gateway](https://www.geovision.com.tw/_upload/images/GV-VideoGateway_130.png) GV-Video Gateway](https://www.geovision.com.tw/product/GV-Video%20Gateway "GV-Video Gateway")
        -    [![GV-Video Wall](https://www.geovision.com.tw/_upload/images/GV-VideoWall_130.png) GV-Video Wall](https://www.geovision.com.tw/product/GV-Video%20Wall "GV-Video Wall")
        -    [![GV-Mobile Server](https://www.geovision.com.tw/_upload/images/GV-MobileServer_130.png) GV-Mobile Server](https://www.geovision.com.tw/product/GV-Mobile%20Server "GV-Mobile Server")
        -    [![GV-Enterprise](https://www.geovision.com.tw/_upload/images/GV-ControlCenter_130.png) GV-Enterprise](https://www.geovision.com.tw/product/GV-Enterprise "GV-Enterprise")
    -   [AI Solution](https://www.geovision.com.tw/ai.php "AI Solution")
        -    [![GV-AI FR](https://www.geovision.com.tw/_upload/images/GV-AIFR_130.png) GV-AI FR](https://www.geovision.com.tw/product/GV-AI%20FR "GV-AI FR")
        -    [![GV-LPR](https://www.geovision.com.tw/_upload/images/GV-LPR_130.png) GV-LPR](https://www.geovision.com.tw/product/GV-LPR "GV-LPR")
        -    [![GV-AI Server](https://www.geovision.com.tw/_upload/images/GV-AIServer_130.png) GV-AI Server](https://www.geovision.com.tw/product/GV-AI%20Server "GV-AI Server")
        -    [![GV-AI Guard](https://www.geovision.com.tw/_upload/images/GV-AIGuard_130.png) GV-AI Guard](https://www.geovision.com.tw/product/GV-AI%20Guard "GV-AI Guard")
    -   [Cloud Solution](https://www.geovision.com.tw/aicloud.php "Cloud Solution")
        -    [![GV-AS Bridge](https://www.geovision.com.tw/_upload/images/GV-CloudBridge_130.png) GV-AS Bridge](https://www.geovision.com.tw/product/GV-AS%20Bridge "GV-AS Bridge")
        -    [![GV-AS1620](https://www.geovision.com.tw/_upload/images/GV-AS1620_130.png) GV-AS1620](https://www.geovision.com.tw/product/GV-AS1620 "GV-AS1620")
        -    [![GV-Cloud Bridge Series](https://www.geovision.com.tw/_upload/images/GV-CloudBridge_130.png) GV-Cloud Bridge Series](https://www.geovision.com.tw/search_result2.php?q=bridge "GV-Cloud Bridge Series")
        -    [![GV-DFK1355](https://www.geovision.com.tw/_upload/images/GV-DFK1355_130.png) GV-DFK1355](https://www.geovision.com.tw/product/GV-DFK1355 "GV-DFK1355")
        -    [![GV-GEBF4911](https://www.geovision.com.tw/_upload/images/GV-GEBF4911_130.png) GV-Cloud Camera](https://www.geovision.com.tw/aicloud.php "GV-Cloud Camera")
        -    [![GV-AS4110](https://www.geovision.com.tw/_upload/images/GV-AS4110_130.png) GV-AS4110](https://www.geovision.com.tw/product/GV-AS4110%20IP%20Control%20Panel "GV-AS4110")
        -    [![GV-AS4111 Kit](https://www.geovision.com.tw/_upload/images/GV-AS4111kit_130.png) GV-AS4111 Kit](https://www.geovision.com.tw/product/GV-AS4111%20Kit "GV-AS4111 Kit")
        -    [![GV-Cloud Access Control](https://www.geovision.com.tw/_upload/images/GV-Cloud%20Access%20Control_130.png) GV-Cloud Access Control](https://www.geovision.com.tw/product/GV-Cloud%20Access%20Control "GV-Cloud Access Control")
        -    [![GV-Cloud VMS](https://www.geovision.com.tw/_upload/images/GV-Cloud_130.png) GV-Cloud VMS](https://www.geovision.com.tw/product/GV-Cloud%20VMS "GV-Cloud VMS")
        -    [![GV-VPN](https://www.geovision.com.tw/_upload/images/GV-VPN_130.png) GV-VPN](https://www.geovision.com.tw/product/GV-VPN "GV-VPN")
        -    [![GV-IA1330](https://www.geovision.com.tw/_upload/images/GV-IA1330_130.png) GV-IA1330](https://www.geovision.com.tw/product/GV-IA1330 "GV-IA1330")
    -   [Signage and IO Box](https://www.geovision.com.tw/# "Signage and IO Box")
        -    [![Signage Player](https://www.geovision.com.tw/_upload/images/01_PN300-1610061644380.png) Signage Player](https://www.geovision.com.tw/products.php?c2=126 "Signage Player")
        -    [![IO](https://www.geovision.com.tw/_upload/images/GV-IOBOX16_130.png) IO](https://www.geovision.com.tw/products.php?c2=146 "IO")
-   [Support](https://www.geovision.com.tw/support.php "Support")
-   [Download](https://www.geovision.com.tw/download/product/ "Download")
-   [Contact Us](https://www.geovision.com.tw/contact.php "Contact Us")
-   [Facebook](https://www.geovision.com.tw/javascript:%20void(window.open('http://www.facebook.com/share.php?u=%27.concat(encodeURIComponent(location.href))%20)); "fb") [Twitter](https://www.geovision.com.tw/javascript:%20void(window.open('http://twitter.com/home/?status=%27.concat(encodeURIComponent(document.title))%20.concat(%27%20%27)%20.concat(encodeURIComponent(location.href)))); "twitter")
-   [Language](https://www.geovision.com.tw/aboutCompany.php "About")
    -   [Global - English](https://www.geovision.com.tw/)
    -   [North America](https://www.geovision.com.tw/us/)
    -   [(台灣) 繁體中文](https://www.geovision.com.tw/tw/)
    -   [(中国) 简体中文](http://www.geovision.com.cn/)
    -   [日本語](https://www.geovision.co.jp/)
    -   [Tiếng Việt](https://www.geovision.com.tw/vn/)

-   [Global - English](https://www.geovision.com.tw/)
-   [North America](https://www.geovision.com.tw/us/)
-   [(台灣) 繁體中文](https://www.geovision.com.tw/tw/)
-   [(中国) 简体中文](http://www.geovision.com.cn/)
-   [日本語](https://www.geovision.co.jp/)
-   [Tiếng Việt](https://www.geovision.com.tw/vn/)

-   [Facebook](https://www.facebook.com/geovision/?fref=ts "Facebook")
-   [Youtube](https://www.youtube.com/channel/UCb6J1KlGLF3U2vBGKVdHYeg "Youtube")
-   [Twitter](https://twitter.com/geovisionnews "Twitter")
-   [Linkedin](https://www.linkedin.com/company/geovision?trk=tabs_biz_home "Linkedin")
-   [Slideshare](http://www.slideshare.net/GeoVisionNews?utm_campaign=profiletracking&utm_medium=sssite&utm_source=ssslideview "Slideshare")

[![](https://www.geovision.com.tw/_upload/images/Banner_GV-VMS_V20_1920.jpg)](https://www.geovision.com.tw/product/GV-VMS%20V20)

[![](https://www.geovision.com.tw/_upload/images/Banner_GEBN4800_GBLN4800_1920.jpg)](https://www.geovision.com.tw/search_result2.php?q=N4800)

[![](https://www.geovision.com.tw/_upload/images/Banner_GV-TMS20811_1920.jpg)](https://www.geovision.com.tw/product/GV-TMS20811)

[![](https://www.geovision.com.tw/_upload/images/Banner_APOE0812_1920.jpg)](https://www.geovision.com.tw/products.php?c2=130)

[![](https://www.geovision.com.tw/_upload/images/Banner_GV-GEBF4911_1920.jpg)](https://www.geovision.com.tw/product/GV-GEBF4911)

[![](https://www.geovision.com.tw/_upload/images/Banner_GV-CloudVMS_1920.jpg)](https://www.geovision.com.tw/product/GV-Cloud%20VMS)

[![](https://www.geovision.com.tw/_upload/images/Banner_GV-EBDP5800_1920.jpg)](https://www.geovision.com.tw/products.php?c2=174)

[![](https://www.geovision.com.tw/_upload/images/Banner_GV-CloudAccess_1920.jpg)](https://www.geovision.com.tw/product/GV-Cloud%20Access%20Control)

[![](https://www.geovision.com.tw/_upload/images/Banner_GV-TMEB5800_1920.jpg)](https://www.geovision.com.tw/product/GV-TMEB5800)

[![](https://www.geovision.com.tw/_upload/images/Banner_GV-IPSH30_1920.jpg)](https://www.geovision.com.tw/product/GV-IPSH30%20V2.0)

[![](https://www.geovision.com.tw/_upload/images/Banner_CMS_1920.jpg)](https://www.geovision.com.tw/products.php?c2=104)

[![](https://www.geovision.com.tw/_upload/images/Banner_GV-SNVR3203_1920.jpg)](https://www.geovision.com.tw/products.php?c2=153)

[![](https://www.geovision.com.tw/_upload/images/Banner_GV-PanelV2%20_1920.jpg)](https://www.geovision.com.tw/product/GV-FR%20Panel%20V2)

[##### Tech Support

![Tech Support](https://www.geovision.com.tw/_upload/images/chat.png)

](http://www.geovision.com.tw/support.php "Tech Support")[##### Online FAQ

![Online FAQ](https://www.geovision.com.tw/_upload/images/faq.png)

](http://www.geovision.com.tw/support_FAQ.php "Online FAQ")[##### NDAA compliant

![NDAA compliant](https://www.geovision.com.tw/_upload/images/ndaa.png)

](https://www.geovision.com.tw/_upload/doc/ndaa.pdf "NDAA compliant")[##### Tech Videos

![Tech Videos](https://www.geovision.com.tw/_upload/images/video.png)

](https://www.youtube.com/@GeoVisionInc "Tech Videos")

[

![IP Cameras](https://www.geovision.com.tw/_upload/images/GV-FER5700-1612151755590.png)

##### IP Cameras](https://www.geovision.com.tw/products.php?c1=3 "IP Cameras")[

![USA Vision HD Analog / IP](https://www.geovision.com.tw/_upload/images/UVS_165.png)

##### USA Vision HD Analog / IP](https://www.geovision.com.tw/uvsline.php "USA Vision HD Analog / IP")[

![Access Control](https://www.geovision.com.tw/_upload/images/AC_165.png)

##### Access Control](https://www.geovision.com.tw/products.php?c1=25 "Access Control")[

![License Plate Recognition](https://www.geovision.com.tw/_upload/images/LPR_165.png)

##### License Plate Recognition](https://www.geovision.com.tw/products.php?c1=7 "License Plate Recognition")[

![VMS / Apps](https://www.geovision.com.tw/_upload/images/1606040911530.png)

##### VMS / Apps](https://www.geovision.com.tw/products.php?c1=14 "VMS / Apps")[

![Large Scale Monitoring](https://www.geovision.com.tw/_upload/images/LSM_165.png)

##### Large Scale Monitoring](https://www.geovision.com.tw/products.php?c2=104 "Large Scale Monitoring")[

![AI Solution](https://www.geovision.com.tw/_upload/images/AI_165.png)

##### AI Solution](https://www.geovision.com.tw/ai.php "AI Solution")[

![Cloud Solution](https://www.geovision.com.tw/_upload/images/CD_165.png)

##### Cloud Solution](https://www.geovision.com.tw/aicloud.php "Cloud Solution")[

![Surveillance Systems](https://www.geovision.com.tw/_upload/images/GV-VMS_Systems-1612151614490.png)

##### Surveillance Systems](https://www.geovision.com.tw/products.php?c1=4 "Surveillance Systems")[

![SNVR and Decoder](https://www.geovision.com.tw/_upload/images/SD_165.png)

##### SNVR and Decoder](https://www.geovision.com.tw/products.php?c1=158 "SNVR and Decoder")[

![PoE Solution](https://www.geovision.com.tw/_upload/images/POE_165.png)

##### PoE Solution](https://www.geovision.com.tw/products.php?c1=39 "PoE Solution")[

![IP Speaker and IO Box](https://www.geovision.com.tw/_upload/images/DS_165.png)

##### IP Speaker and IO Box](https://www.geovision.com.tw/products.php?c1=31 "IP Speaker and IO Box")

#### Cloud Security

[

![Cloud Security](https://www.geovision.com.tw/_upload/temp/cloud_security_banner.png)

](https://www.geovision.com.tw/aicloud.php "Cloud Security")

#### GV-Selector Web[

![GV-Selector Web](https://www.geovision.com.tw/_upload/images/selector_banner.png)

](https://gv.geovision.tw/Portico/Product/Selector.aspx "GV-Selector Web")

[

##### Brochure

](https://www.geovision.com.tw/brochure.php)[

##### Events

](https://www.geovision.com.tw/news_list.php)[

##### Newsroom

](https://www.geovision.com.tw/news.php)[

##### Where to Buy

](https://www.geovision.com.tw/contact_phone.php)

Téléversez ce fichier sous /index.md sur votre serveur pour que les AI agents puissent accéder à une version propre de votre page. Vous pouvez également configurer la négociation de contenu Accept: text/markdown pour le servir automatiquement.

llms.txt généré pour cette page individuelle

Télécharger llms.txt
# GeoVision

> GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surveillance platforms, and tailored surveillance software designed for business buildings, factories, and retail environments. Enhance public safety and manage security with our cuttin…

## Documentation
- [NDAA compliant](https://www.geovision.com.tw/_upload/doc/ndaa.pdf)
- [TERMS OF USE](https://www.geovision.com.tw/_upload/doc/TERM_OF_USE.pdf)
- [NIS 2](https://www.geovision.com.tw/_upload/doc/NIS_2.pdf)

## Main
- [GeoVision](https://www.geovision.com.tw/): GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surve…
- [Products](https://www.geovision.com.tw/products.php)
- [IP Cameras](https://www.geovision.com.tw/products.php?c1=3)
- [Eyeball](https://www.geovision.com.tw/products.php?c2=84)
- [Dome](https://www.geovision.com.tw/products.php?c2=94)
- [Bullet](https://www.geovision.com.tw/products.php?c2=92)
- [Fisheye](https://www.geovision.com.tw/products.php?c2=87)
- [Multi-sensor / Panoramic](https://www.geovision.com.tw/products.php?c2=174)
- [Thermal](https://www.geovision.com.tw/products.php?c2=83)
- [Box](https://www.geovision.com.tw/products.php?c2=89)
- [PTZ](https://www.geovision.com.tw/products.php?c2=85)
- [IP Speed Dome](https://www.geovision.com.tw/products.php?c2=137)
- [3D People Counter](https://www.geovision.com.tw/products.php?c2=155)
- [Accessories](https://www.geovision.com.tw/products.php?c2=145)
- [Pinhole](https://www.geovision.com.tw/products.php?c2=177)
- [Access Control](https://www.geovision.com.tw/products.php?c1=25)
- [Software](https://www.geovision.com.tw/products.php?c2=154)
- [IP Control Panel / Kit](https://www.geovision.com.tw/products.php?c2=117)
- [Controller](https://www.geovision.com.tw/products.php?c2=118)
- [Reader](https://www.geovision.com.tw/products.php?c2=119)
- [Accessories](https://www.geovision.com.tw/products.php?c2=139)
- [License Plate Recognition](https://www.geovision.com.tw/products.php?c1=7)
- [Software](https://www.geovision.com.tw/products.php?c2=161)
- [IP LPR Camera (built in Deep Learning Recognition Engine)](https://www.geovision.com.tw/products.php?c2=123)
- [IP LPR Camera](https://www.geovision.com.tw/products.php?c2=124)
- [Video Management Software](https://www.geovision.com.tw/products.php?c1=14)
- [VMS](https://www.geovision.com.tw/products.php?c2=100)
- [NVR](https://www.geovision.com.tw/products.php?c2=101)
- [Recording Server](https://www.geovision.com.tw/products.php?c2=102)
- [Edge Recording Manager](https://www.geovision.com.tw/products.php?c2=103)
- [Large Scale Monitoring](https://www.geovision.com.tw/products.php?c2=104)
- [Integration](https://www.geovision.com.tw/products.php?c2=105)
- [Backup Management](https://www.geovision.com.tw/products.php?c2=106)
- [Video Analytics](https://www.geovision.com.tw/products.php?c2=107)
- [Mobile App](https://www.geovision.com.tw/products.php?c2=147)
- [Surveillance System](https://www.geovision.com.tw/products.php?c1=4)
- [Tower Systems](https://www.geovision.com.tw/products.php?c2=172)
- [Hot Swap Systems](https://www.geovision.com.tw/products.php?c2=173)
- [Control Center Systems](https://www.geovision.com.tw/products.php?c2=163)
- [AI Systems](https://www.geovision.com.tw/products.php?c2=162)
- [Mini Systems](https://www.geovision.com.tw/products.php?c2=160)
- [Storage Systems](https://www.geovision.com.tw/products.php?c2=115)
- [Mobile Systems](https://www.geovision.com.tw/products.php?c2=138)
- [Accessories](https://www.geovision.com.tw/products.php?c2=141)
- [Standalone & Decoder](https://www.geovision.com.tw/products.php?c1=158)
- [SNVR](https://www.geovision.com.tw/products.php?c2=153)
- [HD DVR](https://www.geovision.com.tw/products.php?c2=180)
- [Decoder Box](https://www.geovision.com.tw/products.php?c2=157)
- [HD Video Encoder](https://www.geovision.com.tw/products.php?c2=73)
- [PoE Solution](https://www.geovision.com.tw/products.php?c1=39)
- [PoE Switch](https://www.geovision.com.tw/products.php?c2=131)
- [Gigabit PoE Switch](https://www.geovision.com.tw/products.php?c2=130)
- [PoE Extender](https://www.geovision.com.tw/products.php?c2=132)
- [PoE Adapter](https://www.geovision.com.tw/products.php?c2=140)
- [Accessories](https://www.geovision.com.tw/products.php?c2=144)
- [IP Speaker and IO Box](https://www.geovision.com.tw/products.php?c1=31)
- [IP Speaker](https://www.geovision.com.tw/products.php?c2=176)
- [IO](https://www.geovision.com.tw/products.php?c2=146)
- [IP Cameras](https://www.geovision.com.tw/us/products.php?c1=3&uvs)
- [HD Analog](https://www.geovision.com.tw/us/products.php?c1=165&uvs)
- [Standalone NVR](https://www.geovision.com.tw/us/products.php?c2=153&uvs)
- [HD DVR](https://www.geovision.com.tw/us/products.php?c2=170&uvs)
- [GV-Control Center](https://www.geovision.com.tw/product/GV-Control%20Center)
- [GV-Center V2](https://www.geovision.com.tw/product/GV-Center%20V2)
- [GV-Dispatch Server](https://www.geovision.com.tw/product/GV-Dispatch%20Server)
- [GV-Vital Sign Monitor](https://www.geovision.com.tw/product/GV-Vital%20Sign%20Monitor)
- [GV-Video Gateway](https://www.geovision.com.tw/product/GV-Video%20Gateway)
- [GV-Video Wall](https://www.geovision.com.tw/product/GV-Video%20Wall)
- [GV-Mobile Server](https://www.geovision.com.tw/product/GV-Mobile%20Server)
- [GV-Enterprise](https://www.geovision.com.tw/product/GV-Enterprise)
- [GV-AI FR](https://www.geovision.com.tw/product/GV-AI%20FR)
- [GV-LPR](https://www.geovision.com.tw/product/GV-LPR)
- [GV-AI Server](https://www.geovision.com.tw/product/GV-AI%20Server)
- [GV-AI Guard](https://www.geovision.com.tw/product/GV-AI%20Guard)
- [GV-AS Bridge](https://www.geovision.com.tw/product/GV-AS%20Bridge)
- [GV-AS1620](https://www.geovision.com.tw/product/GV-AS1620)
- [GV-DFK1355](https://www.geovision.com.tw/product/GV-DFK1355)
- [GV-AS4110](https://www.geovision.com.tw/product/GV-AS4110%20IP%20Control%20Panel)
- [GV-AS4111 Kit](https://www.geovision.com.tw/product/GV-AS4111%20Kit)
- [GV-Cloud Access Control](https://www.geovision.com.tw/product/GV-Cloud%20Access%20Control)
- [GV-Cloud VMS](https://www.geovision.com.tw/product/GV-Cloud%20VMS)
- [GV-VPN](https://www.geovision.com.tw/product/GV-VPN)
- [GV-IA1330](https://www.geovision.com.tw/product/GV-IA1330)
- [Signage Player](https://www.geovision.com.tw/products.php?c2=126)
- [Download](https://www.geovision.com.tw/download/product/)
- [GeoVision Inc.](https://www.geovision.com.tw/index.php)
- [About](https://www.geovision.com.tw/aboutCompany.php)
- [Award](https://www.geovision.com.tw/aboutAward.php)
- [Investor Relations](https://www.geovision.com.tw/aboutOverview.php)
- [USA Vision HD Analog](https://www.geovision.com.tw/uvsline.php)
- [AI Solution](https://www.geovision.com.tw/ai.php)
- [Cloud Solution](https://www.geovision.com.tw/aicloud.php)
- [GV-Cloud Bridge Series](https://www.geovision.com.tw/search_result2.php?q=bridge)

## Blog
- [Release Notices](https://www.geovision.com.tw/blog/?cat=14)

## Legal
- [Privacy](https://www.geovision.com.tw/privacy.php)

## Support
- [Support](https://www.geovision.com.tw/support.php)
- [Contact Us](https://www.geovision.com.tw/contact.php)

Le llms.txt complet nécessite une analyse de tout le domaine (bientôt disponible)

Téléversez ce fichier vers https://www.geovision.com.tw/llms.txt à la racine de votre domaine. Les AI agents comme ChatGPT, Claude et Perplexity consultent ce fichier pour comprendre la structure de votre site.

HTML sémantique

Utilise les éléments article ou main (100/100)

Has <main>

Hiérarchie de titres correcte (85/100)

1 heading level skip(s)

Utilise des éléments HTML sémantiques (16/100)

3 semantic elements, 59 divs (ratio: 5%)

Textes alternatifs descriptifs pour les images (81/100)

89/110 images with meaningful alt text

Faible profondeur d’imbrication des divs (100/100)

Avg div depth: 2.0, max: 5

Efficacité du contenu

Bon ratio de réduction de tokens (100/100)

99% token reduction (HTML→Markdown)

Bon ratio contenu/bruit (0/100)

Content ratio: 0.3% (221 content chars / 70462 HTML bytes)

Styles en ligne minimaux (50/100)

14/720 elements with inline styles (1.9%)

Poids de page raisonnable (100/100)

HTML size: 69KB

Visibilité IA

Possède un fichier llms.txt (0/100)

No llms.txt found

Possède un fichier robots.txt (0/100)

No robots.txt found

robots.txt autorise les bots IA (100/100)

No robots.txt — AI bots allowed by default

Possède un sitemap.xml (0/100)

No sitemap found

Support Markdown for Agents (0/100)
&#10007; Accept: text/markdown &#10007; .md URL &#10007; <link> tag &#10007; Link header
A Content-Signal (robots.txt ou en-têtes HTTP) (0/100)
&#10003; robots.txt &#10003; HTTP header &#10007; Policy

Données structurées

Possède Schema.org / JSON-LD (0/100)

No JSON-LD / Schema.org found

Possède des balises Open Graph (67/100)

2/3 OG tags present

Possède une meta description (100/100)

Meta description: 317 chars

Possède une URL canonique (0/100)

No canonical URL

Possède un attribut lang (100/100)

lang="en"

Accessibilité

Contenu disponible sans JavaScript (100/100)

Content available without JavaScript

Taille de page raisonnable (100/100)

Page size: 69KB

Le contenu apparaît tôt dans le HTML (100/100)

Main content starts at 5% of HTML

{
  "url": "https://www.geovision.com.tw/",
  "timestamp": 1776651219554,
  "fetch": {
    "mode": "simple",
    "timeMs": 1010,
    "htmlSizeBytes": 70462,
    "supportsMarkdown": false,
    "markdownAgents": {
      "contentNegotiation": false,
      "mdUrl": {
        "found": false,
        "url": null
      },
      "linkTag": {
        "found": false,
        "url": null
      },
      "linkHeader": {
        "found": false,
        "url": null
      },
      "responseHeaders": {
        "contentSignal": null,
        "xMarkdownTokens": null,
        "vary": null
      },
      "frontmatter": {
        "present": false,
        "fields": [],
        "level": "none"
      },
      "level": "none"
    },
    "statusCode": 200
  },
  "extraction": {
    "title": "GeoVision",
    "excerpt": "GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surveillance platforms, and tailored surveillance software designed for business buildings, factories, and retail environments. Enhance public safety and manage security with our cutting-edge technology.",
    "byline": "GeoVision Inc.",
    "siteName": "GeoVision",
    "lang": "en",
    "contentLength": 221,
    "metadata": {
      "description": "GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surveillance platforms, and tailored surveillance software designed for business buildings, factories, and retail environments. Enhance public safety and manage security with our cutting-edge technology.",
      "ogTitle": "GeoVision",
      "ogDescription": "GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surveillance platforms, and tailored surveillance software designed for business buildings, factories, and retail environments. Enhance public safety and manage security with our cutting-edge technology.",
      "ogImage": null,
      "ogType": null,
      "canonical": null,
      "lang": "en",
      "schemas": [],
      "robotsMeta": null,
      "author": "GeoVision Inc.",
      "generator": null,
      "markdownAlternateHref": null
    }
  },
  "markdown": "#### Cloud Security\n\n[\n\n![Cloud Security](https://www.geovision.com.tw/_upload/temp/cloud_security_banner.png)\n\n](https://www.geovision.com.tw/aicloud.php \"Cloud Security\")\n\n#### GV-Selector Web[\n\n![GV-Selector Web](https://www.geovision.com.tw/_upload/images/selector_banner.png)\n\n](https://gv.geovision.tw/Portico/Product/Selector.aspx \"GV-Selector Web\")\n",
  "fullPageMarkdown": "GeoVision\n\nToggle navigation# [GeoVision Inc. ![GeoVision Inc.](https://www.geovision.com.tw/images/common/logo.png)](https://www.geovision.com.tw/index.php \"GeoVision Inc.\")\n\n-   [About](https://www.geovision.com.tw/aboutCompany.php \"About\")\n    -   [Company Profile](https://www.geovision.com.tw/aboutCompany.php \"Company Profile\")\n    -   [Award](https://www.geovision.com.tw/aboutAward.php \"Award\")\n    -   [Investor Relations](https://www.geovision.com.tw/aboutOverview.php \"Investor Relations\")\n-   [Products](https://www.geovision.com.tw/products.php \"Products\")\n    -   [IP Cameras](https://www.geovision.com.tw/products.php?c1=3 \"IP Cameras\")\n        -    [![Eyeball](https://www.geovision.com.tw/_upload/images/GV-Eyeball_130.png) Eyeball](https://www.geovision.com.tw/products.php?c2=84 \"Eyeball\")\n        -    [![Dome](https://www.geovision.com.tw/_upload/images/GV-Dome_130.png) Dome](https://www.geovision.com.tw/products.php?c2=94 \"Dome\")\n        -    [![Bullet](https://www.geovision.com.tw/_upload/images/GV-BL1511-1701181529300.png) Bullet](https://www.geovision.com.tw/products.php?c2=92 \"Bullet\")\n        -    [![Fisheye](https://www.geovision.com.tw/_upload/images/06_Fisheye-1610061533470.png) Fisheye](https://www.geovision.com.tw/products.php?c2=87 \"Fisheye\")\n        -    [![Multi-sensor / Panoramic](https://www.geovision.com.tw/_upload/images/GV-PDR8800_130.png) Multi-sensor / Panoramic](https://www.geovision.com.tw/products.php?c2=174 \"Multi-sensor / Panoramic\")\n        -    [![Thermal](https://www.geovision.com.tw/_upload/images/GV-TMEB5800_130.png) Thermal](https://www.geovision.com.tw/products.php?c2=83 \"Thermal\")\n        -    [![Box](https://www.geovision.com.tw/_upload/images/GV-BX4700-5700-1701241141070.png) Box](https://www.geovision.com.tw/products.php?c2=89 \"Box\")\n        -    [![PTZ](https://www.geovision.com.tw/_upload/images/GV-PTZ5810-IR_130.png) PTZ](https://www.geovision.com.tw/products.php?c2=85 \"PTZ\")\n        -    [![IP Speed Dome](https://www.geovision.com.tw/_upload/images/GV-SD2301-1701061114120.png) IP Speed Dome](https://www.geovision.com.tw/products.php?c2=137 \"IP Speed Dome\")\n        -    [![3D People Counter](https://www.geovision.com.tw/_upload/images/GV-3DPeopleCounterV3_130.png) 3D People Counter](https://www.geovision.com.tw/products.php?c2=155 \"3D People Counter\")\n        -    [![Accessories](https://www.geovision.com.tw/_upload/images/GV-Accessories_130.png) Accessories](https://www.geovision.com.tw/products.php?c2=145 \"Accessories\")\n        -    [![Pinhole](https://www.geovision.com.tw/_upload/images/GV-GPH2800_130.png) Pinhole](https://www.geovision.com.tw/products.php?c2=177 \"Pinhole\")\n    -   [Access Control](https://www.geovision.com.tw/products.php?c1=25 \"Access Control\")\n        -    [![Software](https://www.geovision.com.tw/_upload/images/GV-ASManager_130.png) Software](https://www.geovision.com.tw/products.php?c2=154 \"Software\")\n        -    [![IP Control Panel / Kit](https://www.geovision.com.tw/_upload/images/02_IPcontrolPanel-1610061628130.png) IP Control Panel / Kit](https://www.geovision.com.tw/products.php?c2=117 \"IP Control Panel / Kit\")\n        -    [![Controller](https://www.geovision.com.tw/_upload/images/03_Controller-1610061628300.png) Controller](https://www.geovision.com.tw/products.php?c2=118 \"Controller\")\n        -    [![Reader](https://www.geovision.com.tw/_upload/images/04_Reader-1610061628450.png) Reader](https://www.geovision.com.tw/products.php?c2=119 \"Reader\")\n        -    [![Accessories](https://www.geovision.com.tw/_upload/images/GV-ASIDCard-1701241202390.png) Accessories](https://www.geovision.com.tw/products.php?c2=139 \"Accessories\")\n    -   [License Plate Recognition](https://www.geovision.com.tw/products.php?c1=7 \"License Plate Recognition\")\n        -    [![Software](https://www.geovision.com.tw/_upload/images/GV-ASManager_130.png) Software](https://www.geovision.com.tw/products.php?c2=161 \"Software\")\n        -    [![IP LPR Camera (built in Deep Learning Recognition Engine)](https://www.geovision.com.tw/_upload/images/03_LPR1200-1610061638010.png) IP LPR Camera (built in Deep Learning Recognition Engine)](https://www.geovision.com.tw/products.php?c2=123 \"IP LPR Camera (built in Deep Learning Recognition Engine)\")\n        -    [![IP LPR Camera](https://www.geovision.com.tw/_upload/images/04_LPC2211-1610061638150.png) IP LPR Camera](https://www.geovision.com.tw/products.php?c2=124 \"IP LPR Camera\")\n    -   [Video Management Software](https://www.geovision.com.tw/products.php?c1=14 \"Video Management Software\")\n        -    [![VMS](https://www.geovision.com.tw/_upload/images/01_VMS-1610061557180.png) VMS](https://www.geovision.com.tw/products.php?c2=100 \"VMS\")\n        -    [![NVR](https://www.geovision.com.tw/_upload/images/02_NVR-1610061557300.png) NVR](https://www.geovision.com.tw/products.php?c2=101 \"NVR\")\n        -    [![Recording Server](https://www.geovision.com.tw/_upload/images/03_RecordingServer-1610061557430.png) Recording Server](https://www.geovision.com.tw/products.php?c2=102 \"Recording Server\")\n        -    [![Edge Recording Manager](https://www.geovision.com.tw/_upload/images/04_RecordingManager-1610061558020.png) Edge Recording Manager](https://www.geovision.com.tw/products.php?c2=103 \"Edge Recording Manager\")\n        -    [![Large Scale Monitoring](https://www.geovision.com.tw/_upload/images/05_ControlCenter-1610061558230.png) Large Scale Monitoring](https://www.geovision.com.tw/products.php?c2=104 \"Large Scale Monitoring\")\n        -    [![Integration](https://www.geovision.com.tw/_upload/images/06_POS-1610061558410.png) Integration](https://www.geovision.com.tw/products.php?c2=105 \"Integration\")\n        -    [![Backup Management](https://www.geovision.com.tw/_upload/images/07_RedundantServer-1610061559130.png) Backup Management](https://www.geovision.com.tw/products.php?c2=106 \"Backup Management\")\n        -    [![Video Analytics](https://www.geovision.com.tw/_upload/images/08_WebReport-1610061559270.png) Video Analytics](https://www.geovision.com.tw/products.php?c2=107 \"Video Analytics\")\n        -    [![Mobile App](https://www.geovision.com.tw/_upload/images/12_app.png) Mobile App](https://www.geovision.com.tw/products.php?c2=147 \"Mobile App\")\n    -   [Surveillance System](https://www.geovision.com.tw/products.php?c1=4 \"Surveillance System\")\n        -    [![Tower Systems](https://www.geovision.com.tw/_upload/images/01_VMSsystems-1610061615130.png) Tower Systems](https://www.geovision.com.tw/products.php?c2=172 \"Tower Systems\")\n        -    [![Hot Swap Systems](https://www.geovision.com.tw/_upload/images/04_DVRsystems-1701111128240.png) Hot Swap Systems](https://www.geovision.com.tw/products.php?c2=173 \"Hot Swap Systems\")\n        -    [![Control Center Systems](https://www.geovision.com.tw/_upload/images/GV-Control%20Center%20System_130.png) Control Center Systems](https://www.geovision.com.tw/products.php?c2=163 \"Control Center Systems\")\n        -    [![AI Systems](https://www.geovision.com.tw/_upload/images/GV-AI%20System_130.png) AI Systems](https://www.geovision.com.tw/products.php?c2=162 \"AI Systems\")\n        -    [![Mini Systems](https://www.geovision.com.tw/_upload/images/GV-Mini%20System_130.png) Mini Systems](https://www.geovision.com.tw/products.php?c2=160 \"Mini Systems\")\n        -    [![Storage Systems](https://www.geovision.com.tw/_upload/images/06_StorageSystems-1610061616340.png) Storage Systems](https://www.geovision.com.tw/products.php?c2=115 \"Storage Systems\")\n        -    [![Mobile Systems](https://www.geovision.com.tw/_upload/images/GV-MNVR2100-1701241152520.png) Mobile Systems](https://www.geovision.com.tw/products.php?c2=138 \"Mobile Systems\")\n        -    [![Accessories](https://www.geovision.com.tw/_upload/images/GV-TouchDisplay133-1612051729440.png) Accessories](https://www.geovision.com.tw/products.php?c2=141 \"Accessories\")\n    -   [Standalone & Decoder](https://www.geovision.com.tw/products.php?c1=158 \"Standalone & Decoder\")\n        -    [![SNVR](https://www.geovision.com.tw/_upload/images/SNVR0811_130-1709151605460.png) SNVR](https://www.geovision.com.tw/products.php?c2=153 \"SNVR\")\n        -    [![HD DVR](https://www.geovision.com.tw/_upload/images/GV-TXVL1610_130.png) HD DVR](https://www.geovision.com.tw/products.php?c2=180 \"HD DVR\")\n        -    [![Decoder Box](https://www.geovision.com.tw/_upload/images/decoderbox_130.png) Decoder Box](https://www.geovision.com.tw/products.php?c2=157 \"Decoder Box\")\n        -    [![HD Video Encoder](https://www.geovision.com.tw/_upload/images/GV-VS2420_130-1608301423010.png) HD Video Encoder](https://www.geovision.com.tw/products.php?c2=73 \"HD Video Encoder\")\n    -   [PoE Solution](https://www.geovision.com.tw/products.php?c1=39 \"PoE Solution\")\n        -    [![PoE Switch](https://www.geovision.com.tw/_upload/images/02_PoESwitch-1610061654100.png) PoE Switch](https://www.geovision.com.tw/products.php?c2=131 \"PoE Switch\")\n        -    [![Gigabit PoE Switch](https://www.geovision.com.tw/_upload/images/01_GigabitPoE-1701111132040.png) Gigabit PoE Switch](https://www.geovision.com.tw/products.php?c2=130 \"Gigabit PoE Switch\")\n        -    [![PoE Extender](https://www.geovision.com.tw/_upload/images/03_PoEExtender-1610061654270.png) PoE Extender](https://www.geovision.com.tw/products.php?c2=132 \"PoE Extender\")\n        -    [![PoE Adapter](https://www.geovision.com.tw/_upload/images/GV-PA191-1701241212530.png) PoE Adapter](https://www.geovision.com.tw/products.php?c2=140 \"PoE Adapter\")\n        -    [![Accessories](https://www.geovision.com.tw/_upload/images/GV-LC10-1701241230440.png) Accessories](https://www.geovision.com.tw/products.php?c2=144 \"Accessories\")\n    -   [IP Speaker and IO Box](https://www.geovision.com.tw/products.php?c1=31 \"IP Speaker and IO Box\")\n        -    [![IP Speaker](https://www.geovision.com.tw/_upload/images/GV-IPSH30_130.png) IP Speaker](https://www.geovision.com.tw/products.php?c2=176 \"IP Speaker\")\n        -    [![IO](https://www.geovision.com.tw/_upload/images/GV-IOBOX16_130.png) IO](https://www.geovision.com.tw/products.php?c2=146 \"IO\")\n    -   [USA Vision HD Analog](https://www.geovision.com.tw/uvsline.php \"USA Vision HD Analog\")\n        -    [![IP Cameras](https://www.geovision.com.tw/_upload/images/UA-B580F3_130.png) IP Cameras](https://www.geovision.com.tw/us/products.php?c1=3&uvs \"IP Cameras\")\n        -    [![HD Analog](https://www.geovision.com.tw/_upload/images/UA-CR550F2_130.png) HD Analog](https://www.geovision.com.tw/us/products.php?c1=165&uvs \"HD Analog\")\n        -    [![Standalone NVR](https://www.geovision.com.tw/_upload/images/UA-SNVRL810-P_130.png) Standalone NVR](https://www.geovision.com.tw/us/products.php?c2=153&uvs \"Standalone NVR\")\n        -    [![HD DVR](https://www.geovision.com.tw/_upload/images/UA-SNVRL810-P_130.png) HD DVR](https://www.geovision.com.tw/us/products.php?c2=170&uvs \"HD DVR\")\n    -   [Large Scale Monitoring](https://www.geovision.com.tw/products.php?c2=104 \"Large Scale Monitoring\")\n        -    [![GV-Control Center](https://www.geovision.com.tw/_upload/images/GV-ControlCenter_130.png) GV-Control Center](https://www.geovision.com.tw/product/GV-Control%20Center \"GV-Control Center\")\n        -    [![GV-Center V2](https://www.geovision.com.tw/_upload/images/GV-CenterV2_130.png) GV-Center V2](https://www.geovision.com.tw/product/GV-Center%20V2 \"GV-Center V2\")\n        -    [![GV-Dispatch Server](https://www.geovision.com.tw/_upload/images/GV-DispatchServer_130.png) GV-Dispatch Server](https://www.geovision.com.tw/product/GV-Dispatch%20Server \"GV-Dispatch Server\")\n        -    [![GV-Vital Sign Monitor](https://www.geovision.com.tw/_upload/images/GV-VitalSignMonitor_130.png) GV-Vital Sign Monitor](https://www.geovision.com.tw/product/GV-Vital%20Sign%20Monitor \"GV-Vital Sign Monitor\")\n        -    [![GV-Video Gateway](https://www.geovision.com.tw/_upload/images/GV-VideoGateway_130.png) GV-Video Gateway](https://www.geovision.com.tw/product/GV-Video%20Gateway \"GV-Video Gateway\")\n        -    [![GV-Video Wall](https://www.geovision.com.tw/_upload/images/GV-VideoWall_130.png) GV-Video Wall](https://www.geovision.com.tw/product/GV-Video%20Wall \"GV-Video Wall\")\n        -    [![GV-Mobile Server](https://www.geovision.com.tw/_upload/images/GV-MobileServer_130.png) GV-Mobile Server](https://www.geovision.com.tw/product/GV-Mobile%20Server \"GV-Mobile Server\")\n        -    [![GV-Enterprise](https://www.geovision.com.tw/_upload/images/GV-ControlCenter_130.png) GV-Enterprise](https://www.geovision.com.tw/product/GV-Enterprise \"GV-Enterprise\")\n    -   [AI Solution](https://www.geovision.com.tw/ai.php \"AI Solution\")\n        -    [![GV-AI FR](https://www.geovision.com.tw/_upload/images/GV-AIFR_130.png) GV-AI FR](https://www.geovision.com.tw/product/GV-AI%20FR \"GV-AI FR\")\n        -    [![GV-LPR](https://www.geovision.com.tw/_upload/images/GV-LPR_130.png) GV-LPR](https://www.geovision.com.tw/product/GV-LPR \"GV-LPR\")\n        -    [![GV-AI Server](https://www.geovision.com.tw/_upload/images/GV-AIServer_130.png) GV-AI Server](https://www.geovision.com.tw/product/GV-AI%20Server \"GV-AI Server\")\n        -    [![GV-AI Guard](https://www.geovision.com.tw/_upload/images/GV-AIGuard_130.png) GV-AI Guard](https://www.geovision.com.tw/product/GV-AI%20Guard \"GV-AI Guard\")\n    -   [Cloud Solution](https://www.geovision.com.tw/aicloud.php \"Cloud Solution\")\n        -    [![GV-AS Bridge](https://www.geovision.com.tw/_upload/images/GV-CloudBridge_130.png) GV-AS Bridge](https://www.geovision.com.tw/product/GV-AS%20Bridge \"GV-AS Bridge\")\n        -    [![GV-AS1620](https://www.geovision.com.tw/_upload/images/GV-AS1620_130.png) GV-AS1620](https://www.geovision.com.tw/product/GV-AS1620 \"GV-AS1620\")\n        -    [![GV-Cloud Bridge Series](https://www.geovision.com.tw/_upload/images/GV-CloudBridge_130.png) GV-Cloud Bridge Series](https://www.geovision.com.tw/search_result2.php?q=bridge \"GV-Cloud Bridge Series\")\n        -    [![GV-DFK1355](https://www.geovision.com.tw/_upload/images/GV-DFK1355_130.png) GV-DFK1355](https://www.geovision.com.tw/product/GV-DFK1355 \"GV-DFK1355\")\n        -    [![GV-GEBF4911](https://www.geovision.com.tw/_upload/images/GV-GEBF4911_130.png) GV-Cloud Camera](https://www.geovision.com.tw/aicloud.php \"GV-Cloud Camera\")\n        -    [![GV-AS4110](https://www.geovision.com.tw/_upload/images/GV-AS4110_130.png) GV-AS4110](https://www.geovision.com.tw/product/GV-AS4110%20IP%20Control%20Panel \"GV-AS4110\")\n        -    [![GV-AS4111 Kit](https://www.geovision.com.tw/_upload/images/GV-AS4111kit_130.png) GV-AS4111 Kit](https://www.geovision.com.tw/product/GV-AS4111%20Kit \"GV-AS4111 Kit\")\n        -    [![GV-Cloud Access Control](https://www.geovision.com.tw/_upload/images/GV-Cloud%20Access%20Control_130.png) GV-Cloud Access Control](https://www.geovision.com.tw/product/GV-Cloud%20Access%20Control \"GV-Cloud Access Control\")\n        -    [![GV-Cloud VMS](https://www.geovision.com.tw/_upload/images/GV-Cloud_130.png) GV-Cloud VMS](https://www.geovision.com.tw/product/GV-Cloud%20VMS \"GV-Cloud VMS\")\n        -    [![GV-VPN](https://www.geovision.com.tw/_upload/images/GV-VPN_130.png) GV-VPN](https://www.geovision.com.tw/product/GV-VPN \"GV-VPN\")\n        -    [![GV-IA1330](https://www.geovision.com.tw/_upload/images/GV-IA1330_130.png) GV-IA1330](https://www.geovision.com.tw/product/GV-IA1330 \"GV-IA1330\")\n    -   [Signage and IO Box](https://www.geovision.com.tw/# \"Signage and IO Box\")\n        -    [![Signage Player](https://www.geovision.com.tw/_upload/images/01_PN300-1610061644380.png) Signage Player](https://www.geovision.com.tw/products.php?c2=126 \"Signage Player\")\n        -    [![IO](https://www.geovision.com.tw/_upload/images/GV-IOBOX16_130.png) IO](https://www.geovision.com.tw/products.php?c2=146 \"IO\")\n-   [Support](https://www.geovision.com.tw/support.php \"Support\")\n-   [Download](https://www.geovision.com.tw/download/product/ \"Download\")\n-   [Contact Us](https://www.geovision.com.tw/contact.php \"Contact Us\")\n-   [Facebook](https://www.geovision.com.tw/javascript:%20void(window.open('http://www.facebook.com/share.php?u=%27.concat(encodeURIComponent(location.href))%20)); \"fb\") [Twitter](https://www.geovision.com.tw/javascript:%20void(window.open('http://twitter.com/home/?status=%27.concat(encodeURIComponent(document.title))%20.concat(%27%20%27)%20.concat(encodeURIComponent(location.href)))); \"twitter\")\n-   [Language](https://www.geovision.com.tw/aboutCompany.php \"About\")\n    -   [Global - English](https://www.geovision.com.tw/)\n    -   [North America](https://www.geovision.com.tw/us/)\n    -   [(台灣) 繁體中文](https://www.geovision.com.tw/tw/)\n    -   [(中国) 简体中文](http://www.geovision.com.cn/)\n    -   [日本語](https://www.geovision.co.jp/)\n    -   [Tiếng Việt](https://www.geovision.com.tw/vn/)\n\n-   [Global - English](https://www.geovision.com.tw/)\n-   [North America](https://www.geovision.com.tw/us/)\n-   [(台灣) 繁體中文](https://www.geovision.com.tw/tw/)\n-   [(中国) 简体中文](http://www.geovision.com.cn/)\n-   [日本語](https://www.geovision.co.jp/)\n-   [Tiếng Việt](https://www.geovision.com.tw/vn/)\n\n-   [Facebook](https://www.facebook.com/geovision/?fref=ts \"Facebook\")\n-   [Youtube](https://www.youtube.com/channel/UCb6J1KlGLF3U2vBGKVdHYeg \"Youtube\")\n-   [Twitter](https://twitter.com/geovisionnews \"Twitter\")\n-   [Linkedin](https://www.linkedin.com/company/geovision?trk=tabs_biz_home \"Linkedin\")\n-   [Slideshare](http://www.slideshare.net/GeoVisionNews?utm_campaign=profiletracking&utm_medium=sssite&utm_source=ssslideview \"Slideshare\")\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_GV-VMS_V20_1920.jpg)](https://www.geovision.com.tw/product/GV-VMS%20V20)\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_GEBN4800_GBLN4800_1920.jpg)](https://www.geovision.com.tw/search_result2.php?q=N4800)\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_GV-TMS20811_1920.jpg)](https://www.geovision.com.tw/product/GV-TMS20811)\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_APOE0812_1920.jpg)](https://www.geovision.com.tw/products.php?c2=130)\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_GV-GEBF4911_1920.jpg)](https://www.geovision.com.tw/product/GV-GEBF4911)\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_GV-CloudVMS_1920.jpg)](https://www.geovision.com.tw/product/GV-Cloud%20VMS)\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_GV-EBDP5800_1920.jpg)](https://www.geovision.com.tw/products.php?c2=174)\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_GV-CloudAccess_1920.jpg)](https://www.geovision.com.tw/product/GV-Cloud%20Access%20Control)\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_GV-TMEB5800_1920.jpg)](https://www.geovision.com.tw/product/GV-TMEB5800)\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_GV-IPSH30_1920.jpg)](https://www.geovision.com.tw/product/GV-IPSH30%20V2.0)\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_CMS_1920.jpg)](https://www.geovision.com.tw/products.php?c2=104)\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_GV-SNVR3203_1920.jpg)](https://www.geovision.com.tw/products.php?c2=153)\n\n[![](https://www.geovision.com.tw/_upload/images/Banner_GV-PanelV2%20_1920.jpg)](https://www.geovision.com.tw/product/GV-FR%20Panel%20V2)\n\n[##### Tech Support\n\n![Tech Support](https://www.geovision.com.tw/_upload/images/chat.png)\n\n](http://www.geovision.com.tw/support.php \"Tech Support\")[##### Online FAQ\n\n![Online FAQ](https://www.geovision.com.tw/_upload/images/faq.png)\n\n](http://www.geovision.com.tw/support_FAQ.php \"Online FAQ\")[##### NDAA compliant\n\n![NDAA compliant](https://www.geovision.com.tw/_upload/images/ndaa.png)\n\n](https://www.geovision.com.tw/_upload/doc/ndaa.pdf \"NDAA compliant\")[##### Tech Videos\n\n![Tech Videos](https://www.geovision.com.tw/_upload/images/video.png)\n\n](https://www.youtube.com/@GeoVisionInc \"Tech Videos\")\n\n[\n\n![IP Cameras](https://www.geovision.com.tw/_upload/images/GV-FER5700-1612151755590.png)\n\n##### IP Cameras](https://www.geovision.com.tw/products.php?c1=3 \"IP Cameras\")[\n\n![USA Vision HD Analog / IP](https://www.geovision.com.tw/_upload/images/UVS_165.png)\n\n##### USA Vision HD Analog / IP](https://www.geovision.com.tw/uvsline.php \"USA Vision HD Analog / IP\")[\n\n![Access Control](https://www.geovision.com.tw/_upload/images/AC_165.png)\n\n##### Access Control](https://www.geovision.com.tw/products.php?c1=25 \"Access Control\")[\n\n![License Plate Recognition](https://www.geovision.com.tw/_upload/images/LPR_165.png)\n\n##### License Plate Recognition](https://www.geovision.com.tw/products.php?c1=7 \"License Plate Recognition\")[\n\n![VMS / Apps](https://www.geovision.com.tw/_upload/images/1606040911530.png)\n\n##### VMS / Apps](https://www.geovision.com.tw/products.php?c1=14 \"VMS / Apps\")[\n\n![Large Scale Monitoring](https://www.geovision.com.tw/_upload/images/LSM_165.png)\n\n##### Large Scale Monitoring](https://www.geovision.com.tw/products.php?c2=104 \"Large Scale Monitoring\")[\n\n![AI Solution](https://www.geovision.com.tw/_upload/images/AI_165.png)\n\n##### AI Solution](https://www.geovision.com.tw/ai.php \"AI Solution\")[\n\n![Cloud Solution](https://www.geovision.com.tw/_upload/images/CD_165.png)\n\n##### Cloud Solution](https://www.geovision.com.tw/aicloud.php \"Cloud Solution\")[\n\n![Surveillance Systems](https://www.geovision.com.tw/_upload/images/GV-VMS_Systems-1612151614490.png)\n\n##### Surveillance Systems](https://www.geovision.com.tw/products.php?c1=4 \"Surveillance Systems\")[\n\n![SNVR and Decoder](https://www.geovision.com.tw/_upload/images/SD_165.png)\n\n##### SNVR and Decoder](https://www.geovision.com.tw/products.php?c1=158 \"SNVR and Decoder\")[\n\n![PoE Solution](https://www.geovision.com.tw/_upload/images/POE_165.png)\n\n##### PoE Solution](https://www.geovision.com.tw/products.php?c1=39 \"PoE Solution\")[\n\n![IP Speaker and IO Box](https://www.geovision.com.tw/_upload/images/DS_165.png)\n\n##### IP Speaker and IO Box](https://www.geovision.com.tw/products.php?c1=31 \"IP Speaker and IO Box\")\n\n#### Cloud Security\n\n[\n\n![Cloud Security](https://www.geovision.com.tw/_upload/temp/cloud_security_banner.png)\n\n](https://www.geovision.com.tw/aicloud.php \"Cloud Security\")\n\n#### GV-Selector Web[\n\n![GV-Selector Web](https://www.geovision.com.tw/_upload/images/selector_banner.png)\n\n](https://gv.geovision.tw/Portico/Product/Selector.aspx \"GV-Selector Web\")\n\n[\n\n##### Brochure\n\n](https://www.geovision.com.tw/brochure.php)[\n\n##### Events\n\n](https://www.geovision.com.tw/news_list.php)[\n\n##### Newsroom\n\n](https://www.geovision.com.tw/news.php)[\n\n##### Where to Buy\n\n](https://www.geovision.com.tw/contact_phone.php)\n",
  "markdownStats": {
    "images": 2,
    "links": 2,
    "tables": 0,
    "codeBlocks": 0,
    "headings": 2
  },
  "tokens": {
    "htmlTokens": 18182,
    "markdownTokens": 93,
    "reduction": 18089,
    "reductionPercent": 99
  },
  "score": {
    "score": 57,
    "grade": "D",
    "dimensions": {
      "semanticHtml": {
        "score": 77,
        "weight": 20,
        "grade": "B",
        "checks": {
          "uses_article_or_main": {
            "score": 100,
            "weight": 20,
            "details": "Has <main>"
          },
          "proper_heading_hierarchy": {
            "score": 85,
            "weight": 25,
            "details": "1 heading level skip(s)"
          },
          "semantic_elements": {
            "score": 16,
            "weight": 20,
            "details": "3 semantic elements, 59 divs (ratio: 5%)"
          },
          "meaningful_alt_texts": {
            "score": 81,
            "weight": 15,
            "details": "89/110 images with meaningful alt text"
          },
          "low_div_nesting": {
            "score": 100,
            "weight": 20,
            "details": "Avg div depth: 2.0, max: 5"
          }
        }
      },
      "contentEfficiency": {
        "score": 63,
        "weight": 25,
        "grade": "C",
        "checks": {
          "token_reduction_ratio": {
            "score": 100,
            "weight": 40,
            "details": "99% token reduction (HTML→Markdown)"
          },
          "content_to_noise_ratio": {
            "score": 0,
            "weight": 30,
            "details": "Content ratio: 0.3% (221 content chars / 70462 HTML bytes)"
          },
          "minimal_inline_styles": {
            "score": 50,
            "weight": 15,
            "details": "14/720 elements with inline styles (1.9%)"
          },
          "reasonable_page_weight": {
            "score": 100,
            "weight": 15,
            "details": "HTML size: 69KB"
          }
        }
      },
      "aiDiscoverability": {
        "score": 15,
        "weight": 25,
        "grade": "F",
        "checks": {
          "has_llms_txt": {
            "score": 0,
            "weight": 20,
            "details": "No llms.txt found"
          },
          "has_robots_txt": {
            "score": 0,
            "weight": 10,
            "details": "No robots.txt found"
          },
          "robots_allows_ai_bots": {
            "score": 100,
            "weight": 15,
            "details": "No robots.txt — AI bots allowed by default"
          },
          "has_sitemap": {
            "score": 0,
            "weight": 10,
            "details": "No sitemap found"
          },
          "supports_markdown_negotiation": {
            "score": 0,
            "weight": 25,
            "details": "No Markdown for Agents support detected"
          },
          "has_content_signals": {
            "score": 0,
            "weight": 20,
            "details": "No Content-Signal found (robots.txt or HTTP headers)"
          }
        }
      },
      "structuredData": {
        "score": 47,
        "weight": 15,
        "grade": "D",
        "checks": {
          "has_schema_org": {
            "score": 0,
            "weight": 30,
            "details": "No JSON-LD / Schema.org found"
          },
          "has_open_graph": {
            "score": 67,
            "weight": 25,
            "details": "2/3 OG tags present"
          },
          "has_meta_description": {
            "score": 100,
            "weight": 20,
            "details": "Meta description: 317 chars"
          },
          "has_canonical_url": {
            "score": 0,
            "weight": 15,
            "details": "No canonical URL"
          },
          "has_lang_attribute": {
            "score": 100,
            "weight": 10,
            "details": "lang=\"en\""
          }
        }
      },
      "accessibility": {
        "score": 100,
        "weight": 15,
        "grade": "A",
        "checks": {
          "content_without_js": {
            "score": 100,
            "weight": 40,
            "details": "Content available without JavaScript"
          },
          "reasonable_page_size": {
            "score": 100,
            "weight": 30,
            "details": "Page size: 69KB"
          },
          "fast_content_position": {
            "score": 100,
            "weight": 30,
            "details": "Main content starts at 5% of HTML"
          }
        }
      }
    }
  },
  "recommendations": [
    {
      "id": "add_llms_txt",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_llms_txt.title",
      "descriptionKey": "rec.add_llms_txt.description",
      "howToKey": "rec.add_llms_txt.howto",
      "effort": "quick-win",
      "estimatedImpact": 10,
      "checkScore": 0,
      "checkDetails": "No llms.txt found"
    },
    {
      "id": "improve_content_ratio",
      "priority": "critical",
      "category": "contentEfficiency",
      "titleKey": "rec.improve_content_ratio.title",
      "descriptionKey": "rec.improve_content_ratio.description",
      "howToKey": "rec.improve_content_ratio.howto",
      "effort": "moderate",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "Content ratio: 0.3% (221 content chars / 70462 HTML bytes)"
    },
    {
      "id": "add_markdown_negotiation",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_markdown_negotiation.title",
      "descriptionKey": "rec.add_markdown_negotiation.description",
      "howToKey": "rec.add_markdown_negotiation.howto",
      "effort": "significant",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "No Markdown for Agents support detected"
    },
    {
      "id": "add_robots_txt",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_robots_txt.title",
      "descriptionKey": "rec.add_robots_txt.description",
      "howToKey": "rec.add_robots_txt.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No robots.txt found"
    },
    {
      "id": "add_sitemap",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_sitemap.title",
      "descriptionKey": "rec.add_sitemap.description",
      "howToKey": "rec.add_sitemap.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No sitemap found"
    },
    {
      "id": "add_content_signals",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_content_signals.title",
      "descriptionKey": "rec.add_content_signals.description",
      "howToKey": "rec.add_content_signals.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No Content-Signal found (robots.txt or HTTP headers)"
    },
    {
      "id": "add_schema_org",
      "priority": "high",
      "category": "structuredData",
      "titleKey": "rec.add_schema_org.title",
      "descriptionKey": "rec.add_schema_org.description",
      "howToKey": "rec.add_schema_org.howto",
      "effort": "moderate",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "No JSON-LD / Schema.org found"
    },
    {
      "id": "add_semantic_elements",
      "priority": "high",
      "category": "semanticHtml",
      "titleKey": "rec.add_semantic_elements.title",
      "descriptionKey": "rec.add_semantic_elements.description",
      "howToKey": "rec.add_semantic_elements.howto",
      "effort": "moderate",
      "estimatedImpact": 5,
      "checkScore": 16,
      "checkDetails": "3 semantic elements, 59 divs (ratio: 5%)"
    },
    {
      "id": "add_canonical_url",
      "priority": "high",
      "category": "structuredData",
      "titleKey": "rec.add_canonical_url.title",
      "descriptionKey": "rec.add_canonical_url.description",
      "howToKey": "rec.add_canonical_url.howto",
      "effort": "quick-win",
      "estimatedImpact": 3,
      "checkScore": 0,
      "checkDetails": "No canonical URL"
    },
    {
      "id": "add_open_graph",
      "priority": "medium",
      "category": "structuredData",
      "titleKey": "rec.add_open_graph.title",
      "descriptionKey": "rec.add_open_graph.description",
      "howToKey": "rec.add_open_graph.howto",
      "effort": "quick-win",
      "estimatedImpact": 4,
      "checkScore": 67,
      "checkDetails": "2/3 OG tags present"
    }
  ],
  "llmsTxtPreview": "# GeoVision\n\n> GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surveillance platforms, and tailored surveillance software designed for business buildings, factories, and retail environments. Enhance public safety and manage security with our cuttin…\n\n## Documentation\n- [NDAA compliant](https://www.geovision.com.tw/_upload/doc/ndaa.pdf)\n- [TERMS OF USE](https://www.geovision.com.tw/_upload/doc/TERM_OF_USE.pdf)\n- [NIS 2](https://www.geovision.com.tw/_upload/doc/NIS_2.pdf)\n\n## Main\n- [GeoVision](https://www.geovision.com.tw/): GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surve…\n- [Products](https://www.geovision.com.tw/products.php)\n- [IP Cameras](https://www.geovision.com.tw/products.php?c1=3)\n- [Eyeball](https://www.geovision.com.tw/products.php?c2=84)\n- [Dome](https://www.geovision.com.tw/products.php?c2=94)\n- [Bullet](https://www.geovision.com.tw/products.php?c2=92)\n- [Fisheye](https://www.geovision.com.tw/products.php?c2=87)\n- [Multi-sensor / Panoramic](https://www.geovision.com.tw/products.php?c2=174)\n- [Thermal](https://www.geovision.com.tw/products.php?c2=83)\n- [Box](https://www.geovision.com.tw/products.php?c2=89)\n- [PTZ](https://www.geovision.com.tw/products.php?c2=85)\n- [IP Speed Dome](https://www.geovision.com.tw/products.php?c2=137)\n- [3D People Counter](https://www.geovision.com.tw/products.php?c2=155)\n- [Accessories](https://www.geovision.com.tw/products.php?c2=145)\n- [Pinhole](https://www.geovision.com.tw/products.php?c2=177)\n- [Access Control](https://www.geovision.com.tw/products.php?c1=25)\n- [Software](https://www.geovision.com.tw/products.php?c2=154)\n- [IP Control Panel / Kit](https://www.geovision.com.tw/products.php?c2=117)\n- [Controller](https://www.geovision.com.tw/products.php?c2=118)\n- [Reader](https://www.geovision.com.tw/products.php?c2=119)\n- [Accessories](https://www.geovision.com.tw/products.php?c2=139)\n- [License Plate Recognition](https://www.geovision.com.tw/products.php?c1=7)\n- [Software](https://www.geovision.com.tw/products.php?c2=161)\n- [IP LPR Camera (built in Deep Learning Recognition Engine)](https://www.geovision.com.tw/products.php?c2=123)\n- [IP LPR Camera](https://www.geovision.com.tw/products.php?c2=124)\n- [Video Management Software](https://www.geovision.com.tw/products.php?c1=14)\n- [VMS](https://www.geovision.com.tw/products.php?c2=100)\n- [NVR](https://www.geovision.com.tw/products.php?c2=101)\n- [Recording Server](https://www.geovision.com.tw/products.php?c2=102)\n- [Edge Recording Manager](https://www.geovision.com.tw/products.php?c2=103)\n- [Large Scale Monitoring](https://www.geovision.com.tw/products.php?c2=104)\n- [Integration](https://www.geovision.com.tw/products.php?c2=105)\n- [Backup Management](https://www.geovision.com.tw/products.php?c2=106)\n- [Video Analytics](https://www.geovision.com.tw/products.php?c2=107)\n- [Mobile App](https://www.geovision.com.tw/products.php?c2=147)\n- [Surveillance System](https://www.geovision.com.tw/products.php?c1=4)\n- [Tower Systems](https://www.geovision.com.tw/products.php?c2=172)\n- [Hot Swap Systems](https://www.geovision.com.tw/products.php?c2=173)\n- [Control Center Systems](https://www.geovision.com.tw/products.php?c2=163)\n- [AI Systems](https://www.geovision.com.tw/products.php?c2=162)\n- [Mini Systems](https://www.geovision.com.tw/products.php?c2=160)\n- [Storage Systems](https://www.geovision.com.tw/products.php?c2=115)\n- [Mobile Systems](https://www.geovision.com.tw/products.php?c2=138)\n- [Accessories](https://www.geovision.com.tw/products.php?c2=141)\n- [Standalone & Decoder](https://www.geovision.com.tw/products.php?c1=158)\n- [SNVR](https://www.geovision.com.tw/products.php?c2=153)\n- [HD DVR](https://www.geovision.com.tw/products.php?c2=180)\n- [Decoder Box](https://www.geovision.com.tw/products.php?c2=157)\n- [HD Video Encoder](https://www.geovision.com.tw/products.php?c2=73)\n- [PoE Solution](https://www.geovision.com.tw/products.php?c1=39)\n- [PoE Switch](https://www.geovision.com.tw/products.php?c2=131)\n- [Gigabit PoE Switch](https://www.geovision.com.tw/products.php?c2=130)\n- [PoE Extender](https://www.geovision.com.tw/products.php?c2=132)\n- [PoE Adapter](https://www.geovision.com.tw/products.php?c2=140)\n- [Accessories](https://www.geovision.com.tw/products.php?c2=144)\n- [IP Speaker and IO Box](https://www.geovision.com.tw/products.php?c1=31)\n- [IP Speaker](https://www.geovision.com.tw/products.php?c2=176)\n- [IO](https://www.geovision.com.tw/products.php?c2=146)\n- [IP Cameras](https://www.geovision.com.tw/us/products.php?c1=3&uvs)\n- [HD Analog](https://www.geovision.com.tw/us/products.php?c1=165&uvs)\n- [Standalone NVR](https://www.geovision.com.tw/us/products.php?c2=153&uvs)\n- [HD DVR](https://www.geovision.com.tw/us/products.php?c2=170&uvs)\n- [GV-Control Center](https://www.geovision.com.tw/product/GV-Control%20Center)\n- [GV-Center V2](https://www.geovision.com.tw/product/GV-Center%20V2)\n- [GV-Dispatch Server](https://www.geovision.com.tw/product/GV-Dispatch%20Server)\n- [GV-Vital Sign Monitor](https://www.geovision.com.tw/product/GV-Vital%20Sign%20Monitor)\n- [GV-Video Gateway](https://www.geovision.com.tw/product/GV-Video%20Gateway)\n- [GV-Video Wall](https://www.geovision.com.tw/product/GV-Video%20Wall)\n- [GV-Mobile Server](https://www.geovision.com.tw/product/GV-Mobile%20Server)\n- [GV-Enterprise](https://www.geovision.com.tw/product/GV-Enterprise)\n- [GV-AI FR](https://www.geovision.com.tw/product/GV-AI%20FR)\n- [GV-LPR](https://www.geovision.com.tw/product/GV-LPR)\n- [GV-AI Server](https://www.geovision.com.tw/product/GV-AI%20Server)\n- [GV-AI Guard](https://www.geovision.com.tw/product/GV-AI%20Guard)\n- [GV-AS Bridge](https://www.geovision.com.tw/product/GV-AS%20Bridge)\n- [GV-AS1620](https://www.geovision.com.tw/product/GV-AS1620)\n- [GV-DFK1355](https://www.geovision.com.tw/product/GV-DFK1355)\n- [GV-AS4110](https://www.geovision.com.tw/product/GV-AS4110%20IP%20Control%20Panel)\n- [GV-AS4111 Kit](https://www.geovision.com.tw/product/GV-AS4111%20Kit)\n- [GV-Cloud Access Control](https://www.geovision.com.tw/product/GV-Cloud%20Access%20Control)\n- [GV-Cloud VMS](https://www.geovision.com.tw/product/GV-Cloud%20VMS)\n- [GV-VPN](https://www.geovision.com.tw/product/GV-VPN)\n- [GV-IA1330](https://www.geovision.com.tw/product/GV-IA1330)\n- [Signage Player](https://www.geovision.com.tw/products.php?c2=126)\n- [Download](https://www.geovision.com.tw/download/product/)\n- [GeoVision Inc.](https://www.geovision.com.tw/index.php)\n- [About](https://www.geovision.com.tw/aboutCompany.php)\n- [Award](https://www.geovision.com.tw/aboutAward.php)\n- [Investor Relations](https://www.geovision.com.tw/aboutOverview.php)\n- [USA Vision HD Analog](https://www.geovision.com.tw/uvsline.php)\n- [AI Solution](https://www.geovision.com.tw/ai.php)\n- [Cloud Solution](https://www.geovision.com.tw/aicloud.php)\n- [GV-Cloud Bridge Series](https://www.geovision.com.tw/search_result2.php?q=bridge)\n\n## Blog\n- [Release Notices](https://www.geovision.com.tw/blog/?cat=14)\n\n## Legal\n- [Privacy](https://www.geovision.com.tw/privacy.php)\n\n## Support\n- [Support](https://www.geovision.com.tw/support.php)\n- [Contact Us](https://www.geovision.com.tw/contact.php)\n\n",
  "llmsTxtExisting": null,
  "emergingProtocols": {
    "oauthDiscovery": {
      "exists": false,
      "url": "https://www.geovision.com.tw/.well-known/oauth-authorization-server"
    },
    "mcpServerCard": {
      "exists": false,
      "url": "https://www.geovision.com.tw/.well-known/mcp.json"
    },
    "a2aAgentCard": {
      "exists": false,
      "url": "https://www.geovision.com.tw/.well-known/agent.json"
    },
    "count": 0
  },
  "snippets": [
    {
      "id": "add_llms_txt",
      "title": "Create /llms.txt",
      "description": "Upload this file to your web root. It tells AI agents what your site is about and which pages matter.",
      "language": "markdown",
      "code": "# GeoVision\n\n> GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surveillance platforms, and tailored surveillance software designed for business buildings, factories, and retail environments. Enhance public safety and manage security with our cuttin…\n\n## Documentation\n- [NDAA compliant](https://www.geovision.com.tw/_upload/doc/ndaa.pdf)\n- [TERMS OF USE](https://www.geovision.com.tw/_upload/doc/TERM_OF_USE.pdf)\n- [NIS 2](https://www.geovision.com.tw/_upload/doc/NIS_2.pdf)\n\n## Main\n- [GeoVision](https://www.geovision.com.tw/): GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surve…\n- [Products](https://www.geovision.com.tw/products.php)\n- [IP Cameras](https://www.geovision.com.tw/products.php?c1=3)\n- [Eyeball](https://www.geovision.com.tw/products.php?c2=84)\n- [Dome](https://www.geovision.com.tw/products.php?c2=94)\n- [Bullet](https://www.geovision.com.tw/products.php?c2=92)\n- [Fisheye](https://www.geovision.com.tw/products.php?c2=87)\n- [Multi-sensor / Panoramic](https://www.geovision.com.tw/products.php?c2=174)\n- [Thermal](https://www.geovision.com.tw/products.php?c2=83)\n- [Box](https://www.geovision.com.tw/products.php?c2=89)\n- [PTZ](https://www.geovision.com.tw/products.php?c2=85)\n- [IP Speed Dome](https://www.geovision.com.tw/products.php?c2=137)\n- [3D People Counter](https://www.geovision.com.tw/products.php?c2=155)\n- [Accessories](https://www.geovision.com.tw/products.php?c2=145)\n- [Pinhole](https://www.geovision.com.tw/products.php?c2=177)\n- [Access Control](https://www.geovision.com.tw/products.php?c1=25)\n- [Software](https://www.geovision.com.tw/products.php?c2=154)\n- [IP Control Panel / Kit](https://www.geovision.com.tw/products.php?c2=117)\n- [Controller](https://www.geovision.com.tw/products.php?c2=118)\n- [Reader](https://www.geovision.com.tw/products.php?c2=119)\n- [Accessories](https://www.geovision.com.tw/products.php?c2=139)\n- [License Plate Recognition](https://www.geovision.com.tw/products.php?c1=7)\n- [Software](https://www.geovision.com.tw/products.php?c2=161)\n- [IP LPR Camera (built in Deep Learning Recognition Engine)](https://www.geovision.com.tw/products.php?c2=123)\n- [IP LPR Camera](https://www.geovision.com.tw/products.php?c2=124)\n- [Video Management Software](https://www.geovision.com.tw/products.php?c1=14)\n- [VMS](https://www.geovision.com.tw/products.php?c2=100)\n- [NVR](https://www.geovision.com.tw/products.php?c2=101)\n- [Recording Server](https://www.geovision.com.tw/products.php?c2=102)\n- [Edge Recording Manager](https://www.geovision.com.tw/products.php?c2=103)\n- [Large Scale Monitoring](https://www.geovision.com.tw/products.php?c2=104)\n- [Integration](https://www.geovision.com.tw/products.php?c2=105)\n- [Backup Management](https://www.geovision.com.tw/products.php?c2=106)\n- [Video Analytics](https://www.geovision.com.tw/products.php?c2=107)\n- [Mobile App](https://www.geovision.com.tw/products.php?c2=147)\n- [Surveillance System](https://www.geovision.com.tw/products.php?c1=4)\n- [Tower Systems](https://www.geovision.com.tw/products.php?c2=172)\n- [Hot Swap Systems](https://www.geovision.com.tw/products.php?c2=173)\n- [Control Center Systems](https://www.geovision.com.tw/products.php?c2=163)\n- [AI Systems](https://www.geovision.com.tw/products.php?c2=162)\n- [Mini Systems](https://www.geovision.com.tw/products.php?c2=160)\n- [Storage Systems](https://www.geovision.com.tw/products.php?c2=115)\n- [Mobile Systems](https://www.geovision.com.tw/products.php?c2=138)\n- [Accessories](https://www.geovision.com.tw/products.php?c2=141)\n- [Standalone & Decoder](https://www.geovision.com.tw/products.php?c1=158)\n- [SNVR](https://www.geovision.com.tw/products.php?c2=153)\n- [HD DVR](https://www.geovision.com.tw/products.php?c2=180)\n- [Decoder Box](https://www.geovision.com.tw/products.php?c2=157)\n- [HD Video Encoder](https://www.geovision.com.tw/products.php?c2=73)\n- [PoE Solution](https://www.geovision.com.tw/products.php?c1=39)\n- [PoE Switch](https://www.geovision.com.tw/products.php?c2=131)\n- [Gigabit PoE Switch](https://www.geovision.com.tw/products.php?c2=130)\n- [PoE Extender](https://www.geovision.com.tw/products.php?c2=132)\n- [PoE Adapter](https://www.geovision.com.tw/products.php?c2=140)\n- [Accessories](https://www.geovision.com.tw/products.php?c2=144)\n- [IP Speaker and IO Box](https://www.geovision.com.tw/products.php?c1=31)\n- [IP Speaker](https://www.geovision.com.tw/products.php?c2=176)\n- [IO](https://www.geovision.com.tw/products.php?c2=146)\n- [IP Cameras](https://www.geovision.com.tw/us/products.php?c1=3&uvs)\n- [HD Analog](https://www.geovision.com.tw/us/products.php?c1=165&uvs)\n- [Standalone NVR](https://www.geovision.com.tw/us/products.php?c2=153&uvs)\n- [HD DVR](https://www.geovision.com.tw/us/products.php?c2=170&uvs)\n- [GV-Control Center](https://www.geovision.com.tw/product/GV-Control%20Center)\n- [GV-Center V2](https://www.geovision.com.tw/product/GV-Center%20V2)\n- [GV-Dispatch Server](https://www.geovision.com.tw/product/GV-Dispatch%20Server)\n- [GV-Vital Sign Monitor](https://www.geovision.com.tw/product/GV-Vital%20Sign%20Monitor)\n- [GV-Video Gateway](https://www.geovision.com.tw/product/GV-Video%20Gateway)\n- [GV-Video Wall](https://www.geovision.com.tw/product/GV-Video%20Wall)\n- [GV-Mobile Server](https://www.geovision.com.tw/product/GV-Mobile%20Server)\n- [GV-Enterprise](https://www.geovision.com.tw/product/GV-Enterprise)\n- [GV-AI FR](https://www.geovision.com.tw/product/GV-AI%20FR)\n- [GV-LPR](https://www.geovision.com.tw/product/GV-LPR)\n- [GV-AI Server](https://www.geovision.com.tw/product/GV-AI%20Server)\n- [GV-AI Guard](https://www.geovision.com.tw/product/GV-AI%20Guard)\n- [GV-AS Bridge](https://www.geovision.com.tw/product/GV-AS%20Bridge)\n- [GV-AS1620](https://www.geovision.com.tw/product/GV-AS1620)\n- [GV-DFK1355](https://www.geovision.com.tw/product/GV-DFK1355)\n- [GV-AS4110](https://www.geovision.com.tw/product/GV-AS4110%20IP%20Control%20Panel)\n- [GV-AS4111 Kit](https://www.geovision.com.tw/product/GV-AS4111%20Kit)\n- [GV-Cloud Access Control](https://www.geovision.com.tw/product/GV-Cloud%20Access%20Control)\n- [GV-Cloud VMS](https://www.geovision.com.tw/product/GV-Cloud%20VMS)\n- [GV-VPN](https://www.geovision.com.tw/product/GV-VPN)\n- [GV-IA1330](https://www.geovision.com.tw/product/GV-IA1330)\n- [Signage Player](https://www.geovision.com.tw/products.php?c2=126)\n- [Download](https://www.geovision.com.tw/download/product/)\n- [GeoVision Inc.](https://www.geovision.com.tw/index.php)\n- [About](https://www.geovision.com.tw/aboutCompany.php)\n- [Award](https://www.geovision.com.tw/aboutAward.php)\n- [Investor Relations](https://www.geovision.com.tw/aboutOverview.php)\n- [USA Vision HD Analog](https://www.geovision.com.tw/uvsline.php)\n- [AI Solution](https://www.geovision.com.tw/ai.php)\n- [Cloud Solution](https://www.geovision.com.tw/aicloud.php)\n- [GV-Cloud Bridge Series](https://www.geovision.com.tw/search_result2.php?q=bridge)\n\n## Blog\n- [Release Notices](https://www.geovision.com.tw/blog/?cat=14)\n\n## Legal\n- [Privacy](https://www.geovision.com.tw/privacy.php)\n\n## Support\n- [Support](https://www.geovision.com.tw/support.php)\n- [Contact Us](https://www.geovision.com.tw/contact.php)\n\n",
      "filename": "/llms.txt"
    },
    {
      "id": "add_open_graph",
      "title": "Add missing Open Graph tags",
      "description": "Open Graph tags control how your page looks when shared on social media and how AI platforms preview your URL in answers.",
      "language": "html",
      "code": "<meta property=\"og:image\" content=\"https://yoursite.com/og-image.jpg\">\n<meta property=\"og:url\" content=\"https://www.geovision.com.tw/\">\n<meta property=\"og:type\" content=\"website\">",
      "filename": "<head>",
      "stacks": [
        {
          "id": "html",
          "label": "HTML <head>",
          "language": "html",
          "filename": "<head>",
          "code": "<meta property=\"og:image\" content=\"https://yoursite.com/og-image.jpg\">\n<meta property=\"og:url\" content=\"https://www.geovision.com.tw/\">\n<meta property=\"og:type\" content=\"website\">"
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// Quick Open Graph tags without a plugin (skip if Yoast / Rank Math is active)\nadd_action('wp_head', function () {\n    if (!is_singular()) return;\n    $post = get_queried_object();\n    $title = get_the_title($post);\n    $desc  = get_the_excerpt($post) ?: wp_trim_words(strip_tags($post->post_content), 30);\n    $image = get_the_post_thumbnail_url($post, 'large') ?: 'https://yoursite.com/og-image.jpg';\n    $url   = get_permalink($post);\n    printf('<meta property=\"og:title\" content=\"%s\">' . \"\\n\", esc_attr($title));\n    printf('<meta property=\"og:description\" content=\"%s\">' . \"\\n\", esc_attr($desc));\n    printf('<meta property=\"og:image\" content=\"%s\">' . \"\\n\", esc_url($image));\n    printf('<meta property=\"og:url\" content=\"%s\">' . \"\\n\", esc_url($url));\n    echo '<meta property=\"og:type\" content=\"article\">' . \"\\n\";\n}, 5);"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "app/page.tsx",
          "code": "// Next.js App Router — Metadata API\nimport type { Metadata } from 'next';\n\nexport const metadata: Metadata = {\n  title: \"GeoVision\",\n  description: \"GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surveillance platforms, and tailored surveillance software designed for business buildings, factories, and retail environments. Enhance public safety and manage security with our cutting-edge technology.\",\n  openGraph: {\n    title: \"GeoVision\",\n    description: \"GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surveillance platforms, and tailored surveillance software designed for business buildings, factories, and retail environments. Enhance public safety and manage security with our cutting-edge technology.\",\n    url: \"https://www.geovision.com.tw/\",\n    images: [\"https://yoursite.com/og-image.jpg\"],\n    type: 'website',\n  },\n};"
        }
      ]
    },
    {
      "id": "add_canonical_url",
      "title": "Add canonical URL",
      "description": "The canonical URL tells AI agents which version of the page is the \"official\" one, avoiding duplicate content issues.",
      "language": "html",
      "code": "<link rel=\"canonical\" href=\"https://www.geovision.com.tw/\">",
      "filename": "<head>"
    },
    {
      "id": "add_schema_org",
      "title": "Add Schema.org JSON-LD",
      "description": "Structured data helps AI agents understand the type, author, and purpose of your content.",
      "language": "html",
      "code": "<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"WebPage\",\n  \"name\": \"GeoVision\",\n  \"description\": \"GeoVision specializes in advanced video surveillance solutions, offering state-of-the-art IP cameras, cloud-based surveillance platforms, and tailored surveillance software designed for business buildings, factories, and retail environments. Enhance public safety and manage security with our cutting-edge technology.\",\n  \"url\": \"https://www.geovision.com.tw/\",\n  \"inLanguage\": \"en\",\n  \"isPartOf\": {\n    \"@type\": \"WebSite\",\n    \"name\": \"GeoVision\"\n  },\n  \"author\": {\n    \"@type\": \"Person\",\n    \"name\": \"GeoVision Inc.\"\n  }\n}\n</script>",
      "filename": "<head>"
    },
    {
      "id": "add_robots_txt",
      "title": "Create /robots.txt",
      "description": "A robots.txt file tells crawlers (including AI bots) what they can and cannot access.",
      "language": "txt",
      "code": "User-agent: *\nAllow: /\n\nSitemap: https://www.geovision.com.tw/sitemap.xml",
      "filename": "/robots.txt"
    },
    {
      "id": "add_sitemap",
      "title": "Create /sitemap.xml",
      "description": "A sitemap helps AI agents discover all your pages. Most CMS platforms generate one automatically.",
      "language": "xml",
      "code": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n  <url>\n    <loc>https://www.geovision.com.tw/</loc>\n    <lastmod>2026-04-20</lastmod>\n  </url>\n</urlset>",
      "filename": "/sitemap.xml"
    },
    {
      "id": "add_content_signals",
      "title": "Add Content-Signal directives",
      "description": "Content-Signal tells AI agents how they may use your content. The canonical location is robots.txt, but you can also expose it as an HTTP header from any stack.",
      "language": "txt",
      "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no",
      "filename": "/robots.txt",
      "stacks": [
        {
          "id": "robots",
          "label": "robots.txt",
          "language": "txt",
          "filename": "/robots.txt",
          "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no"
        },
        {
          "id": "nginx",
          "label": "Nginx",
          "language": "nginx",
          "filename": "server block",
          "code": "# Inside your server { } block:\nadd_header Content-Signal \"search=yes, ai-input=yes, ai-train=no\" always;"
        },
        {
          "id": "apache",
          "label": "Apache",
          "language": "apache",
          "filename": ".htaccess",
          "code": "# In .htaccess (or VirtualHost):\nHeader set Content-Signal \"search=yes, ai-input=yes, ai-train=no\""
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// In your theme's functions.php or a small mu-plugin\nadd_action('send_headers', function () {\n    header('Content-Signal: search=yes, ai-input=yes, ai-train=no');\n});\n\n// Optional: also append the directive to the dynamic robots.txt\nadd_filter('robots_txt', function ($output) {\n    return $output . \"\\nContent-Signal: search=yes, ai-input=yes, ai-train=no\\n\";\n}, 10, 1);"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "middleware.ts",
          "code": "// middleware.ts (Next.js 13+ App Router or Pages Router)\nimport { NextResponse } from 'next/server';\nexport function middleware() {\n  const res = NextResponse.next();\n  res.headers.set(\n    'Content-Signal',\n    'search=yes, ai-input=yes, ai-train=no'\n  );\n  return res;\n}\nexport const config = { matcher: '/:path*' };"
        },
        {
          "id": "cloudflare",
          "label": "Cloudflare Workers",
          "language": "javascript",
          "filename": "worker.js",
          "code": "// Cloudflare Worker that proxies your origin and adds the header\nexport default {\n  async fetch(request, env, ctx) {\n    const res = await fetch(request);\n    const newRes = new Response(res.body, res);\n    newRes.headers.set(\n      'Content-Signal',\n      'search=yes, ai-input=yes, ai-train=no'\n    );\n    return newRes;\n  },\n};"
        },
        {
          "id": "express",
          "label": "Express / Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Express\napp.use((req, res, next) => {\n  res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n  reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  done();\n});"
        }
      ]
    },
    {
      "id": "add_markdown_negotiation",
      "title": "Support Markdown for Agents",
      "description": "Let AI agents request a clean Markdown version of any page via content negotiation, .md alternate URLs, link tags or Link headers.",
      "language": "html",
      "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">",
      "filename": "<head>",
      "stacks": [
        {
          "id": "html",
          "label": "HTML <head>",
          "language": "html",
          "filename": "<head>",
          "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        },
        {
          "id": "express",
          "label": "Express",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\napp.get('/page', (req, res) => {\n  res.setHeader('Vary', 'Accept');\n  res.setHeader('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    res.type('text/markdown; charset=utf-8');\n    return res.send(renderMarkdown('page'));\n  }\n  res.render('page');\n});"
        },
        {
          "id": "fastify",
          "label": "Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n  reply.header('Vary', 'Accept');\n  reply.header('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n  }\n  return reply.view('/page.ejs');\n});"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "app/page/route.ts",
          "code": "// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n  const accept = req.headers.get('accept') || '';\n  if (accept.includes('text/markdown')) {\n    return new Response(await renderMarkdown('page'), {\n      headers: {\n        'Content-Type': 'text/markdown; charset=utf-8',\n        'Vary': 'Accept',\n      },\n    });\n  }\n  // Fall through to the page component\n  return new Response(null, { status: 404 });\n}"
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// Mechanism 1: respond to Accept: text/markdown on the same URL\nadd_action('template_redirect', function () {\n    if (!is_singular()) return;\n    $accept = $_SERVER['HTTP_ACCEPT'] ?? '';\n    if (strpos($accept, 'text/markdown') === false) return;\n    header('Content-Type: text/markdown; charset=utf-8');\n    header('Vary: Accept');\n    $post = get_queried_object();\n    echo \"# \" . get_the_title($post) . \"\\n\\n\";\n    echo wp_strip_all_tags(apply_filters('the_content', $post->post_content));\n    exit;\n});"
        },
        {
          "id": "static",
          "label": "Hugo / Jekyll / Astro",
          "language": "txt",
          "filename": "static/page.md",
          "code": "# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in <head>:\n#   <link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        }
      ]
    }
  ]
}

Utilisez notre API pour obtenir ceci de manière programmatique (bientôt disponible)

Ce JSON est à usage interne — contrairement au Markdown et au llms.txt, il n’est pas destiné à être téléversé sur votre site. Conservez-le comme référence pour suivre l’évolution de votre score, partagez-le avec votre équipe de développement ou intégrez-le dans votre pipeline CI/CD.

Partagez vos résultats

Twitter LinkedIn

Intégrez votre badge

Ajoutez ce badge à votre site. Il se met à jour automatiquement lorsque votre score de préparation à l’IA change.

AgentReady.md score for www.geovision.com.tw
Script Recommandé
<script src="https://agentready.md/badge.js" data-id="e2ed594b-e4bc-4e73-9753-ef1f9dc20295" data-domain="www.geovision.com.tw"></script>
Markdown
[![AgentReady.md score for www.geovision.com.tw](https://agentready.md/badge/www.geovision.com.tw.svg)](https://agentready.md/fr/r/e2ed594b-e4bc-4e73-9753-ef1f9dc20295)

Bientôt : Analyse de domaine complet

Explorez l’ensemble de votre domaine, générez un llms.txt et surveillez votre score de préparation IA dans le temps. Rejoignez la liste d’attente pour être informé.

Vous êtes sur la liste ! Nous vous préviendrons lors du lancement.