https://speech.adysec.com/

Submitted URL:
https://speech.adysec.com/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 5 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

Console log messages · 0 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="zh"><head>
          <meta charset="UTF-8">
          <link rel="icon" type="image/png" sizes="32x32" href="https://cdn.oaistatic.com/_next/static/media/favicon-32x32.630a2b99.png">
          <meta name="viewport" content="width=device-width, initial-scale=1.0">
          <title>AdySec 语音识别</title>
          <style>
            body {
              font-family: Arial, sans-serif;
              margin: 0;
              padding: 0;
              background-color: #f4f4f4;
              color: #333;
              display: flex;
              justify-content: center;
              align-items: center;
              min-height: 100vh;
            }
            .container {
              background: #fff;
              padding: 20px;
              border-radius: 8px;
              box-shadow: 0 0 10px rgba(0,0,0,0.1);
              max-width: 600px;
              width: 100%;
            }
            h1 {
              text-align: center;
              color: #555;
            }
            form {
              margin-top: 20px;
            }
            label {
              display: block;
              font-weight: bold;
              margin-bottom: 10px;
            }
            input[type="text"] {
              width: 100%;
              padding: 10px;
              border: 1px solid #ddd;
              border-radius: 4px;
              box-sizing: border-box;
              margin-bottom: 20px;
            }
            button {
              width: 100%;
              padding: 10px;
              border: none;
              border-radius: 4px;
              background-color: #007bff;
              color: #fff;
              font-size: 16px;
              cursor: pointer;
            }
            button:hover {
              background-color: #0056b3;
            }
            #result {
              margin-top: 20px;
              padding: 15px;
              background: #fff;
              border: 1px solid #ddd;
              border-radius: 4px;
              white-space: pre-wrap;
              word-wrap: break-word;
            }
          </style>
        </head>
        <body>
          <div class="container">
            <h1>AdySec 语音识别</h1>
            <form id="audio-form">
              <label for="url">请输入语音文件的 URL:</label>
              <p>如: https://github.com/Azure-Samples/cognitive-services-speech-sdk/raw/master/samples/cpp/windows/console/samples/enrollment_audio_katie.wav</p>
              <input type="text" id="url" name="url" required="">
              <button type="submit">提交</button>
            </form>
            <div id="result"></div>
          </div>
          <script>
            document.getElementById('audio-form').addEventListener('submit', async (event) => {
              event.preventDefault();
              const url = document.getElementById('url').value;
              try {
                const response = await fetch('', {
                  method: 'POST',
                  headers: { 'Content-Type': 'application/json' },
                  body: JSON.stringify({ url })
                });
                if (response.ok) {
                  const result = await response.text();
                  document.getElementById('result').textContent = result || '未找到文本';
                } else {
                  document.getElementById('result').textContent = '请求失败: ' + response.statusText;
                }
              } catch (error) {
                document.getElementById('result').textContent = '错误: ' + error.message;
              }
            });
          </script>
        <script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'8c5e0abe5b542fa6',t:'MTcyNjc5NTczOS4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script><iframe height="1" width="1" style="position: absolute; top: 0px; left: 0px; border: none; visibility: hidden;"></iframe><script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;rayId&quot;:&quot;8c5e0abe5b542fa6&quot;,&quot;version&quot;:&quot;2024.8.0&quot;,&quot;r&quot;:1,&quot;serverTiming&quot;:{&quot;name&quot;:{&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true}},&quot;token&quot;:&quot;c15e2635b2bc4852bef7bda291a02d25&quot;,&quot;b&quot;:1}" crossorigin="anonymous"></script>

        
      </body></html>