Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (51)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

Sur d’autres sites (8083)

  • Images to video in PHP ? [duplicate]

    24 juin 2013, par jesper

    This question already has an answer here :

    I have tried to make a images to video converter, and this works.

    ffmpeg  -i /home/psafari/public_html/common/images/icon3.png -vcodec mpeg4 /home/psafari/public_html/" . time().".avi

    But how can i set the duration of the movie ? So it's maybe 7 minutes long ?

    Another question :

    I have 2 pictures, now the command only make the video from image "icon3.png", but i need it to run maybe picture2.png the first 5 seconds, and the rest (6.55 seconds) it has to view icon3.png ex.

  • Renaming ffmpeg to something unique when running on linux [duplicate]

    30 janvier 2019, par glenskie16

    This question already has an answer here :

    I am currently trying to run multiple instances of ffmpeg on my vps, and i have a script that checks every 15 seconds to see if its still running. This script checks for "ffmpeg". What i need is to have it check for ffmpeg123 as example so that there can be multiple scripts to check if a specific ffmpeg has crashed so it can restart it.

       while [ 1 ]; do

       if pgrep -x "ffmpeg" > /dev/null
       then
           echo "Running"
       else
           //restart ffmpeg
       fi
       sleep 15
    done

    So what i would like is to have like 5 differently named ffmpeg’s running as like ffmpeg1,ffmpeg2,ffmpeg3, etc.

    Thank you in advanced ! FFMPEG is also started within this script.

  • FFMpeg - separating audio channels with filter complex [duplicate]

    31 décembre 2019, par Muzaffer

    This question already has an answer here :

    I am using the following code in a bash file ;

     
    ffmpeg -i file1.mp4 -i file2.mp4 -filter_complex hstack output.mp4
    The two videos are beautiful together. But I can only get the sound of the first video.
    How do I get the left video on the left audio channel and the right video on the right audio channel ?
    Thanks.