Recherche avancée

Médias (91)

Autres articles (39)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (4697)

  • avformat/mxfdec : export operational pattern UL as file metadata

    2 avril 2019, par Marton Balint
    avformat/mxfdec : export operational pattern UL as file metadata
    

    Can be useful for API users as ffmpeg/libavformat can't properly support some
    operational patterns.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mxfdec.c
    • [DH] tests/ref/fate/mxf-probe-d10
    • [DH] tests/ref/fate/mxf-probe-dnxhd
    • [DH] tests/ref/fate/mxf-probe-dv25
  • Making a video with opencv and ffmpeg. How to find the right color format ?

    17 mai 2024, par luc

    I have a webcam video recorder program built with python, opencv and ffmpeg

    &#xA;&#xA;

    It works ok except that the color of the video is more blue than the reality. The problem seems to come from color format of images.

    &#xA;&#xA;

    It seems that OpenCv is giving BGR images and ffmpeg+libx264 is expecting YUV420p. I've read that YUV420p correspond to YCbCr.

    &#xA;&#xA;

    opencv has no conversion from BGR to YCbCr. It only has a conversion to YCrCb.

    &#xA;&#xA;

    I have made some searchs and tried different alternatives to try converting opencv image to something that could be ok for ffmpeg+libx264. None is working. At this point, I am a bit lost and I would appreciate any pointer that could help me to fix this color issue.

    &#xA;

  • create video with fluctuated background color and drawbox with fluctuated color ?

    27 mai 2019, par Wang

    Is there anyway to create a video with fluctuated background color choosing from a list for example [R, G, B] the background color along time will be R,G,B,R,G,B .... I might use nullsrc with geq. But seems the geq is quite slow which apply to each pixel.

    I would also like to change the color of drawbox too, is there any easy way to do it ? I knew we might be able to use openclsrc but it seems overkill for this simple task.

    Update, for drawbox I found a way, which is kind of abuse the timeline editing :

    ffmpeg -f lavfi -i smptebars=r=30:d=30:size=800x600 -vf "drawbox=enable='eq(mod(n,3),0)':x=0:y=0:t=20:c=red,drawbox=enable='eq(mod(n,3),1)':x=0:y=0:t=20:c=green,drawbox=enable='eq(mod(n,3),2)':x=0:y=0:t=20:c=blue" /tmp/test_box.mp4