
Recherche avancée
Autres articles (88)
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
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 (...)
Sur d’autres sites (9472)
-
tools : Make sure to create the tools directory before building decode_simple.o
8 août 2022, par Martin Storsjötools : Make sure to create the tools directory before building decode_simple.o
This directory dependency is normally added implicitly by rules
in ffbuild/common.mak ; for tools it's created by a rule for TOOLOBJS.
TOOLOBJS is populated implicitly from TOOLS, and decode_simple.o
doesn't end up there because it's an odd occurrance of a lone
object file in the tools subdirectory, not belonging to any other
tool.Signed-off-by : Martin Storsjö <martin@martin.st>
-
ffmpeg kills python kernel upon completion of operation
9 août 2023, par Ata YalcinI run the following prompt with
os.system(prompth)
in Python

ffmpeg -framerate {framerate} -i 'video-demo-frames/%d.ppm' -i temp-audio/audio.aac -shortest -c:v libx264 -r {framerate} -pix_fmt yuv420p {output}



ffmpeg
creates the video from the frames and also does add the audio correctly. But upon the completion of the process it seems to kill my python kernel.

Some sources over the internet says that it is caused by the large size of my pictures and video, but i dont know whether that is true. What is the reason of this problem and how can ı solve it ?


-
Does FFMPEG video in php over shell_exec()
21 août 2015, par Ondrej KratinaI have
<?
echo shell_exec("ffmpeg -start_number 174 -i timelapse/20/%01d.jpg -vcodec libvpx -acodec libvorbis -r 24 timelapse/test.webm 2> timelapse/out.txt");
?>I would like to create WebM video (timelapse) from the image of a webcam. Unfortunately I was unable to create a video in PHP5.
ffmpeg: unrecognized option '-start_number'
If I remove
-start_number
I receive another error :timelapse / 20 /% 01d.jpg: I / O error occured Usually That Means That input file is truncated and / or corrupted.
I saved as pictures 174.jpg 175.jpg .. and more.