"\n    <!DOCTYPE html>\n    <html>\n    <head>\n        <title>Video Streamer</title>\n        <style>\n            body {\n                margin: 0;\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n                background: #000;\n            }\n            video {\n                max-width: 100%;\n                max-height: 100vh;\n            }\n        </style>\n    </head>\n    <body>\n        <video controls autoplay>\n            <source src=\"/video\" type=\"video/mp4\">\n            Your browser does not support the video tag.\n        </video>\n    </body>\n    </html>\n    "