Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (95)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (6260)

  • avcodec/opus/dec : Don't call function multiple times in FFMAX

    4 juillet, par Andreas Rheinhardt
    avcodec/opus/dec : Don't call function multiple times in FFMAX
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/opus/dec.c
  • How do I combine two mp4 files with start and end times ?

    5 août 2020, par ilhan

    I want to combine two mp4 files, let's say first.mp4 and last.mp4, with last x seconds (or by giving starting point) of first.mp4 and first y seconds of last.mp4. Is this possible in one command ?

    &#xA;

  • How to loop over gif file finite number of times while creating mp4 as output with ffmpeg

    16 mai 2020, par in-user

    I am able to convert gif file to mp4 using this command :

    &#xA;&#xA;

    ffmpeg -i animated.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" video.mp4&#xA;

    &#xA;&#xA;

    What I want to do is to loop over gif animation 3 times and convert to mp4.

    &#xA;&#xA;

    I am able to do this with 2 shell commands. First one from above and then concatenate the same video 3 times.

    &#xA;&#xA;

    ffmpeg -f concat -safe 0 -i &lt;(printf "file &#x27;$PWD/video.mp4&#x27;\n%.0s" {1..3}) -c copy videoloop.mp4&#xA;

    &#xA;&#xA;

    I have also tried with -ignore_loop 0 option and setting time. It does work but it is not exactly what I am trying to do since I can extend the video but can not make exactly 3 loops.

    &#xA;&#xA;

    ffmpeg -ignore_loop 0 -i animated.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" -t 12 videoloop.mp4&#xA;

    &#xA;&#xA;

    So as you can see I am already able to achieve what I want, but with 2 shell commands :

    &#xA;&#xA;

    ffmpeg -i animated.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" video.mp4&#xA;ffmpeg -f concat -safe 0 -i &lt;(printf "file &#x27;$PWD/video.mp4&#x27;\n%.0s" {1..3}) -c copy videoloop.mp4&#xA;

    &#xA;&#xA;

    Is it possible to do this with only one call to ffmpeg ?

    &#xA;&#xA;

    I tried with -loop option for the input file. It doesn't work for gifs. I also tried with -stream_loop. It creates something corrupted.

    &#xA;