Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (104)

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

  • avcodec/cabac : remove START/STOP_TIMER debug/benchmark code

    18 avril 2015, par Michael Niedermayer
    avcodec/cabac : remove START/STOP_TIMER debug/benchmark code
    

    Found-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/cabac.c
  • How can i extract freezedetect start and end frames from video using ffmpeg

    9 juillet 2021, par kwomba

    I have to following command which detects freezed frames using only part of a movie :

    &#xA;

    ffmpeg -i movie.mp4 -vf "crop=50:50:0:740,freezedetect" -f null -

    &#xA;

    Now this outputs the metadata from the freezedetect filter like so :

    &#xA;

    [freezedetect @ 0000013fbbe2ab40] lavfi.freezedetect.freeze_start: 6.86667&#xA;[freezedetect @ 0000013fbbe2ab40] lavfi.freezedetect.freeze_duration: 2.4&#xA;[freezedetect @ 0000013fbbe2ab40] lavfi.freezedetect.freeze_end: 9.26667&#xA;

    &#xA;

    But it also sets the framemetadata which (dumped to a file) contains :

    &#xA;

    frame:126  pts:126000  pts_time:8.4&#xA;lavfi.freezedetect.freeze_start=6.86667&#xA;frame:139  pts:139000  pts_time:9.26667&#xA;lavfi.freezedetect.freeze_duration=2.4&#xA;lavfi.freezedetect.freeze_end=9.26667&#xA;

    &#xA;

    Now i want to (in the same command if possible) save the start and end freezed frames (126 and 139 in this case) to a png file.

    &#xA;

    Can i do this using only 1 ffmpeg command ?

    &#xA;

  • How to merge several audio and video file with defined start time using ffmpeg ? [closed]

    1er décembre 2020, par Sina Rostami

    I want to merge several audio and video files with their defined start time using ffmpeg.

    &#xA;

    for example consider these :

    &#xA;

    a.mp3 (00:00)

    &#xA;

    b.mp3 (00:10)

    &#xA;

    c.mp3 (00:20)

    &#xA;

    a.mp4 (00:10)

    &#xA;

    and in the overlapping times, both file should be played.

    &#xA;

    the output should be a file (out.mp4) like this :

    &#xA;

    time:&#xA;        |---------------a.mp4-----------------|&#xA;|---a.mp3--|&#xA;        |---b.mp3----|      |----c.mp3-------------|&#xA;====================================================&#xA;&#xA;

    &#xA;

    and it's okay to show a black screen when there's no video files at the time.&#xA;and also a soundless video when there's no audio file.&#xA;is it possible using ffmpeg ?

    &#xA;

    plz help

    &#xA;