
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (65)
-
MediaSPIP : Modification des droits de création d’objets et de publication définitive
11 novembre 2010, parPar défaut, MediaSPIP permet de créer 5 types d’objets.
Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (7738)
-
ffmpeg video concate not working when one video is generated from a single image
16 décembre 2017, par Sidwhat I am doing is generating a video of 5 secs from a single image using FFmpeg.
for that I’m using the following command :
-loop 1 -i image.jpg -c:v libx264 -t 5 -pix_fmt yuv420p -crf 25 -s 1280x720 Out.mp4.
Now I want to concatenate this video with another one.
I am able to do this for other videos with the following command
-y -i input1.mp4 -i input2.mp4 -strict experimental -filter_complex [0:v]scale=1280x720,setsar=1:1[v0][1:v]scale=1280x720,setsar=1:1[v1] ;[v0][0:a][v1][1:a]
concat=n=2:v=1:a=1 -ab 48000 -ac 2 -ar 22050 -s 1280x720 -r 30 vcodec
mpeg4 -b 2097k output.mp4But when I join the video generated from the image, the videos do not join as the second input does not have an audio because it is generated from the image.So is there any way to join these two videos using
-filter_complex
in FFmpeg ? -
Create animation video or applying different different effect on video from set of images
8 janvier 2016, par Mehul DudhatI tried with ffmpeg but it’s not showing any effect with created video. I tried below command with FFMPEG lib.
ffmpeg -f image2 -r 1/5 -i /<<dir path="path">>/img/img%d.jpg -vcodec libx264 /<<dir path="path">>/output_video.mp4
</dir></dir>The image generated video : https://flic.kr/p/CWtxhi
Is there any other library available to add effect or animation on video during the creation from set of images ?
I would like to give this type of animation or effect https://animoto.com/play/rXBG1fIq9FWN00O7R7wKyQ
-
How to display a video with alpha channel on video FFMPEG
5 novembre 2016, par AlfredMeierI want to put a video with alpha channel on a default video and stream this to YouTube. But I don’t know how to do that.
Here is what I have done :
ffmpeg -re -i video1.mp4 -codec copy -f flv rtmp://a.rtmp.youtube.com/live2/1234-1234-1234-1234
Thanks for your help :)