Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (102)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (12363)

  • lavfi/avf_showspectrum : add full frame sliding mode.

    3 août 2014, par Nicolas George
    lavfi/avf_showspectrum : add full frame sliding mode.
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/avf_showspectrum.c
  • Is possible to make watermark film with libav without decoding full video ?

    2 août 2018, par hawk.hsieh

    Ther is a small png image and a video film.
    I want to overlay this png image into video film and I did it by libavcodec.
    The CPU loading of this overlay process is extermely high.
    To reduce the performance impact, I have the png overlaid in 10 seconds and then copy stream from old file to new ones after 10 seconds.
    The problem is, the video is ok before 10 seconds with png overlaid video.
    After 10 seconds, the video is stalled and begin to show abnormal green block at top of the screen.
    I figure out the spspps maybe different between the original stream and the transcoded stream. Is this a root to cause the video stalled after 10 seconds ?

    Thank you.

  • FFMPEG drawbox filter. Hex color result not matching input values

    31 juillet 2018, par Leon Digz

    I’m trying to create a border using the drawbox filter using a specific HEX color input, however the result I am getting does not match the value I set.

    Consider the following code which produces a 600x600 swatch ;

    ffmpeg -i 0.jpg -vf drawbox=x=0:y=0:w=600:h=600:color=#E4E8F3@1:t=fill _border.png

    E4E8F3 is supposed to translate to RGB 228,232,243

    When I run the above code, however, and re-import into photoshop the actual color, is "sort of close", but not close enough.

    The color I end up getting is ;

    Hex d2d7df, which is RGB 210,215,223

    Any ideas why I’m not getting the result I expect ?