Recherche avancée

Médias (91)

Autres articles (47)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (9667)

  • Full C++ example avlib\FFMPEG multi input video filtering [on hold]

    30 juillet 2018, par Stefan Pintilie

    I am asking a question and also answering to it, on how to apply a multi input video complex filter using FFMPEG/avlib/avfiler libraries. I am doing this in hope that will help you, since it took couple of days to dig into ffmpeg code source, understanding it, putting the pieces together and make it work. The same could be applied to audio filtering.

    Everything starting from translating the following ffmpeg command into C++ code :

    ffmpeg -i world.mp4 -i back.png -filter_complex "[0:v]pad=1280:1000:0:0:black[pad];[pad][1:v]overlay=140:720[out]" -map "[out]" -map 0:a output.mp4

    Is basically stacking 2 videos on top of each other. The video from bottom has bigger width, so the final video file has the width of the bottom video and the height of all 2 together.

    Anyway that is just an example, the code example I am going to give you it takes any number of input files and a complex filter description, then producing the output.

  • FFmpeg eq filter equivalent value for css filter

    27 juillet 2018, par Praveen Tamil

    I’m showing the image with css filter applied in browser to how the output will be look like after processing.

    But the css filter accept the value in form of percent for contrast, brightness, saturation.
    But the ffmpeg’s eq filter is totally different and even more gamma params are used.

    I applied following filter in browser side

    filter: brightness(50%) contrast(100%) saturate(100%);
    filter: brightness(100%) contrast(100%) saturate(50%);
    filter: brightness(120%) contrast(100%) saturate(125%);

    I don’t how to do mapping these values to FFmpeg eq filter.

    I know below is the default code

    eq=contrast=1:brightness=0:saturation=1:gamma=1:gamma_r=1:gamma_g=1:gamma_b=1:gamma_weight=1

    I need equivalent value of FFmpeg’s eq filter for above mentioned CSS filters.
    And mapping value from CSS filter to eq filter.

    css filter ref : https://www.w3schools.com/cssref/css3_pr_filter.asp

  • FFmpeg eq filter equivalen valuet for css filter

    27 juillet 2018, par Praveen Tamil

    I’m showing the image with css filter applied in browser to how the output will be look like after processing.

    But the css filter accept the value in form of percent for contrast, brightness, saturation.
    But the ffmpeg’s eq filter is totally different and even more gamma params are used.

    I applied following filter in browser side

    filter: brightness(50%) contrast(100%) saturate(100%);
    filter: brightness(100%) contrast(100%) saturate(50%);
    filter: brightness(120%) contrast(100%) saturate(125%);

    I don’t how to do mapping these values to FFmpeg eq filter.

    I know below is the default code

    eq=contrast=1:brightness=0:saturation=1:gamma=1:gamma_r=1:gamma_g=1:gamma_b=1:gamma_weight=1

    I need equivalent value of FFmpeg’s eq filter for above mentioned CSS filters.
    And mapping value from CSS filter to eq filter.

    css filter ref : https://www.w3schools.com/cssref/css3_pr_filter.asp