Recherche avancée

Médias (91)

Autres articles (106)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (9524)

  • avcodec/dvbsubdec : Avoid re-computing clut

    4 novembre 2017, par Michael Niedermayer
    avcodec/dvbsubdec : Avoid re-computing clut
    

    Fixes : Timeout
    Fixes : 3218/clusterfuzz-testcase-5390672154591232

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/dvbsubdec.c
  • ffmpeg : video + scalled watermark with multiply filter applied

    5 novembre 2018, par PawelN

    after a night of trying different options with applying my watermark on a video, I gave up :).
    What I tried to do is :

    • scale video to desired size (i.e. scale=640x480)
    • add watermark on its top left corner (10:10)
    • marge video with watermark with blend=all_mode='multiply'

    I’ve tried many options and that one I think is almost correct :

    fmpeg -i "${2}${3}" -i ${WMARK} -r 20 -y \
                -filter_complex "[0:0]scale=${6}x${7}, setsar=sar=1[a];[a][1:0] overlay=0:0[b];[a][b]blend=all_mode='multiply'"  \
               -an -c:v libx264 -crf "${8}" -preset "${9}" -tune "${10}" \
               -profile:v high -level 4.0 -movflags +faststart \
               "${4}${5}";

    but anyway I am getting errors.

    The nearest what I am looking for is :

    ffmpeg -i "${2}${3}" -i ${WMARK} -r 20 -y \
                -filter_complex "[0:v] scale=${6}:${7}[vi];[1:v][vi]scale2ref=(1510/408)*ih/3/sar:ih/3[wm][base];[base][wm]overlay=10:10"  \
                -pix_fmt yuv420p \
               -an -c:v libx264 -crf "${8}" -preset "${9}" -tune "${10}" \
               -profile:v high -level 4.0 -movflags +faststart \
               "${4}${5}";
    • Video is scaled to desired resolution ($[6 :$7)
    • watermark is scalled as well
    • ... but I dunno how add blend=all_mode=’multiply’ to it.

    Any ideas guys ?

  • ffmpeg : video + scaled watermark with multiply filter applied

    5 novembre 2018, par PawelN

    after a night of trying different options with applying my watermark on a video, I gave up :).
    What I tried to do is :

    • scale video to desired size (i.e. scale=640x480)
    • add watermark on its top left corner (10:10)
    • marge video with watermark with blend=all_mode='multiply'

    I’ve tried many options and that one I think is almost correct :

    fmpeg -i "${2}${3}" -i ${WMARK} -r 20 -y \
                -filter_complex "[0:0]scale=${6}x${7}, setsar=sar=1[a];[a][1:0] overlay=0:0[b];[a][b]blend=all_mode='multiply'"  \
               -an -c:v libx264 -crf "${8}" -preset "${9}" -tune "${10}" \
               -profile:v high -level 4.0 -movflags +faststart \
               "${4}${5}";

    but anyway I am getting errors.

    The nearest what I am looking for is :

    ffmpeg -i "${2}${3}" -i ${WMARK} -r 20 -y \
                -filter_complex "[0:v] scale=${6}:${7}[vi];[1:v][vi]scale2ref=(1510/408)*ih/3/sar:ih/3[wm][base];[base][wm]overlay=10:10"  \
                -pix_fmt yuv420p \
               -an -c:v libx264 -crf "${8}" -preset "${9}" -tune "${10}" \
               -profile:v high -level 4.0 -movflags +faststart \
               "${4}${5}";
    • Video is scaled to desired resolution ($[6 :$7)
    • watermark is scaled as well
    • ... but I dunno how add blend=all_mode=’multiply’ to it.

    Any ideas guys ?