HTML5 video M3U8 encoded with Base64
P粉269530053
P粉269530053 2023-09-09 23:07:18
0
1
783

I want to add a base64 encoded M3U8 file in the Video tag of HTML5, how should I do it

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
  <video width="100%" controls src="data:application/x-mpegURL;base64,..."></video>
</body>
</html>

I want to embed my M3U8 file into Video tag using base64

P粉269530053
P粉269530053

reply all(1)
P粉864594965

Try this:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    </head>
    <body>
        <video width="100%" controls>
            <source src="data:application/x-mpegURL;base64,..." type="application/x-mpegURL">
        </video>
    </body>
</html>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template