Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (56)

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

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10265)

  • Extract video clip from MP4 of exacting length [closed]

    21 janvier, par Wes

    The tools I've tried so far are only gives me approximations to the start and end times that I specify. They are usually off by a few seconds.

    


    I need a tool to extract video and audio at exact start and stop times, ideally to the millisecond. It would be preferable to do so without any easily noticeable loss in video quality from the original. I would also prefer to keep the audio in the video.

    


  • FFMPEG picture in picture

    19 février 2016, par Jalyo

    I try to put a portion of video in a video at a certain time.

    Se here’s my command :

    ./ffmpeg-3.0-32bit-static/ffmpeg \
    -y \
    -i main.mp4 \
    -itsoffset -10 \
    -i overlay.mp4 \
    -filter_complex \
    "[1:a] atrim=5:20 [1:a1]; \
    [1:a1] adelay=5000|5000 [1:a2]; \
    [0:a][1:a2] amix [outa]; \
    [1:v] scale=120:-1 [1:v1]; \
    [0:v][1:v1] overlay=x=25:y=25:enable='between(t,5,20)'[outv]" \
    -map "[outv]" \
    -map "[outa]" \
    -c:a aac \
    -c:v libx264 \
    -vb 1000k \
    -r 24 \
    -strict -2 \
    output.mp4

    But I’ve got "Buffer queue overflow, dropping" messages which, I think, makes my overlay.mp4 a little jerky on the output.mp4 :

    [Parsed_overlay_4 @ 0xc29d9c0] [framesync @ 0xc29da84] Buffer queue overflow, dropping.
       Last message repeated 50 times
    [Parsed_overlay_4 @ 0xc29d9c0] [framesync @ 0xc29da84] Buffer queue overflow, dropping.0.927x
    [Parsed_overlay_4 @ 0xc29d9c0] [framesync @ 0xc29da84] Buffer queue overflow, dropping.=2.72x
       Last message repeated 33 times
    [Parsed_overlay_4 @ 0xc29d9c0] [framesync @ 0xc29da84] Buffer queue overflow, dropping.=2.72x
       Last message repeated 14 times
    [Parsed_overlay_4 @ 0xc29d9c0] [framesync @ 0xc29da84] Buffer queue overflow, dropping.=2.97x
       Last message repeated 13 times
    [Parsed_overlay_4 @ 0xc29d9c0] [framesync @ 0xc29da84] Buffer queue overflow, dropping.=3.16x
       Last message repeated 35 times
    [Parsed_overlay_4 @ 0xc29d9c0] [framesync @ 0xc29da84] Buffer queue overflow, dropping.=3.35x
       Last message repeated 45 times
    [Parsed_overlay_4 @ 0xc29d9c0] [framesync @ 0xc29da84] Buffer queue overflow, dropping.=3.46x
       Last message repeated 5 times

    Any idea why ?

    EDIT : Forgot to say I’ve got the last version of ffmpeg => 3.0.

  • Automate file splitting with FFMPEG

    19 novembre 2018, par JSawyer

    We currently use Wowza web streaming for events and would like to take the recorded streams and split them up based on events within the stream.

    My thought would be to upload a file with the times listed and then loop through those times using FFMPEG to split the file.