Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (88)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si 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, par

    Dans 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, par

    Utilité
    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>

    • [DH] tools/Makefile
  • ffmpeg kills python kernel upon completion of operation

    9 août 2023, par Ata Yalcin

    I run the following prompt with os.system(prompth) in Python

    &#xA;

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

    &#xA;

    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.

    &#xA;

    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 ?

    &#xA;

  • Does FFMPEG video in php over shell_exec()

    21 août 2015, par Ondrej Kratina

    I have

    &lt;?
    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_numberI 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.