Recherche avancée

Médias (91)

Autres articles (107)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8832)

  • 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

  • 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

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