
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
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 ) (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (14004)
-
How to embed mp4 video into my html5 website
1er septembre 2015, par Peter LondonI have been trying to embed my mp4 video into html5 I am using chrome
I have tried this —>> can see video player but no movie<code class="echappe-js"><script src="//api.html5media.info/1.1.8/html5media.min.js"></script>
tried this too ,,could see video player but no movie I am using chrome
<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4">
Your browser does not support the video tag.
</source></video>can anyone help
-
FFmpeg overlay a series of animated gifs onto a video using a filter_complex script text file [closed]
1er mars 2024, par Massimo PapiI am trying to overlay some animated gifs over a video with this command :


ffmpeg -y -i 002_meteo.mp4 -/filter_complex graph.txt -s 1920x1080 -r 25 -b:v 5M -c:v h264_qsv - flags +ilme+ildct -field_order tt -c:a aac -ar 48000 -b:a 192k 003_meteo.mp4



My graph.txt (part of) looks like


movie='./ICONS/pioggia_debole1.png'[1]; 
movie='./ICONS/pioggia_debole1_notte.png'[2]; 
movie='./ICONS/pioggia_debole1.png'[3]; 
movie='./ICONS/pioggia_debole1_notte.png'[4]; 
movie='./ICONS/coperto.png'[5];
[0][1]overlay=x=310:y=350:enable=between(t\,0\,10)[0-1];
[0-1][2]overlay=x=310:y=710:enable=between(t\,0\,10)[0-2];
[0-2][3]overlay=x=950:y=350:enable=between(t\,0\,10)[0-3];
[0-3][4]overlay=x=950:y=710:enable=between(t\,0\,10)[0-4];
[0-4][5]overlay=x=1580:y=350:enable=between(t\,0\,10)



If I use this line, I can accomplish loop :
ffmpeg -y -i 002_meteo.mp4 -ignore_loop 0 -i coperto.gif -filter_complex "overlay=x=310:y=350:shortest=1" -codec:a copy -codec:v libx264 output.mp4


If I put the filter_complex parameters into my text file gifs loop only for the time of gif duration and only the first time, after that they are not animated anymore.
Any help would be appreciated. Thanks.


-
difference between using SDL and using media player class that is videoview
21 janvier 2014, par WhoamiI have been surfing the net for some time to get basic understanding of media framework in android. As part of this,
To display video we have media player class or video view component which can easily display the video. When we have such solution provided by the framework itself, then why there are few components avaiable like SDL [ Simple Direct Media Layer], which claims the same functionality as video view.?
How both are different ?
Kindly bare with me, if the question is very basic.