
Recherche avancée
Autres articles (87)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (6319)
-
FFMPEG How do I render a FLV from multiple PNG while saving the alpha channel ?
13 août 2013, par Dan KI'm using FFMPEG, and when I'm rendering a FLV movie from multiple PNG files.
I would like to preserve the png's alpha channel (transparency) in the output FLV file.If you could please help me out on this one, I would appreciate it.
Thanks,
Dan. -
Steps for writing NAL packets to mp4 using libavformat
11 août 2013, par Nisar AhmedI am writing h.264 NAL packets to mp4 container using libavformat but the output movie does not play on vlc player at all and ffmpeg -i output.mp4 gives "Could not find codec parameters for stream 0 (Video : h264 (avc1 / 0x31637661), 720x480, 13954 kb/s) : unspecified pixel format"
I have followed the steps mentioned in muxing.c sample but the results are same.
Furthermore I don't want to encode frames as they are already encoded so I am bypassing avcodec_open2 function call.
Please tell me what steps should I take in order to correctly write h264 to mp4.
-
How to use FFMPEG to add different pictures into one video
24 juillet 2012, par user1546926What I want to do is to display different pictures on specific time periods of the video.
I have got a solution which is using FFMPEG to split the video into several components and then adding pictures as watermark into those components, and finally join them together.
However, I don't think it is very efficient when tackling with large videos.
Any idea ? doesn't need to be done in a single command, could even be a script. thanks in advance.
this is what I did :
Codes for adding watermark
ffmpeg -ss 00:00:00 -t 00:01:30 -i test.mpg -vf "movie=logo1.png [watermark];[in]
[watermark] overlay= main_w-overlay_w-10:main_h-overlay_h-10 [out]" -vcodec flv -sameq out1.avi
ffmpeg -ss 00:01:30 -t 00:03:00 -i test.mpg -vf "movie=logo2.png [watermark];[in]
[watermark] overlay= main_w-overlay_w-10:main_h-overlay_h-10 [out]" -vcodec flv -sameq out2.aviCodes for joining avi(running on Windows)
copy out1.avi /b + out2.avi /b output.avi /b