Maison > Questions et réponses > le corps du texte
Je souhaite ajouter un fichier M3U8 encodé en base64 dans la balise Vidéo de HTML5, comment puis-je le faire
<!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>
Je souhaite intégrer mon fichier M3U8 dans la balise vidéo en utilisant base64
P粉8645949652023-09-10 00:59:44
Essayez ceci :
<!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>