Recherche avancée

Médias (91)

Autres articles (99)

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

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

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

  • Revision 1243d265cf : Replace the call to set_offsets() With a more approriate one vp9_setup_src_plan

    11 avril 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Replace the call to set_offsets()

    With a more approriate one vp9_setup_src_planes() as only src buffer
    pointers need to be initialized here.

    Change-Id : I40fac4d8b2d39eb7d0c65b9b6afab45138a13936

  • Use FFmpeg to replace audio in video in Android

    8 juin 2023, par Akari

    I come in trouble with replacing audio track in a video. I select a video from my gallery and I save that video in a file (video file), I also select a audio from my device and save it in a file (audio file). I use FFmpeg to replace audio track in file video select, but I get error, the message is empty and I don't have enough information to fix it. Please, help me !!! Thanks
This is link git : git

    


  • ffmpeg - replace all corrupted frames with a dummy

    24 août 2020, par Dmitry

    I look for a solution on how to detect and then automatically replace all corrupted (or completely broken) frames with a black one.

    


    I've already tried the following command, but the result is not quite what I actually need.

    


    ffmpeg -err_detect ignore_err -i video-with-broken-frames.avi -c copy fixed.avi


    


    This command detects and replaces all corrupted frames with the nearest good one. So that if I have 20 corrupted frames at the start of a video - they will be replaced with 21st good one. Well, what I need is to replace corrupted frames with some dummy, for instance with a black one. Or just some-how to indicate what that frame is broken and was copied.