Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6029)

  • Does FFMPEG video in php over shell_exec()

    21 août 2015, par Ondrej Kratina

    I 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_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.

  • 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

    


    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 ?

    


  • 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