Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (90)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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 ;

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (12583)

  • lavfi : Add OpenCL unsharp mask filter

    14 novembre 2017, par Mark Thompson
    lavfi : Add OpenCL unsharp mask filter
    

    Intended to replace existing opencl mode of the unsharp filter.
    Supports many more pixel formats and works without immediate upload
    and download of frame data. The options are compatible with the
    existing filter.

    • [DH] configure
    • [DH] libavfilter/Makefile
    • [DH] libavfilter/allfilters.c
    • [DH] libavfilter/opencl/unsharp.cl
    • [DH] libavfilter/opencl_source.h
    • [DH] libavfilter/version.h
    • [DH] libavfilter/vf_unsharp_opencl.c
  • FFMPEG Color Filter Command For Video

    23 août 2017, par Patel Hiren

    I am new to android application development.

    Please let me know which command is used for apply color filter on the video.

    Is there any FFMPEG command for change the video color by passing hexadecimal color code.

    I have try a lot but not get success.

    Please help any one know.

    Thanks.

  • Why pixels color are different before and after encoding ? , How to set the same ?

    11 mars 2015, par mitli

    I want to change some pixels of some frames, I do this steps :

    1 - Extract frames from FLV video to PNG

    2 - Change frame pixels color ,For example I set color of Pixel(0,0) to ARGB (0,0,0,0)

    3 - Encode frames to a video by below code :

    -i Frame%04d.png -filter_complex "[0:0] scale= [wm]; [wm][1:0] overlay=1:1 [out]" -map "[out]" -map 0:a  -c:v libx264 -vprofile low outfile.flv

    But when I check "outfile.flv" frames , pixel 0,0 is 255,7,2,3 instead of 0,0,0,0 , why ? Please tell me that how can I get same pixels color after encode ?