Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (78)

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

  • Revision 1d9755436d : Adjust active minQ calculation for normal frames. This increases the range of Q

    4 avril 2014, par Paul Wilkins

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



    Adjust active minQ calculation for normal frames.

    This increases the range of Q values available to
    normal inter frames to allow encoder a better chance
    to hit the target rate.

    Change-Id : I33cd96469a46577fdcea631e26d3355710909e6d

  • tests/fate : force MPEG range for rawvideo tests

    12 octobre 2023, par Niklas Haas
    tests/fate : force MPEG range for rawvideo tests
    

    The input file is MPEG range, so we should also encode to MPEG range
    before comparing against it. This bug was avoided in the past because
    YUVJ inputs were automatically converted back to limited range when converting
    to a different pixfmt (in the absence of tagging). However, with proper YUV
    negotiation in place, the default behavior is to preserve the YUV range
    wherever possible. Since `rawvideo` does not signal or care about the YUV
    range, we need to explicitly request the desired output range to force a
    conversion.

    Affects all rawvideo tests, in particular vsynth and owdenoise.

    • [DH] tests/fate-run.sh
    • [DH] tests/fate/filter-video.mak
    • [DH] tests/fate/vcodec.mak
  • FFmpeg video from image plus audio length issue

    1er juin, par blackbrayn

    I'm having issues regarding the output video length when using the following code which seems to work for everybody else.

    


    On a input mp3 of 04:56 I get a 05:09, the last part is only the image, no sound, for a longer mp3 input file I get more silent video at the end.

    


    I'm using the "-shortest" option just before the output file as an argument , as suggested in other threads around stackoverflow/superuser.

    


       ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:v libx264 -tune stillimage -c:a aac -strict experimental -b:a 192k -shortest out.mp4


    


    I already changed the input file type - wav , and the image - png, jpg, same silent "overhead" at the end of the video.