
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)
Sur d’autres sites (7185)
-
libx265 : Bump version requirement
30 mars 2014, par Derek Buitenhuis -
FFMPEG : Add black frames at start and end of video
7 novembre 2014, par user3729198Im trying to add 10 second of black frames to the beginning of my clip and 30 seconds of black frames at end of clip. This is what I got so far.
ffmpeg -i XX.mp4 -vf "
color=c=black:s=720x576:d=10 [pre] ;
color=c=black:s=720x576:d=30 [post] ;
[pre] [in] [post] concat=n=3" -an -vcodec mpeg2video -pix_fmt yuv422p -s 720v576 -aspect 16:9 -r 25 -minrate 30000k -maxrate 30000k -b 30000k output.mpg
It works in some cases. But Only on specific material with right "SAR" values. But most of the time I get this error.
Input link in1:v0 parameters (size 720x576, SAR 35:24) do not match the corresponding output link in0:v0 parameters (720x576, SAR 1:1)
[Parsed_concat_2 @ 0x7f9853d048c0] Failed to configure output pad on Parsed_concat_2
Is there a way to complement my code or another way to do this ?
-
ffmpeg process creating files with wrong permissions
24 janvier 2013, par Rickard LiljebergSo I am fiddling with asp.net and ffmpeg. I downloaded this sample here : http://nolovelust.com/post/Another-Simple-C-Wrapper-For-FFmpeg
It all works perfectly on my local machine, but when i publish to my hosting I get the problem that it runs but thinks forever (literally). the weird thing is that the files are created but with permission 00 (according to filezilla) I cannot do anything to them except delete them.
now even weirder is that after a long time they would get permission 777 sometimes and if i downloaded them and had a look it was all correct.
So basically I am pretty sure it's this file permission thing that is the issue but I start ffmpeg like so :
Process proc = System.Diagnostics.Process.Start(oInfo);
so how can i control which filepermission ffmpeg in turn saves with ??