Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (112)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (14968)

  • Bash while loop wait until task has completed

    30 juillet 2015, par macmichael01

    I have a bash script that I created to process videos from within a folder and it’s subfolders :

    find . -type f -name '*.mkv' | while read file;
    do
     ffmpeg -i $file ...
    done

    The problem : Instead of the while loop waiting ffmpeg to complete, it continues iterate through the loop. The end result is, files not getting processed. I need a way to have the current while loop iteration to wait until ffmpeg is complete before continuing to the next. Or alternatively a way to queue these items.

    Edit : So The solution when iterating over a set of files is to pass the -nostdin param to ffmpeg. Hope this helps anyone else who might have a similar issue.

    Also file —> $file was a copy/paste typo.

  • Adding loop video to sound ffmpeg

    19 décembre 2017, par Cuviline

    i start working with ffmpeg, and here my first doubt :

    I have one sound file, example.mp3 (1 min duration).
    I want add a loop video, example.mp4 ( x sec duration).

    I want generate 1 min mp4 video and loop this video 3 times in this case, but this could be dynamic.

    Its posible do this with ffmpeg ?

    Thanks in advance

  • FFMPEG vstack and loop

    6 mars 2020, par Tasurnin

    I would like to stack 4 videos as in the code below and add a loop for top_left.mp4 that is shorter for example.
    I can’t find a way to add the loop option without getting errors.
    Could you help me please ?

    ffmpeg -i top_left.mp4 -i top_right.mp4 -i bottom_left.mp4 -i bottom_right.mp4 \
          -lavfi "[0:v][1:v]hstack[top];[2:v][3:v]hstack[bottom];[top][bottom]vstack" \
           2by2grid.mp4