Recherche avancée

Médias (91)

Autres articles (79)

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

  • avformat/iamfdec : swap back and side streams if both are present

    30 décembre 2024, par James Almer
    avformat/iamfdec : swap back and side streams if both are present
    

    Layouts with both pairs (7.1, 7.1.2, etc) in IAMF that follow the definition in
    ITU-R BS.2051-3 for Systems I and J also follow its ordering. This means side
    comes before back, which is the inverse of how it's defined in AVChannel.

    To workaround this without having to use custom order channel layouts, swap the
    stream ids in the input IAMF structure, so packets for one are mapped to the
    other.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/iamfdec.c
    • [DH] libavformat/version.h
    • [DH] tests/ref/fate/iamf-7_1_4
  • FFMPEG Video to still images and back to video loss less

    4 novembre 2012, par Rigoni

    I'm trying to extract image from an uncompressed AVI video using ffmpeg with the command :

       ffmpeg -i sorce.avi -f image2 -pix_fmt bgr24 images/%1d.bmp

    All is ok, but now I need to revert these images back to a video file.
    I'm trying using this command :

       ffmpeg -f image2 -r 24 -i marked/%1d.bmp -y -vcodec ffv1 -pix_fmt bgr24 test.avi

    But, the output video is compressed and with bad quality.

    Is there any way to extract the images in RGB format and than back to a lossless video ?

    I also tryed to use -vcodec rawvideo, but the quality still bad.

    Best regards.

  • ffmpeg scale down video dynamically (squeeze-back) or zoompan out to smaller than original

    27 avril, par Sam

    I have 2 videos, I'm trying to overlay one on top of the other, and have it shrink down in an animated fashion until it appears like a picture-in-picture setup. Then, after a few seconds it should scale back up.

    &#xA;

    This is what I am trying to achieve (these would be videos, not images) :&#xA;enter image description here

    &#xA;

    This is the closest I've been able to get, but, crucially, zoompanning "out" (as opposed to "in") does not appear to work ; so, of course, this does not work :

    &#xA;

    ffmpeg -i bg.mov -i top.mov -filter_complex "[0:v]zoompan=z=&#x27;pzoom-0.1&#x27;:d=1, setpts=PTS-STARTPTS[top]; [1:v]setpts=PTS-STARTPTS&#x2B;2/TB, scale=1920x1080, format=yuva420p,colorchannelmixer=aa=1.0[bottom]; [top][bottom]overlay=shortest=0" -vcodec libx264 out.mp4

    &#xA;

    Is this achievable with ffmpeg ?

    &#xA;