
Recherche avancée
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (12416)
-
I am converting wmv to mp4 file using ffmpeg but it doesn't play on html5 video tag
8 avril 2017, par user3017170I am using version of ffmpeg 1.2.3 in php . It successfully converts the video to mp4 which i can play using flv player but when i add this video to html5 video tag it doest work properly.
The Command is
shell_exec("/usr/bin/ffmpeg -i /var/www/html/vid/upload/inputfile.wmv -s 500x400 -strict -2 /var/www/html/vid/mp4videos/outputfile.mp4 2>&1");
HTML CODE
<video width="100%" height="100%" controls="controls"><source src="mp4videos/outputfile.mp4" type="video/mp4"></source></video>
-
I am converting wmv to mp4 file using ffmpeg but it doesn't play on html5 video tag
23 octobre 2017, par user3017170I am using version of ffmpeg 1.2.3 in php . It successfully converts the video to mp4 which i can play using flv player but when i add this video to html5 video tag it doest work properly.
The Command is
shell_exec("/usr/bin/ffmpeg -i /var/www/html/vid/upload/inputfile.wmv -s 500x400 -strict -2 /var/www/html/vid/mp4videos/outputfile.mp4 2>&1");
HTML CODE
<video width="100%" height="100%" controls="controls"><source src="mp4videos/outputfile.mp4" type="video/mp4"></source></video>
-
Live streaming RTMP to HTML5
28 septembre 2016, par astralmasterI have a
RTMP
live stream coming fromUnreal Media Server
that I need to display on a HTML5 page with<video></video>
tag. So far I am thinking of using ffmpeg libraries to transcode the stream with H.264 codec and output it to a .mp4 file and then access it through http protocol like this :http://ip_addr/output_from_ffmpeg.mp4
I am, however, uncertain if this would play the whole output file from the beginning or stream it live. My current ffmpeg command for transcoding the stream is :ffmpeg -i rtmp://IP_addr_of_rtmp_stream:5119/live/Roulette -c:v libx264 -maxrate 1000k -bufsize 2000k -g 50 output.mp4
Could anyone point me in the right direction ? I have also read in the docs that ffserver is able to achieve this but windows build is unavailable for it.