Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (49)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (2610)

  • avcodec/motion_est : Only clip MVs which are used

    11 juin 2014, par Michael Niedermayer
    avcodec/motion_est : Only clip MVs which are used
    

    Fixes valgrind mpeg4 failures

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/motion_est.c
  • PHP 7 / Symfony 3.4 Generate video from multiple images using ffmpeg tool

    23 octobre 2017, par KD-Freelancer

    I recently started development on Symfony 3.4. I would like to generate video from a set of images using ffmpeg tool. And in this video I would like to display a text on start of the video and some text at the end of the video.

    Is there any already existing Symfony/PHP package which I can use and generate the video out of images ?

    So far on searching, I came across following two packages, but when on trial I could not generate the video out of multiple images.

    1. PHP-FFMpeg
      Tried with this package but did not get any success and came across this existing issue which says that its not possible using this package.

    2. ffmpeg-php-class
      Also tried with this package, with reference to Example # 20 , but it only generates video for the single image only.

  • How do I accurately extend the duration of a tiny video clip ?

    18 avril 2018, par joeycato

    I noticed that ffmpeg doesn’t always scale the duration of a clip to the desired value ( even accounting for milliseconds of precision loss.) For example, whenever I attempt to scale the duration of this tiny 67ms clip to 7 seconds :

    ffmpeg -i input.avi -filter:v "setpts=(7/0.067)*PTS" -an output.avi    

    the resulting video is only 3.5 seconds in duration.

    Not really sure why this is off by multiple seconds, but I suspect it has something to do with the input clip itself ( which is only 2 frames @ 29.97 fps ) So far, I’ve discovered that if I scale the duration to a much larger value first, then scale back from that to 7 seconds, it works fine :

    ffmpeg -i input.avi -filter:v "setpts=(1000)*PTS" -an input_scaled_high.avi
    ffmpeg -i input_scaled_high.avi -filter:v "setpts=(7/33.400033)*PTS" -an output.avi

    But I’m hoping I don’t need to resort to an intermediate file. Is it possible to solve this with a single ffmpeg call ?

    If it helps, here is the video file I’m working with : https://drive.google.com/drive/folders/1hI5Xo6kfAfMd8ZylM6XrPX5fuO88gncE?usp=sharing

    Note : I should mention that I don’t need sound at all in this experiment ( hence the -an )