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粉8645949652023-09-10 00:59:44
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>